From 6a70217474c89159b30e55b2d38894c1f4db8049 Mon Sep 17 00:00:00 2001 From: Omur Date: Sat, 12 Jul 2025 17:49:01 +0200 Subject: [PATCH 1/5] angular-ecommerce-starter https://github.com/SaiUpadhyayula/SpringAngularEcommerce Elasticsearch example --- .../rest/original/angular-ecommerce/README.md | 51 + .../rest/original/angular-ecommerce/pom.xml | 147 + .../NgSpringShoppingStoreApplication.java | 20 + .../config/AppSecurityConfig.java | 84 + .../config/CustomAccessDeniedHandler.java | 20 + .../config/ElasticSearchConfig.java | 30 + .../shoppingstore/config/MailConfig.java | 20 + .../config/UnauthorizedEntryPoint.java | 21 + .../shoppingstore/config/WebConfig.java | 44 + .../controller/AdminController.java | 9 + .../controller/AuthController.java | 47 + .../controller/CartController.java | 26 + .../controller/CatalogController.java | 74 + .../controller/ProductRatingController.java | 40 + .../dto/AuthenticationResponse.java | 11 + .../techie/shoppingstore/dto/CategoryDto.java | 14 + .../techie/shoppingstore/dto/FacetDto.java | 15 + .../shoppingstore/dto/FacetValueDto.java | 13 + .../shoppingstore/dto/LoginRequestDto.java | 13 + .../dto/ProductAvailability.java | 15 + .../techie/shoppingstore/dto/ProductDto.java | 28 + .../shoppingstore/dto/ProductRatingDto.java | 23 + .../dto/ProductSearchResponseDto.java | 18 + .../shoppingstore/dto/RegisterRequestDto.java | 23 + .../shoppingstore/dto/SearchQueryDto.java | 20 + .../shoppingstore/exceptions/ApiResponse.java | 14 + .../SpringShoppingStoreExceptionHandler.java | 27 + .../exceptions/SpringStoreException.java | 7 + .../techie/shoppingstore/model/Category.java | 48 + .../model/ElasticSearchProduct.java | 32 + .../com/techie/shoppingstore/model/Mail.java | 13 + .../techie/shoppingstore/model/Product.java | 30 + .../shoppingstore/model/ProductAttribute.java | 29 + .../shoppingstore/model/ProductRating.java | 23 + .../shoppingstore/model/ShoppingCart.java | 21 + .../shoppingstore/model/ShoppingCartItem.java | 11 + .../com/techie/shoppingstore/model/User.java | 33 + .../model/VerificationToken.java | 17 + .../repository/CartRepository.java | 8 + .../repository/CategoryRepository.java | 12 + .../repository/ProductRepository.java | 16 + .../repository/ProductSearchRepository.java | 15 + .../repository/UserRepository.java | 16 + .../VerificationTokenRepository.java | 10 + .../shoppingstore/service/AuthService.java | 110 + .../shoppingstore/service/CartService.java | 29 + .../service/CategoryService.java | 31 + .../service/JWTAuthenticationFilter.java | 56 + .../service/JwtTokenProvider.java | 100 + .../service/MailContentBuilder.java | 22 + .../shoppingstore/service/MailService.java | 35 + .../shoppingstore/service/ProductMapper.java | 22 + .../shoppingstore/service/ProductService.java | 146 + .../service/ResponseSerializer.java | 23 + .../shoppingstore/service/SearchService.java | 267 + .../service/UserDetailServiceImpl.java | 40 + .../shoppingstore/service/UserPrincipal.java | 51 + .../src/main/resources/application.properties | 24 + .../src/main/resources/auth.jks | Bin 0 -> 2651 bytes .../src/main/resources/export/Category.json | 51 + .../resources/export/Copy_of_Product.json | 187320 ++++++++++++++ .../src/main/resources/export/Product.json | 194136 +++++++++++++++ .../src/main/resources/export/User.json | 31 + .../resources/export/VerificationToken.json | 24 + .../src/main/resources/export/query.json | 167 + .../images/category-page-with-filters.PNG | Bin 0 -> 146612 bytes .../main/resources/images/category-page.PNG | Bin 0 -> 251801 bytes .../src/main/resources/images/homepage.PNG | Bin 0 -> 285455 bytes .../product-page-description-section.PNG | Bin 0 -> 43846 bytes .../images/product-page-review-section.PNG | Bin 0 -> 32830 bytes .../main/resources/images/product-page.PNG | Bin 0 -> 167337 bytes .../src/main/resources/images/search-page.PNG | Bin 0 -> 222514 bytes .../resources/templates/mailTemplate.html | 7 + ...NgSpringShoppingStoreApplicationTests.java | 170 + 74 files changed, 384070 insertions(+) create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/README.md create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/NgSpringShoppingStoreApplication.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/CustomAccessDeniedHandler.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/ElasticSearchConfig.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/MailConfig.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/UnauthorizedEntryPoint.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/WebConfig.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AdminController.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AuthController.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CartController.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CatalogController.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/ProductRatingController.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/AuthenticationResponse.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/CategoryDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetValueDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/LoginRequestDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductAvailability.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductRatingDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductSearchResponseDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/RegisterRequestDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/SearchQueryDto.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/ApiResponse.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringShoppingStoreExceptionHandler.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringStoreException.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Category.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ElasticSearchProduct.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Mail.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Product.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductAttribute.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductRating.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCart.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCartItem.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/User.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/VerificationToken.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CartRepository.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CategoryRepository.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductRepository.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductSearchRepository.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/UserRepository.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/VerificationTokenRepository.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/AuthService.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CartService.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CategoryService.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JWTAuthenticationFilter.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JwtTokenProvider.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailContentBuilder.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailService.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductMapper.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductService.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ResponseSerializer.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/SearchService.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserDetailServiceImpl.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserPrincipal.java create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/auth.jks create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Category.json create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Copy_of_Product.json create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Product.json create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/User.json create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/VerificationToken.json create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/query.json create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page-with-filters.PNG create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page.PNG create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/homepage.PNG create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-description-section.PNG create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-review-section.PNG create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page.PNG create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/search-page.PNG create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/templates/mailTemplate.html create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/test/java/com/techie/shoppingstore/NgSpringShoppingStoreApplicationTests.java diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/README.md b/jdk_8_maven/cs/rest/original/angular-ecommerce/README.md new file mode 100644 index 000000000..4b3645853 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/README.md @@ -0,0 +1,51 @@ +# SpringAngularEcommerce +SpringAngularEcommerce is a shopping cart application developed as a pet project to get to know about different technologies. + +This project is still in development. + +Code for Angular app: https://github.com/SaiUpadhyayula/NgSpringShoppingStore-frontend + +#Features +- Token Based User Authentication(JWT) +- Product Search +- Product Catalog +- Payment Gateway (using Stripe) - TODO +- Wishlist - TODO +- Admin Console - TODO +- Order Management - TODO +- User Management - TODO +- PDF Report Generation (Order Acknowledgment) - TODO + + +#Technologies: +- Spring Boot +- Mongo DB +- Angular +- Redis for Caching +- Elastic Search + +#Images of Application: +1. Home Page + +![Home Page](https://github.com/SaiUpadhyayula/NgSpringShoppingStore/blob/master/src/main/resources/images/homepage.PNG) + +2. Category Page + +![Category Page](https://github.com/SaiUpadhyayula/NgSpringShoppingStore/blob/master/src/main/resources/images/category-page.PNG) + +3. Category Page With Filters + +![Category Page With Filters](https://github.com/SaiUpadhyayula/NgSpringShoppingStore/blob/master/src/main/resources/images/category-page-with-filters.PNG) + +4. Product Page + +![Product Page](https://github.com/SaiUpadhyayula/NgSpringShoppingStore/blob/master/src/main/resources/images/product-page.PNG) + +5. Product Page - Review Section + +![Product Page Review Section](https://github.com/SaiUpadhyayula/NgSpringShoppingStore/blob/master/src/main/resources/images/product-page-review-section.PNG) + +6. Search Page +![Search Page](https://github.com/SaiUpadhyayula/NgSpringShoppingStore/blob/master/src/main/resources/images/search-page.PNG) + + diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml b/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml new file mode 100644 index 000000000..57d4a512b --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml @@ -0,0 +1,147 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.1.1.RELEASE + + + com.techie.shoppingstore + NGSpringShoppingStore + 0.0.1-SNAPSHOT + NGSpringShoppingStore + Demo project for Spring Boot + + + 1.8 + + + + + org.springframework.boot + spring-boot-starter-actuator + + + org.springframework.boot + spring-boot-starter-cache + + + org.springframework.data + spring-data-mongodb + + + org.springframework.boot + spring-boot-starter-mail + + + org.springframework.boot + spring-boot-starter-security + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.security.oauth + spring-security-oauth2 + 2.3.5.RELEASE + + + org.springframework.security + spring-security-jwt + 1.0.9.RELEASE + + + org.projectlombok + lombok + 1.18.4 + provided + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.security + spring-security-test + test + + + io.jsonwebtoken + jjwt-api + 0.10.5 + + + io.jsonwebtoken + jjwt-impl + runtime + 0.10.5 + + + io.jsonwebtoken + jjwt-jackson + runtime + 0.10.5 + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + + + com.mashape.unirest + unirest-java + 1.4.9 + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + + + org.springframework.boot + spring-boot-starter-data-redis + + + org.mapstruct + mapstruct + 1.3.0.Final + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + 1.8 + 1.8 + + + org.mapstruct + mapstruct-processor + 1.3.0.Final + + + org.projectlombok + lombok + 1.18.4 + + + + + + + + diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/NgSpringShoppingStoreApplication.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/NgSpringShoppingStoreApplication.java new file mode 100644 index 000000000..e29884856 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/NgSpringShoppingStoreApplication.java @@ -0,0 +1,20 @@ +package com.techie.shoppingstore; + +import com.techie.shoppingstore.config.AppSecurityConfig; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.cache.annotation.EnableCaching; +import org.springframework.context.annotation.Import; +import org.springframework.scheduling.annotation.EnableAsync; + +@SpringBootApplication +@EnableCaching +@EnableAsync +@Import(AppSecurityConfig.class) +public class NgSpringShoppingStoreApplication { + + public static void main(String[] args) { + SpringApplication.run(NgSpringShoppingStoreApplication.class, args); + } + +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java new file mode 100644 index 000000000..71932945f --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java @@ -0,0 +1,84 @@ +package com.techie.shoppingstore.config; + +import com.techie.shoppingstore.repository.UserRepository; +import com.techie.shoppingstore.service.JWTAuthenticationFilter; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.http.HttpMethod; +import org.springframework.security.authentication.AuthenticationManager; +import org.springframework.security.config.BeanIds; +import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.builders.WebSecurity; +import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; +import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; +import org.springframework.security.config.http.SessionCreationPolicy; +import org.springframework.security.core.userdetails.UserDetailsService; +import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; +import org.springframework.security.crypto.password.PasswordEncoder; +import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter; + +@EnableWebSecurity +public class AppSecurityConfig extends WebSecurityConfigurerAdapter { + + @Autowired + private UserRepository userRepository; + @Autowired + private UserDetailsService userDetailsService; + @Autowired + private UnauthorizedEntryPoint unauthorizedEntryPoint; + @Autowired + private CustomAccessDeniedHandler customAccessDeniedHandler; + + @Bean + public JWTAuthenticationFilter jwtAuthenticationFilter() { + return new JWTAuthenticationFilter(); + } + + @Bean(BeanIds.AUTHENTICATION_MANAGER) + @Override + public AuthenticationManager authenticationManagerBean() throws Exception { + return super.authenticationManagerBean(); + } + + @Override + public void configure(WebSecurity web) { + web.ignoring() + .antMatchers(HttpMethod.OPTIONS, "/**"); + } + + @Override + public void configure(HttpSecurity httpSecurity) throws Exception { + httpSecurity + .cors() + .and() + .csrf() + .disable() + .exceptionHandling() + .authenticationEntryPoint(unauthorizedEntryPoint) + .and() + .sessionManagement() + .sessionCreationPolicy(SessionCreationPolicy.STATELESS) + .and() + .authorizeRequests() + .antMatchers("/api/auth/**") + .permitAll() + .antMatchers("/api/store/catalog/**") + .permitAll() + .anyRequest().authenticated(); + + + // Add our custom JWT security filter + httpSecurity.addFilterBefore(jwtAuthenticationFilter(), UsernamePasswordAuthenticationFilter.class); + } + + @Autowired + public void configureGlobal(AuthenticationManagerBuilder authenticationManagerBuilder) throws Exception { + authenticationManagerBuilder.userDetailsService(userDetailsService).passwordEncoder(encoder()); + } + + @Bean + PasswordEncoder encoder() { + return new BCryptPasswordEncoder(12); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/CustomAccessDeniedHandler.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/CustomAccessDeniedHandler.java new file mode 100644 index 000000000..d4395062d --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/CustomAccessDeniedHandler.java @@ -0,0 +1,20 @@ +package com.techie.shoppingstore.config; + +import org.springframework.security.access.AccessDeniedException; +import org.springframework.security.web.access.AccessDeniedHandler; +import org.springframework.stereotype.Component; + +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +@Component +public class CustomAccessDeniedHandler implements AccessDeniedHandler { + @Override + public void handle(HttpServletRequest httpServletRequest, + HttpServletResponse httpServletResponse, + AccessDeniedException accessDeniedException) throws IOException, ServletException { + httpServletResponse.setStatus(403); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/ElasticSearchConfig.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/ElasticSearchConfig.java new file mode 100644 index 000000000..d7583d884 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/ElasticSearchConfig.java @@ -0,0 +1,30 @@ +package com.techie.shoppingstore.config; + +import com.techie.shoppingstore.exceptions.SpringStoreException; +import org.elasticsearch.client.Client; +import org.elasticsearch.common.settings.Settings; +import org.elasticsearch.common.transport.TransportAddress; +import org.elasticsearch.transport.client.PreBuiltTransportClient; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories; + +import java.net.InetAddress; +import java.net.UnknownHostException; + +@Configuration +@EnableElasticsearchRepositories +public class ElasticSearchConfig { + + @Bean + public Client client() { + System.setProperty("es.set.netty.runtime.available.processors", "false"); + try { + return new PreBuiltTransportClient(Settings.EMPTY) + .addTransportAddress(new TransportAddress(InetAddress.getByName("localhost"), 9300)); + + } catch (UnknownHostException e) { + throw new SpringStoreException("An error occured when configuring Elastic Search"); + } + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/MailConfig.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/MailConfig.java new file mode 100644 index 000000000..25c996110 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/MailConfig.java @@ -0,0 +1,20 @@ +package com.techie.shoppingstore.config; + +import lombok.Data; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Configuration; + +@Configuration +@Data +public class MailConfig { + + @Value("${spring.mail.host}") + private String host; + @Value("${spring.mail.port}") + private int port; + @Value("${spring.mail.username}") + private String username; + @Value("${spring.mail.password}") + private String password; + +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/UnauthorizedEntryPoint.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/UnauthorizedEntryPoint.java new file mode 100644 index 000000000..f5a6c3654 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/UnauthorizedEntryPoint.java @@ -0,0 +1,21 @@ + package com.techie.shoppingstore.config; + +import org.springframework.security.core.AuthenticationException; +import org.springframework.security.web.AuthenticationEntryPoint; +import org.springframework.stereotype.Component; + +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +@Component +public class UnauthorizedEntryPoint implements AuthenticationEntryPoint { + + @Override + public void commence(HttpServletRequest httpServletRequest, + HttpServletResponse httpServletResponse, + AuthenticationException authenticationException) throws IOException, ServletException { + httpServletResponse.sendError(HttpServletResponse.SC_UNAUTHORIZED, "Unauthorized"); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/WebConfig.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/WebConfig.java new file mode 100644 index 000000000..f9ca943f2 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/WebConfig.java @@ -0,0 +1,44 @@ +package com.techie.shoppingstore.config; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializationFeature; +import com.fasterxml.jackson.databind.module.SimpleModule; +import com.techie.shoppingstore.service.ResponseSerializer; +import org.elasticsearch.client.Response; +import org.springframework.context.annotation.Configuration; +import org.springframework.http.converter.HttpMessageConverter; +import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; +import org.springframework.web.servlet.config.annotation.CorsRegistry; +import org.springframework.web.servlet.config.annotation.EnableWebMvc; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +import java.util.List; + +@Configuration +@EnableWebMvc +public class WebConfig implements WebMvcConfigurer { + + @Override + public void addCorsMappings(CorsRegistry corsRegistry) { + corsRegistry.addMapping("/**") + .allowedOrigins("*") + .allowedMethods("*") + .maxAge(3600L) + .allowedHeaders("*") + .exposedHeaders("Authorization") + .allowCredentials(true); + } + + @Override + public void configureMessageConverters(List> converters) { + final MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter(); + final ObjectMapper objectMapper = new ObjectMapper(); + objectMapper.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS); + SimpleModule simpleModule = new SimpleModule(); + simpleModule.addSerializer(Response.class, new ResponseSerializer()); + objectMapper.registerModule(simpleModule); + converter.setObjectMapper(objectMapper); + converters.add(converter); + WebMvcConfigurer.super.configureMessageConverters(converters); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AdminController.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AdminController.java new file mode 100644 index 000000000..0c1039d3f --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AdminController.java @@ -0,0 +1,9 @@ +package com.techie.shoppingstore.controller; + +import org.springframework.web.bind.annotation.RestController; + +@RestController +public class AdminController { + + +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AuthController.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AuthController.java new file mode 100644 index 000000000..6585a462a --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/AuthController.java @@ -0,0 +1,47 @@ +package com.techie.shoppingstore.controller; + +import com.techie.shoppingstore.dto.AuthenticationResponse; +import com.techie.shoppingstore.dto.LoginRequestDto; +import com.techie.shoppingstore.dto.RegisterRequestDto; +import com.techie.shoppingstore.exceptions.ApiResponse; +import com.techie.shoppingstore.service.AuthService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; + +@RestController +@RequestMapping("/api/auth/") +@Slf4j +public class AuthController { + + private final AuthService authService; + + @Autowired + public AuthController(AuthService authService) { + this.authService = authService; + } + + @PostMapping("login") + public ResponseEntity login(@Valid @RequestBody LoginRequestDto loginRequestDto) { + return new ResponseEntity<>(authService.authenticate(loginRequestDto), HttpStatus.OK); + } + + @PostMapping("register") + public ResponseEntity register(@Valid @RequestBody RegisterRequestDto registerRequestDto) { + if (authService.existsByUserName(registerRequestDto)) { + return new ResponseEntity<>(new ApiResponse(400, "Username already exists"), HttpStatus.BAD_REQUEST); + } + + authService.createUser(registerRequestDto); + return new ResponseEntity<>(new ApiResponse(200, "User Registration Completed Successfully!!"), HttpStatus.OK); + } + + @GetMapping("accountVerification/{token}") + public ApiResponse verifyAccount(@PathVariable String token) { + return authService.verifyAccount(token); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CartController.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CartController.java new file mode 100644 index 000000000..1303b2743 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CartController.java @@ -0,0 +1,26 @@ +package com.techie.shoppingstore.controller; + +import com.techie.shoppingstore.service.CartService; +import lombok.AllArgsConstructor; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping("/api/cart/") +@AllArgsConstructor +public class CartController { + + private final CartService cartService; + + @PostMapping("/add/{sku}") + public ResponseEntity addToCart(@PathVariable String sku) { + cartService.addToCart(sku); + return new ResponseEntity(HttpStatus.OK); + } + + +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CatalogController.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CatalogController.java new file mode 100644 index 000000000..cac5e0b8d --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/CatalogController.java @@ -0,0 +1,74 @@ +package com.techie.shoppingstore.controller; + +import com.techie.shoppingstore.dto.CategoryDto; +import com.techie.shoppingstore.dto.ProductDto; +import com.techie.shoppingstore.dto.ProductSearchResponseDto; +import com.techie.shoppingstore.dto.SearchQueryDto; +import com.techie.shoppingstore.service.CategoryService; +import com.techie.shoppingstore.service.ProductService; +import com.techie.shoppingstore.service.SearchService; +import lombok.AllArgsConstructor; +import org.springframework.http.ResponseEntity; +import org.springframework.util.StopWatch; +import org.springframework.web.bind.annotation.*; + +import java.io.IOException; +import java.util.List; +import java.util.stream.Collectors; + +import static org.springframework.http.HttpStatus.OK; + +@RestController +@RequestMapping("/api/store/catalog/") +@AllArgsConstructor +public class CatalogController { + private final CategoryService categoryService; + private final ProductService productService; + private final SearchService searchService; + + @GetMapping("categories") + public ResponseEntity> readAllCategories() { + return new ResponseEntity<>(categoryService.findAll(), OK); + } + + @GetMapping("products") + public ResponseEntity> readAllProducts() { + StopWatch stopWatch = new StopWatch(); + stopWatch.start(); + List productDtos = productService.findAll(); + stopWatch.stop(); + return new ResponseEntity<>(productDtos, OK); + } + + @GetMapping("products/featured") + public ResponseEntity> readFeaturedProducts() { + StopWatch stopWatch = new StopWatch(); + stopWatch.start(); + List productDtos = productService.findAll().stream().filter(ProductDto::isFeatured).collect(Collectors.toList()); + stopWatch.stop(); + return new ResponseEntity<>(productDtos, OK); + } + + @GetMapping("products/{sku}") + public ResponseEntity readOneProduct(@PathVariable String sku) { + ProductDto productDto = productService.readOneProduct(sku); + return new ResponseEntity<>(productDto, OK); + } + + @GetMapping("products/category/{categoryName}") + public ResponseEntity> readProductByCategory(@PathVariable String categoryName) { + List productDtos = productService.findByCategoryName(categoryName); + return new ResponseEntity<>(productDtos, OK); + } + + @PostMapping("{categoryName}/facets/filter") + public ProductSearchResponseDto filterForFacets(@RequestBody SearchQueryDto searchQueryDto, @PathVariable String categoryName) throws IOException { + return searchService.searchWithFilters(searchQueryDto, categoryName); + } + + @PostMapping("/search") + public ProductSearchResponseDto search(@RequestBody SearchQueryDto searchQueryDto) throws IOException { + return searchService.search(searchQueryDto); + } + +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/ProductRatingController.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/ProductRatingController.java new file mode 100644 index 000000000..806fcffed --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/controller/ProductRatingController.java @@ -0,0 +1,40 @@ +package com.techie.shoppingstore.controller; + +import com.techie.shoppingstore.dto.ProductRatingDto; +import com.techie.shoppingstore.service.ProductService; +import lombok.AllArgsConstructor; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.*; + +import javax.validation.Valid; +import java.util.List; + +import static org.springframework.http.HttpStatus.OK; + +@RestController +@RequestMapping("/api/products/ratings") +@AllArgsConstructor +public class ProductRatingController { + + private final ProductService productService; + + @PostMapping("/submit") + public void postRating(@Valid @RequestBody ProductRatingDto productRatingDto) { + productService.postProductRating(productRatingDto); + } + + @PutMapping("/edit") + public void editRating(@Valid @RequestBody ProductRatingDto productRatingDto) { + productService.editProductRating(productRatingDto); + } + + @DeleteMapping("/delete/{ratingId}") + public void deleteRating(@Valid @RequestBody ProductRatingDto productRatingDto, @PathVariable String ratingId) { + productService.deleteProductRating(productRatingDto); + } + + @GetMapping("/get/{sku}") + public ResponseEntity> getRating(@PathVariable String sku) { + return new ResponseEntity<>(productService.getProductRating(sku), OK); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/AuthenticationResponse.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/AuthenticationResponse.java new file mode 100644 index 000000000..4d1c1a534 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/AuthenticationResponse.java @@ -0,0 +1,11 @@ +package com.techie.shoppingstore.dto; + +import lombok.AllArgsConstructor; +import lombok.Data; + +@Data +@AllArgsConstructor +public class AuthenticationResponse { + private String accessToken; + private String username; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/CategoryDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/CategoryDto.java new file mode 100644 index 000000000..e4cc7fb25 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/CategoryDto.java @@ -0,0 +1,14 @@ +package com.techie.shoppingstore.dto; + +import lombok.Data; + +import java.io.Serializable; + +@Data +public class CategoryDto implements Serializable { + private String categoryNames; + + public CategoryDto(String categoryNames) { + this.categoryNames = categoryNames; + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetDto.java new file mode 100644 index 000000000..6817df368 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetDto.java @@ -0,0 +1,15 @@ +package com.techie.shoppingstore.dto; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.util.List; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public class FacetDto { + private String facetName; + private List facetValueDto; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetValueDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetValueDto.java new file mode 100644 index 000000000..8844ae82f --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/FacetValueDto.java @@ -0,0 +1,13 @@ +package com.techie.shoppingstore.dto; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public class FacetValueDto { + private String facetValueName; + private Integer count; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/LoginRequestDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/LoginRequestDto.java new file mode 100644 index 000000000..ac8c43069 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/LoginRequestDto.java @@ -0,0 +1,13 @@ +package com.techie.shoppingstore.dto; + +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class LoginRequestDto { + @NotBlank + private String username; + @NotBlank + private String password; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductAvailability.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductAvailability.java new file mode 100644 index 000000000..7e98e7da0 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductAvailability.java @@ -0,0 +1,15 @@ +package com.techie.shoppingstore.dto; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public class ProductAvailability implements Serializable { + private String availability; + private String color; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductDto.java new file mode 100644 index 000000000..59a10e91b --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductDto.java @@ -0,0 +1,28 @@ +package com.techie.shoppingstore.dto; + +import com.techie.shoppingstore.model.ProductAttribute; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.List; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ProductDto implements Serializable { + private static final long serialVersionUID = 6529685098267757690L; + + private String productName; + private String imageUrl; + private String sku; + private BigDecimal price; + private String description; + private String manufacturer; + private ProductAvailability availability; + private List attributeList; + private boolean featured; + private List productRatingDtoList; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductRatingDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductRatingDto.java new file mode 100644 index 000000000..2ab5f017d --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductRatingDto.java @@ -0,0 +1,23 @@ +package com.techie.shoppingstore.dto; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import javax.validation.constraints.Max; +import javax.validation.constraints.Min; +import java.io.Serializable; +import java.math.BigDecimal; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public class ProductRatingDto implements Serializable { + private String ratingId; + @Min(1) + @Max(5) + private BigDecimal ratingStars; + private String review; + private String userName; + private String sku; +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductSearchResponseDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductSearchResponseDto.java new file mode 100644 index 000000000..9ba613614 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/ProductSearchResponseDto.java @@ -0,0 +1,18 @@ +package com.techie.shoppingstore.dto; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.math.BigDecimal; +import java.util.List; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public class ProductSearchResponseDto { + private List products; + private BigDecimal minPrice; + private BigDecimal maxPrice; + private List facetDtos; +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/RegisterRequestDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/RegisterRequestDto.java new file mode 100644 index 000000000..ef5bdc8a2 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/RegisterRequestDto.java @@ -0,0 +1,23 @@ +package com.techie.shoppingstore.dto; + +import lombok.Data; + +import javax.validation.constraints.Email; +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.Size; + +@Data +public class RegisterRequestDto { + @NotBlank + private String username; + @NotBlank + private String name; + @NotBlank + @Email + private String email; + @NotBlank + @Size(min = 8, max = 20) + private String password; + @NotBlank + private String confirmPassword; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/SearchQueryDto.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/SearchQueryDto.java new file mode 100644 index 000000000..9ddbe0253 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/dto/SearchQueryDto.java @@ -0,0 +1,20 @@ +package com.techie.shoppingstore.dto; + +import lombok.Data; + +import java.io.Serializable; +import java.util.List; + +@Data +public class SearchQueryDto { + private String textQuery; + private List filters; + + @Data + public static class Filter implements Serializable { + private String key; + private String value; + private String from; + private String to; + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/ApiResponse.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/ApiResponse.java new file mode 100644 index 000000000..16f4d7001 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/ApiResponse.java @@ -0,0 +1,14 @@ +package com.techie.shoppingstore.exceptions; + +import lombok.Data; + +@Data +public class ApiResponse { + private Integer status; + private String message; + + public ApiResponse(Integer status, String message) { + this.status = status; + this.message = message; + } +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringShoppingStoreExceptionHandler.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringShoppingStoreExceptionHandler.java new file mode 100644 index 000000000..9b6892198 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringShoppingStoreExceptionHandler.java @@ -0,0 +1,27 @@ +package com.techie.shoppingstore.exceptions; + +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.http.converter.HttpMessageNotReadableException; +import org.springframework.web.bind.annotation.ControllerAdvice; +import org.springframework.web.context.request.WebRequest; +import org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler; + +@ControllerAdvice +public class SpringShoppingStoreExceptionHandler extends ResponseEntityExceptionHandler { + + public SpringShoppingStoreExceptionHandler() { + super(); + } + + @Override + protected final ResponseEntity handleHttpMessageNotReadable(HttpMessageNotReadableException exception, HttpHeaders headers, HttpStatus status, WebRequest request) { + return handleExceptionInternal(exception, message(HttpStatus.BAD_REQUEST, exception), headers, HttpStatus.BAD_REQUEST, request); + } + + private ApiResponse message(HttpStatus httpStatus, Exception exception) { + String message = exception.getMessage() == null ? exception.getClass().getSimpleName() : exception.getMessage(); + return new ApiResponse(httpStatus.value(), message); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringStoreException.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringStoreException.java new file mode 100644 index 000000000..8981357ab --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/exceptions/SpringStoreException.java @@ -0,0 +1,7 @@ +package com.techie.shoppingstore.exceptions; + +public class SpringStoreException extends RuntimeException { + public SpringStoreException(String message) { + super(message); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Category.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Category.java new file mode 100644 index 000000000..4671c8469 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Category.java @@ -0,0 +1,48 @@ +package com.techie.shoppingstore.model; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import org.springframework.data.annotation.Id; +import org.springframework.data.elasticsearch.annotations.Field; +import org.springframework.data.elasticsearch.annotations.FieldType; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.io.Serializable; +import java.util.List; + +@Document(collection = "Category") +@Data +@NoArgsConstructor +@AllArgsConstructor +public class Category implements Serializable { + @Id + private Long id; + @Field(type = FieldType.Text, fielddata = true) + private String name; + private List possibleFacets; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public List getPossibleFacets() { + return possibleFacets; + } + + public void setPossibleFacets(List possibleFacets) { + this.possibleFacets = possibleFacets; + } +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ElasticSearchProduct.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ElasticSearchProduct.java new file mode 100644 index 000000000..10768a9c2 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ElasticSearchProduct.java @@ -0,0 +1,32 @@ +package com.techie.shoppingstore.model; + +import lombok.Data; +import org.springframework.data.elasticsearch.annotations.CompletionField; +import org.springframework.data.elasticsearch.annotations.Document; +import org.springframework.data.elasticsearch.annotations.Field; +import org.springframework.data.elasticsearch.annotations.FieldType; +import org.springframework.data.elasticsearch.core.completion.Completion; + +import java.math.BigDecimal; +import java.util.List; + +// Document used to store products in ElasticSearch +@Document(indexName = "product") +@Data +public class ElasticSearchProduct { + private String id; + private String name; + private String description; + private BigDecimal price; + private String sku; + private String imageUrl; + private Category category; + @Field(type = FieldType.Nested) + private List productAttributeList; + private Integer quantity; + private String manufacturer; + private boolean featured; + @CompletionField(maxInputLength = 100) + private Completion suggestions; + private List productRating; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Mail.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Mail.java new file mode 100644 index 000000000..a65609e7f --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Mail.java @@ -0,0 +1,13 @@ +package com.techie.shoppingstore.model; + +import lombok.Data; +import lombok.RequiredArgsConstructor; + +@Data +@RequiredArgsConstructor +public class Mail { + private String from; + private String to; + private String content; + private String subject; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Product.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Product.java new file mode 100644 index 000000000..143c19d7e --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/Product.java @@ -0,0 +1,30 @@ +package com.techie.shoppingstore.model; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.List; + +@Document(collection = "Product") +@Data +@NoArgsConstructor +@AllArgsConstructor +public class Product implements Serializable { + private String id; + private String name; + private String description; + private BigDecimal price; + private String sku; + private String imageUrl; + private Category category; + private Long categoryId; + private List productAttributeList; + private Integer quantity; + private String manufacturer; + private boolean featured; + private List productRating; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductAttribute.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductAttribute.java new file mode 100644 index 000000000..18bef0f26 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductAttribute.java @@ -0,0 +1,29 @@ +package com.techie.shoppingstore.model; + +import org.springframework.data.elasticsearch.annotations.Field; +import org.springframework.data.elasticsearch.annotations.FieldType; + +import java.io.Serializable; + +public class ProductAttribute implements Serializable { + @Field(type = FieldType.Text, fielddata = true) + private String attributeName; + @Field(type = FieldType.Text, fielddata = true) + private String attributeValue; + + public String getAttributeName() { + return attributeName; + } + + public void setAttributeName(String attributeName) { + this.attributeName = attributeName; + } + + public String getAttributeValue() { + return attributeValue; + } + + public void setAttributeValue(String attributeValue) { + this.attributeValue = attributeValue; + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductRating.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductRating.java new file mode 100644 index 000000000..b7f733607 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ProductRating.java @@ -0,0 +1,23 @@ +package com.techie.shoppingstore.model; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import javax.validation.constraints.Max; +import javax.validation.constraints.Min; +import java.math.BigDecimal; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public class ProductRating { + private String id; + @Min(1) + @Max(5) + private BigDecimal ratingStars; + private String productId; + private String elasticSearchProductId; + private String review; + private String userName; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCart.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCart.java new file mode 100644 index 000000000..8cfc38d43 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCart.java @@ -0,0 +1,21 @@ +package com.techie.shoppingstore.model; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import org.springframework.data.annotation.Id; + +import java.math.BigDecimal; +import java.util.Set; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ShoppingCart { + @Id + private String id; + private Set shoppingCartItems; + private BigDecimal cartTotalPrice; + private int numberOfItems; + private String username; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCartItem.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCartItem.java new file mode 100644 index 000000000..93ce74b26 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/ShoppingCartItem.java @@ -0,0 +1,11 @@ +package com.techie.shoppingstore.model; + +import lombok.Data; + +import java.math.BigDecimal; + +@Data +public class ShoppingCartItem { + private String name; + private BigDecimal price; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/User.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/User.java new file mode 100644 index 000000000..5fb3c9aa6 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/User.java @@ -0,0 +1,33 @@ +package com.techie.shoppingstore.model; + +import lombok.Data; +import org.springframework.data.annotation.Id; +import org.springframework.data.annotation.Transient; +import org.springframework.data.mongodb.core.mapping.Document; + +import javax.validation.constraints.Email; +import javax.validation.constraints.NotEmpty; + +@Document(collection = "User") +@Data +public class User { + @Id + private String id; + @Email + @NotEmpty(message = "Email is required") + private String email; + @NotEmpty(message = "Email is required") + private String username; + @NotEmpty(message = "Password is required") + private String password; + @Transient + @NotEmpty(message = "Password Confirmation is Required") + private String passwordConfirmation; + private boolean enabled; + + public User(String email, String username, String password) { + this.email = email; + this.username = username; + this.password = password; + } +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/VerificationToken.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/VerificationToken.java new file mode 100644 index 000000000..870235c05 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/model/VerificationToken.java @@ -0,0 +1,17 @@ +package com.techie.shoppingstore.model; + +import lombok.Data; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.time.Instant; + +@Document(collection = "VerificationToken") +@Data +public class VerificationToken { + @Id + private String id; + private String token; + private User user; + private Instant expiryDate; +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CartRepository.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CartRepository.java new file mode 100644 index 000000000..6be33ef7e --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CartRepository.java @@ -0,0 +1,8 @@ +package com.techie.shoppingstore.repository; + +import com.techie.shoppingstore.model.ShoppingCart; +import org.springframework.data.mongodb.repository.MongoRepository; + +public interface CartRepository extends MongoRepository { + public ShoppingCart findByUsername(String username); +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CategoryRepository.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CategoryRepository.java new file mode 100644 index 000000000..52812fe25 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/CategoryRepository.java @@ -0,0 +1,12 @@ +package com.techie.shoppingstore.repository; + +import com.techie.shoppingstore.model.Category; +import org.springframework.data.mongodb.repository.MongoRepository; +import org.springframework.stereotype.Repository; + +import java.util.Optional; + +@Repository +public interface CategoryRepository extends MongoRepository { + Optional findByName(String categoryName); +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductRepository.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductRepository.java new file mode 100644 index 000000000..0b77ff4b6 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductRepository.java @@ -0,0 +1,16 @@ +package com.techie.shoppingstore.repository; + +import com.techie.shoppingstore.model.Category; +import com.techie.shoppingstore.model.Product; +import org.springframework.data.mongodb.repository.MongoRepository; + +import java.util.List; +import java.util.Optional; + +public interface ProductRepository extends MongoRepository { + Optional findByName(String productName); + + List findByCategory(Category category); + + Optional findBySku(String sku); +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductSearchRepository.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductSearchRepository.java new file mode 100644 index 000000000..6152b8487 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/ProductSearchRepository.java @@ -0,0 +1,15 @@ +package com.techie.shoppingstore.repository; + +import com.techie.shoppingstore.model.Category; +import com.techie.shoppingstore.model.ElasticSearchProduct; +import org.springframework.data.elasticsearch.repository.ElasticsearchRepository; +import org.springframework.stereotype.Repository; + +import java.util.List; +import java.util.Optional; + +@Repository +public interface ProductSearchRepository extends ElasticsearchRepository { + List findByCategory(Category category); + Optional findBySku(String sku); +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/UserRepository.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/UserRepository.java new file mode 100644 index 000000000..ac4fe51d0 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/UserRepository.java @@ -0,0 +1,16 @@ +package com.techie.shoppingstore.repository; + +import com.techie.shoppingstore.model.User; +import org.springframework.data.mongodb.repository.MongoRepository; +import org.springframework.stereotype.Repository; + +import java.util.Optional; + +@Repository +public interface UserRepository extends MongoRepository { + boolean existsByUsername(String username); + + Optional findById(String id); + + Optional findByUsername(String username); +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/VerificationTokenRepository.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/VerificationTokenRepository.java new file mode 100644 index 000000000..037d1caf9 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/repository/VerificationTokenRepository.java @@ -0,0 +1,10 @@ +package com.techie.shoppingstore.repository; + +import com.techie.shoppingstore.model.VerificationToken; +import org.springframework.data.mongodb.repository.MongoRepository; + +import java.util.Optional; + +public interface VerificationTokenRepository extends MongoRepository { + Optional findByToken(String token); +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/AuthService.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/AuthService.java new file mode 100644 index 000000000..be3c7e4a9 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/AuthService.java @@ -0,0 +1,110 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.dto.AuthenticationResponse; +import com.techie.shoppingstore.dto.LoginRequestDto; +import com.techie.shoppingstore.dto.RegisterRequestDto; +import com.techie.shoppingstore.exceptions.ApiResponse; +import com.techie.shoppingstore.exceptions.SpringStoreException; +import com.techie.shoppingstore.model.User; +import com.techie.shoppingstore.model.VerificationToken; +import com.techie.shoppingstore.repository.UserRepository; +import com.techie.shoppingstore.repository.VerificationTokenRepository; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.security.authentication.AuthenticationManager; +import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.security.crypto.password.PasswordEncoder; +import org.springframework.stereotype.Service; + +import java.util.Optional; +import java.util.UUID; + +@Service +@Slf4j +public class AuthService { + + @Autowired + private UserRepository userRepository; + @Autowired + private AuthenticationManager authenticationManager; + @Autowired + private PasswordEncoder passwordEncoder; + @Autowired + private JwtTokenProvider jwtTokenProvider; + @Autowired + private MailContentBuilder mailContentBuilder; + @Autowired + private MailService mailService; + @Autowired + private VerificationTokenRepository verificationTokenRepository; + @Value("${account.verification.url}") + private String accountVerificationUrl; + + public boolean existsByUserName(RegisterRequestDto registerRequestDto) { + return userRepository.existsByUsername(registerRequestDto.getUsername()); + } + + public void createUser(RegisterRequestDto registerRequestDto) { + String encodedPassword = passwordEncoder.encode(registerRequestDto.getPassword()); + + User user = new User(registerRequestDto.getEmail(), + registerRequestDto.getUsername(), + encodedPassword); + user.setEnabled(false); + userRepository.save(user); + log.info("Saved User to Database, sending activation email"); + + String token = generateVerificationToken(user); + String message = mailContentBuilder.build("Thank you for signing up to Spring Store, please click on the below url to activate your account : " + + accountVerificationUrl + "/" + token); + + mailService.sendMail(user.getEmail(), message); + log.info("Activation email sent!!"); + } + + private String generateVerificationToken(User user) { + String token = UUID.randomUUID().toString(); + VerificationToken verificationToken = new VerificationToken(); + verificationToken.setToken(token); + verificationToken.setUser(user); + verificationTokenRepository.save(verificationToken); + return token; + } + + public AuthenticationResponse authenticate(LoginRequestDto loginRequestDto) { + Authentication authenticate = authenticationManager.authenticate( + new UsernamePasswordAuthenticationToken( + loginRequestDto.getUsername(), + loginRequestDto.getPassword()) + ); + + SecurityContextHolder.getContext().setAuthentication(authenticate); + String accessToken = jwtTokenProvider.generateToken(authenticate); + return new AuthenticationResponse(accessToken, loginRequestDto.getUsername()); + } + + Optional getCurrentUser() { + org.springframework.security.core.userdetails.User principal = (org.springframework.security.core.userdetails.User) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); + return Optional.of(principal); + } + + public ApiResponse verifyAccount(String token) { + Optional verificationTokenOptional = verificationTokenRepository.findByToken(token); + if (verificationTokenOptional.isPresent()) { + fetchUserAndEnable(verificationTokenOptional.get()); + return new ApiResponse(200, "User is Enabled"); + } else { + return new ApiResponse(400, "Invalid Token"); + } + } + + private void fetchUserAndEnable(VerificationToken verificationToken) { + String username = verificationToken.getUser().getUsername(); + User user = userRepository.findByUsername(username).orElseThrow(() -> new SpringStoreException("User Not Found with id - " + username)); + user.setEnabled(true); + userRepository.save(user); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CartService.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CartService.java new file mode 100644 index 000000000..4ea6b3cfb --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CartService.java @@ -0,0 +1,29 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.repository.CartRepository; +import com.techie.shoppingstore.repository.ProductRepository; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +@Service +@Slf4j +@AllArgsConstructor +public class CartService { + + private final ProductRepository productRepository; + private final AuthService authService; + private final CartRepository cartRepository; + + public void addToCart(String sku) { +// Product product = productRepository.findBySku(sku) +// .orElseThrow(() -> new SpringStoreException("Product with SKU : " + sku + " not found")); +// Optional currentUser = authService.getCurrentUser(); +// if (currentUser.isPresent()) { +// ShoppingCart shoppingCart = cartRepository.findByUsername(currentUser.get().getUsername()); +// ShoppingCartItem shoppingCartItem = new ShoppingCartItem(); +// } else { +// +// } + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CategoryService.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CategoryService.java new file mode 100644 index 000000000..0e1cea7d0 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/CategoryService.java @@ -0,0 +1,31 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.dto.CategoryDto; +import com.techie.shoppingstore.model.Category; +import com.techie.shoppingstore.repository.CategoryRepository; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.cache.annotation.Cacheable; +import org.springframework.stereotype.Service; + +import java.util.List; + +import static java.util.stream.Collectors.toList; + +@Service +@Slf4j +@AllArgsConstructor +public class CategoryService { + + private final CategoryRepository categoryRepository; + + @Cacheable(value = "categories") + public List findAll() { + List categories = categoryRepository.findAll(); + return categories + .stream() + .map(category -> new CategoryDto(category.getName())) + .collect(toList()); + + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JWTAuthenticationFilter.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JWTAuthenticationFilter.java new file mode 100644 index 000000000..e33afb03a --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JWTAuthenticationFilter.java @@ -0,0 +1,56 @@ +package com.techie.shoppingstore.service; + +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.security.web.authentication.WebAuthenticationDetailsSource; +import org.springframework.stereotype.Component; +import org.springframework.util.StringUtils; +import org.springframework.web.filter.OncePerRequestFilter; + +import javax.servlet.FilterChain; +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +@Component +@Slf4j +public class JWTAuthenticationFilter extends OncePerRequestFilter { + @Autowired + private JwtTokenProvider tokenProvider; + + @Autowired + private UserDetailServiceImpl userDetailServiceImpl; + + @Override + protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException { + try { + String jwt = getJwtFromRequest(request); + + if (StringUtils.hasText(jwt) && tokenProvider.validateToken(jwt)) { + String username = tokenProvider.getUsernameFromJWT(jwt); + + UserDetails userDetails = userDetailServiceImpl.loadUserByName(username); + UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(userDetails, null, userDetails.getAuthorities()); + authentication.setDetails(new WebAuthenticationDetailsSource().buildDetails(request)); + + SecurityContextHolder.getContext().setAuthentication(authentication); + } + } catch (Exception ex) { + logger.error("Could not set user authentication in security context", ex); + } + + filterChain.doFilter(request, response); + } + + private String getJwtFromRequest(HttpServletRequest request) { + String bearerToken = request.getHeader("Authorization"); + if (StringUtils.hasText(bearerToken) && bearerToken.startsWith("Bearer ")) { + return bearerToken.substring(7); + } + return bearerToken; + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JwtTokenProvider.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JwtTokenProvider.java new file mode 100644 index 000000000..6290f29a7 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/JwtTokenProvider.java @@ -0,0 +1,100 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.exceptions.SpringStoreException; +import io.jsonwebtoken.*; +import io.jsonwebtoken.security.SignatureException; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.userdetails.User; +import org.springframework.stereotype.Service; + +import javax.annotation.PostConstruct; +import java.io.IOException; +import java.io.InputStream; +import java.security.*; +import java.security.cert.Certificate; +import java.security.cert.CertificateException; +import java.util.Date; + +@Service +@Slf4j +public class JwtTokenProvider { + + private static final String AUTH_STORE = "ecommerce-auth-store"; + @Value("${keystore.password}") + private String keyStorePassword; + @Value("${jwt.expirationTimeMs}") + private int jwtExpirationTimeInMillis; + private KeyStore keyStore; + + @PostConstruct + public void loadKeyStore() { + try { + keyStore = KeyStore.getInstance("JKS"); + InputStream resourceAsStream = getClass().getResourceAsStream("/auth.jks"); + keyStore.load(resourceAsStream, keyStorePassword.toCharArray()); + } catch (KeyStoreException | CertificateException | NoSuchAlgorithmException | IOException e) { + throw new SpringStoreException("Exception occured while loading keystore"); + } + + } + + String generateToken(Authentication authentication) { + User principal = (User) authentication.getPrincipal(); + + Date now = new Date(); + Date expiryDate = new Date(now.getTime() + jwtExpirationTimeInMillis); + + return Jwts.builder() + .setSubject(principal.getUsername()) + .setIssuedAt(new Date()) + .setExpiration(expiryDate) + .signWith(getPrivateKey()) + .compact(); + } + + private PrivateKey getPrivateKey() { + try { + return (PrivateKey) keyStore.getKey(AUTH_STORE, keyStorePassword.toCharArray()); + } catch (KeyStoreException | NoSuchAlgorithmException | UnrecoverableKeyException e) { + throw new SpringStoreException("Exception occurred while retrieving public key from keystore"); + } + } + + private PublicKey getPublicKey() { + try { + Certificate certificate = keyStore.getCertificate(AUTH_STORE); + return certificate.getPublicKey(); + } catch (KeyStoreException e) { + throw new SpringStoreException("Exception occurred while retrieving public key from keystore"); + } + } + + String getUsernameFromJWT(String token) { + Claims claims = Jwts.parser() + .setSigningKey(getPublicKey()) + .parseClaimsJws(token) + .getBody(); + + return claims.getSubject(); + } + + boolean validateToken(String authToken) { + try { + Jwts.parser().setSigningKey(getPrivateKey()).parseClaimsJws(authToken); + return true; + } catch (SignatureException ex) { + log.error("Invalid JWT signature", ex); + } catch (MalformedJwtException ex) { + log.error("Invalid JWT token", ex); + } catch (ExpiredJwtException ex) { + log.error("Expired JWT token", ex); + } catch (UnsupportedJwtException ex) { + log.error("Unsupported JWT token", ex); + } catch (IllegalArgumentException ex) { + log.error("JWT claims string is empty.", ex); + } + return false; + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailContentBuilder.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailContentBuilder.java new file mode 100644 index 000000000..fc7a38139 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailContentBuilder.java @@ -0,0 +1,22 @@ +package com.techie.shoppingstore.service; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.thymeleaf.TemplateEngine; +import org.thymeleaf.context.Context; + +@Service +public class MailContentBuilder { + private TemplateEngine templateEngine; + + @Autowired + public MailContentBuilder(TemplateEngine templateEngine) { + this.templateEngine = templateEngine; + } + + String build(String message) { + Context context = new Context(); + context.setVariable("message", message); + return templateEngine.process("mailTemplate", context); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailService.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailService.java new file mode 100644 index 000000000..440a1b13f --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/MailService.java @@ -0,0 +1,35 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.exceptions.SpringStoreException; +import lombok.AllArgsConstructor; +import org.springframework.mail.MailException; +import org.springframework.mail.javamail.JavaMailSender; +import org.springframework.mail.javamail.MimeMessageHelper; +import org.springframework.mail.javamail.MimeMessagePreparator; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; + +@Service +@AllArgsConstructor +public class MailService { + + private final JavaMailSender mailSender; + private final MailContentBuilder mailContentBuilder; + + @Async + void sendMail(String recipient, String message) { + MimeMessagePreparator messagePreparator = mimeMessage -> { + MimeMessageHelper messageHelper = new MimeMessageHelper(mimeMessage); + messageHelper.setFrom("springstore@email.com"); + messageHelper.setTo(recipient); + messageHelper.setSubject("Account Activation"); + messageHelper.setText(mailContentBuilder.build(message)); + }; + try { + mailSender.send(messagePreparator); + } catch (MailException e) { + throw new SpringStoreException("Exception occurred when sending mail to " + recipient); + } + } + +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductMapper.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductMapper.java new file mode 100644 index 000000000..ec7cd83d1 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductMapper.java @@ -0,0 +1,22 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.dto.ProductDto; +import com.techie.shoppingstore.dto.ProductRatingDto; +import com.techie.shoppingstore.model.ElasticSearchProduct; +import com.techie.shoppingstore.model.Product; +import com.techie.shoppingstore.model.ProductRating; +import org.mapstruct.Mapper; +import org.mapstruct.Mapping; + +@Mapper(componentModel = "spring") +public interface ProductMapper { + ElasticSearchProduct productToESProduct(Product product); + + @Mapping(source = "name", target = "productName") + ProductDto mapESProductToDTO(ElasticSearchProduct elasticSearchProduct); + + ProductRating mapProductRatingDto(ProductRatingDto productRatingDto); + + @Mapping(source = "id", target = "ratingId") + ProductRatingDto mapProductRating(ProductRating productRating); +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductService.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductService.java new file mode 100644 index 000000000..28e50fd8f --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ProductService.java @@ -0,0 +1,146 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.dto.ProductAvailability; +import com.techie.shoppingstore.dto.ProductDto; +import com.techie.shoppingstore.dto.ProductRatingDto; +import com.techie.shoppingstore.exceptions.SpringStoreException; +import com.techie.shoppingstore.model.Category; +import com.techie.shoppingstore.model.ElasticSearchProduct; +import com.techie.shoppingstore.model.Product; +import com.techie.shoppingstore.model.ProductRating; +import com.techie.shoppingstore.repository.CategoryRepository; +import com.techie.shoppingstore.repository.ProductRepository; +import com.techie.shoppingstore.repository.ProductSearchRepository; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.cache.annotation.Cacheable; +import org.springframework.data.redis.core.RedisKeyValueTemplate; +import org.springframework.stereotype.Service; +import org.springframework.util.StopWatch; + +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; +import java.util.UUID; +import java.util.function.Supplier; + +import static java.util.Collections.emptyList; +import static java.util.stream.Collectors.toList; + +@Service +@AllArgsConstructor +@Slf4j +public class ProductService { + + private final ProductRepository productRepository; + private final ProductSearchRepository productSearchRepository; + private final CategoryRepository categoryRepository; + private final ProductMapper productMapper; + private final RedisKeyValueTemplate redisKeyValueTemplate; + + @Cacheable(value = "products1") + public List findAll() { + StopWatch stopWatch = new StopWatch(); + stopWatch.start(); + List all = productRepository.findAll(); + log.info("Found {} products..", all.size()); + stopWatch.stop(); + log.info("Time taken to load {} products is {}", all.size(), stopWatch.getTotalTimeSeconds()); + return all + .stream() + .map(this::mapToDto) + .collect(toList()); + } + + private ProductDto mapToDto(Product product) { + ProductAvailability productAvailability = product.getQuantity() > 0 ? inStock() : outOfStock(); + if (product.getProductRating() != null) { + List productRatingDtoList = product.getProductRating().stream().map(productMapper::mapProductRating).collect(toList()); + return new ProductDto(product.getName(), product.getImageUrl(), product.getSku(), product.getPrice(), product.getDescription(), product.getManufacturer(), productAvailability, product.getProductAttributeList(), product.isFeatured(), productRatingDtoList); + } else { + return new ProductDto(product.getName(), product.getImageUrl(), product.getSku(), product.getPrice(), product.getDescription(), product.getManufacturer(), productAvailability, product.getProductAttributeList(), product.isFeatured(), emptyList()); + } + } + + private ProductAvailability outOfStock() { + return new ProductAvailability("Out of Stock", "red"); + } + + private ProductAvailability inStock() { + return new ProductAvailability("Out of Stock", "forestgreen"); + } + + @Cacheable(value = "singleProduct", key = "#sku") + public ProductDto readOneProduct(String sku) { + log.info("Reading Product with productName - {}", sku); + Optional optionalProduct = productRepository.findBySku(sku); + Product product = optionalProduct.orElseThrow(IllegalArgumentException::new); + return mapToDto(product); + } + + @Cacheable(value = "productsByCategory") + public List findByCategoryName(String categoryName) { + log.info("Reading Products belonging to category- {}", categoryName); + Optional categoryOptional = categoryRepository.findByName(categoryName); + Category category = categoryOptional.orElseThrow(() -> new IllegalArgumentException("Category Not Found")); + + List products = productRepository.findByCategory(category); + log.info("Found {} categories", products.size()); + return products.stream().map(this::mapToDto).collect(toList()); + } + + public void save(ProductDto productDto) { + Product product = new Product(); + product.setName(productDto.getProductName()); + } + + public void postProductRating(ProductRatingDto productRatingDto) { + Supplier springStoreExceptionSupplier = () -> new SpringStoreException("No Product exists with sku - " + productRatingDto.getSku()); + Product product = productRepository.findBySku(productRatingDto.getSku()).orElseThrow(springStoreExceptionSupplier); + ElasticSearchProduct elasticSearchProduct = productSearchRepository.findBySku(productRatingDto.getSku()).orElseThrow(springStoreExceptionSupplier); + + ProductRating productRating = productMapper.mapProductRatingDto(productRatingDto); + productRating.setId(UUID.randomUUID().toString()); + productRating.setProductId(product.getId()); + productRating.setElasticSearchProductId(elasticSearchProduct.getId()); + List productRatingList = product.getProductRating() == null ? new ArrayList<>() : product.getProductRating(); + productRatingList.add(productRating); + product.setProductRating(productRatingList); + elasticSearchProduct.setProductRating(productRatingList); + + productSearchRepository.save(elasticSearchProduct); + productRepository.save(product); + } + + public void editProductRating(ProductRatingDto productRatingDto) { + Supplier springStoreExceptionSupplier = () -> new SpringStoreException("No Product exists with sku - " + productRatingDto.getSku()); + Product product = productRepository.findBySku(productRatingDto.getSku()).orElseThrow(springStoreExceptionSupplier); + ElasticSearchProduct elasticSearchProduct = productSearchRepository.findBySku(productRatingDto.getSku()).orElseThrow(springStoreExceptionSupplier); + + List productRatingList = product.getProductRating(); + ProductRating productRating = productRatingList.stream().filter(rating -> rating.getId().equals(productRatingDto.getRatingId())).findFirst().orElseThrow(() -> new SpringStoreException("No Rating found with id - " + productRatingDto.getRatingId())); + productRating.setRatingStars(productRatingDto.getRatingStars()); + productRating.setReview(productRatingDto.getReview()); + + productSearchRepository.save(elasticSearchProduct); + productRepository.save(product); + } + + public void deleteProductRating(ProductRatingDto productRatingDto) { + Supplier springStoreExceptionSupplier = () -> new SpringStoreException("No Product exists with sku - " + productRatingDto.getSku()); + Product product = productRepository.findBySku(productRatingDto.getSku()).orElseThrow(springStoreExceptionSupplier); + ElasticSearchProduct elasticSearchProduct = productSearchRepository.findBySku(productRatingDto.getSku()).orElseThrow(springStoreExceptionSupplier); + + product.setProductRating(null); + elasticSearchProduct.setProductRating(null); + + productSearchRepository.save(elasticSearchProduct); + productRepository.save(product); + } + + public List getProductRating(String sku) { + Supplier springStoreExceptionSupplier = () -> new SpringStoreException("No Product exists with sku - " + sku); + Product product = productRepository.findBySku(sku).orElseThrow(springStoreExceptionSupplier); + return product.getProductRating().stream().map(productMapper::mapProductRating).collect(toList()); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ResponseSerializer.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ResponseSerializer.java new file mode 100644 index 000000000..18fe70b7a --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/ResponseSerializer.java @@ -0,0 +1,23 @@ +package com.techie.shoppingstore.service; + +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.databind.JsonSerializer; +import com.fasterxml.jackson.databind.SerializerProvider; +import org.elasticsearch.client.Response; +import org.elasticsearch.common.io.Streams; +import org.springframework.boot.jackson.JsonComponent; + +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.Reader; + +@JsonComponent +public class ResponseSerializer extends JsonSerializer { + + @Override + public void serialize(Response response, JsonGenerator gen, SerializerProvider provider) throws IOException { + try (Reader in = new InputStreamReader(response.getEntity().getContent())) { + gen.writeRaw(Streams.copyToString(in)); + } + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/SearchService.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/SearchService.java new file mode 100644 index 000000000..73b586dc4 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/SearchService.java @@ -0,0 +1,267 @@ +package com.techie.shoppingstore.service; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.techie.shoppingstore.dto.*; +import com.techie.shoppingstore.dto.SearchQueryDto.Filter; +import com.techie.shoppingstore.exceptions.SpringStoreException; +import com.techie.shoppingstore.model.Category; +import com.techie.shoppingstore.model.ElasticSearchProduct; +import com.techie.shoppingstore.repository.CategoryRepository; +import io.micrometer.core.instrument.util.StringUtils; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.entity.ContentType; +import org.apache.http.nio.entity.NByteArrayEntity; +import org.apache.lucene.search.join.ScoreMode; +import org.apache.lucene.util.BytesRef; +import org.elasticsearch.action.search.SearchRequest; +import org.elasticsearch.action.search.SearchResponse; +import org.elasticsearch.client.Request; +import org.elasticsearch.client.RestHighLevelClient; +import org.elasticsearch.common.unit.Fuzziness; +import org.elasticsearch.common.xcontent.ToXContent; +import org.elasticsearch.common.xcontent.XContentHelper; +import org.elasticsearch.common.xcontent.XContentType; +import org.elasticsearch.index.query.BoolQueryBuilder; +import org.elasticsearch.index.query.QueryBuilder; +import org.elasticsearch.index.query.QueryBuilders; +import org.elasticsearch.index.query.TermsQueryBuilder; +import org.elasticsearch.search.SearchHit; +import org.elasticsearch.search.aggregations.Aggregation; +import org.elasticsearch.search.aggregations.AggregationBuilder; +import org.elasticsearch.search.aggregations.AggregationBuilders; +import org.elasticsearch.search.aggregations.Aggregations; +import org.elasticsearch.search.aggregations.bucket.filter.FilterAggregationBuilder; +import org.elasticsearch.search.aggregations.bucket.filter.ParsedFilter; +import org.elasticsearch.search.aggregations.bucket.nested.NestedAggregationBuilder; +import org.elasticsearch.search.aggregations.bucket.nested.ParsedNested; +import org.elasticsearch.search.aggregations.bucket.terms.ParsedStringTerms; +import org.elasticsearch.search.aggregations.bucket.terms.Terms.Bucket; +import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder; +import org.elasticsearch.search.aggregations.metrics.max.MaxAggregationBuilder; +import org.elasticsearch.search.aggregations.metrics.max.ParsedMax; +import org.elasticsearch.search.aggregations.metrics.min.MinAggregationBuilder; +import org.elasticsearch.search.aggregations.metrics.min.ParsedMin; +import org.elasticsearch.search.builder.SearchSourceBuilder; +import org.springframework.stereotype.Service; + +import java.io.IOException; +import java.math.BigDecimal; +import java.nio.charset.Charset; +import java.util.*; + +import static java.lang.Math.toIntExact; +import static java.math.BigDecimal.valueOf; +import static java.util.Collections.singletonList; +import static java.util.stream.Collectors.toList; +import static org.elasticsearch.client.RequestOptions.DEFAULT; +import static org.elasticsearch.index.query.QueryBuilders.*; + +@Service +@AllArgsConstructor +@Slf4j +public class SearchService { + + private static final String INDEX = "product"; + private static final String AGG_ALL_FACETS_RESULT_FILTERED = "agg_all_facets_result_filtered"; + private static final String BY_CATEGORY = "by_category"; + private static final String CATEGORY_NAME_KEYWORD = "category.name.keyword"; + private static final String MIN_PRICE = "min_price"; + private static final String MAX_PRICE = "max_price"; + private static final String AGG_ALL_FACETS_FILTERED = "agg_all_facets_filtered"; + private static final String FILTERED_AGGREGATION = "filtered_aggregation"; + private static final String BY_ATTRIBUTE_NAME = "by_attribute_name"; + private static final String BY_ATTRIBUTE_VALUE = "by_attribute_value"; + private static final String PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_VALUE_KEYWORD = "productAttributeList.attributeValue.keyword"; + private static final String PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_NAME_KEYWORD = "productAttributeList.attributeName.keyword"; + private static final String PRICE = "price"; + private static final String PRODUCT_ATTRIBUTE_LIST = "productAttributeList"; + private static final String CATEGORY_NAME = "category.name"; + private static final String NAME = "name"; + private static final String DESCRIPTION = "description"; + private static final String MINIMUM_SHOULD_MATCH = "66%"; + + private final RestHighLevelClient client; + private final CategoryRepository categoryRepository; + private final ObjectMapper objectMapper; + private final ProductMapper productMapper; + + public ProductSearchResponseDto searchWithFilters(SearchQueryDto searchQueryDto, String categoryName) throws IOException { + Category category = categoryRepository.findByName(categoryName) + .orElseThrow(() -> new SpringStoreException("Category - " + categoryName + " Not Found")); + + BoolQueryBuilder fullTextQueryBuilder = performFullTextSearch(searchQueryDto, categoryName); + FilterAggregationBuilder agg_all_facets_result_filtered = createAggregations(searchQueryDto, category.getPossibleFacets()); + BoolQueryBuilder postFilterQuery = createPostFilterQuery(searchQueryDto); + + SearchResponse searchResponse = performSearch(fullTextQueryBuilder, postFilterQuery, agg_all_facets_result_filtered); + return mapResponse(searchResponse, false); + } + + public ProductSearchResponseDto search(SearchQueryDto searchQueryDto) throws IOException { + BoolQueryBuilder fullTextQueryBuilder = performFullTextSearch(searchQueryDto, null); + FilterAggregationBuilder agg_all_facets_result_filtered = createAggregations(searchQueryDto, singletonList("Brand")); + TermsAggregationBuilder by_category_value = AggregationBuilders.terms(BY_CATEGORY).field(CATEGORY_NAME_KEYWORD); + SearchResponse searchResponse = performSearch(fullTextQueryBuilder, null, agg_all_facets_result_filtered, by_category_value); + return mapResponse(searchResponse, true); + } + + private ProductSearchResponseDto mapResponse(SearchResponse searchResponse, boolean includeCategory) { + List productDtos = extractProductHits(searchResponse); + + Aggregation aggregations = searchResponse.getAggregations().get(AGG_ALL_FACETS_RESULT_FILTERED); + Map stringAggregationMap = ((ParsedFilter) aggregations).getAggregations().asMap(); + + BigDecimal minPrice = valueOf(((ParsedMin) stringAggregationMap.get(MIN_PRICE)).getValue()); + BigDecimal maxPrice = valueOf(((ParsedMax) stringAggregationMap.get(MAX_PRICE)).getValue()); + + List facetDtos = extractResponseForFilteredAggregations(stringAggregationMap); + if (includeCategory) + extractResponseForCategoryAggregation(searchResponse, facetDtos); + + return new ProductSearchResponseDto(productDtos, minPrice, maxPrice, facetDtos); + } + + private List extractResponseForFilteredAggregations(Map stringAggregationMap) { + Aggregation agg_all_facets_filtered = stringAggregationMap.get(AGG_ALL_FACETS_FILTERED); + Aggregation filtered_aggregation = ((ParsedNested) agg_all_facets_filtered).getAggregations().get(FILTERED_AGGREGATION); + Aggregations aggregations1 = ((ParsedFilter) filtered_aggregation).getAggregations(); + ParsedStringTerms by_attribute_name = (ParsedStringTerms) aggregations1.getAsMap().get(BY_ATTRIBUTE_NAME); + List buckets = by_attribute_name.getBuckets(); + List facetDtos = new ArrayList<>(); + for (Bucket bucket : buckets) { + FacetDto facetDto = new FacetDto(); + facetDto.setFacetName(bucket.getKeyAsString()); + List facetValueDtos = new ArrayList<>(); + ParsedStringTerms by_attribute_value = bucket.getAggregations().get(BY_ATTRIBUTE_VALUE); + for (Bucket attrValueBucket : by_attribute_value.getBuckets()) { + FacetValueDto facetValueDto = new FacetValueDto(); + facetValueDto.setFacetValueName(attrValueBucket.getKeyAsString()); + facetValueDto.setCount(toIntExact(attrValueBucket.getDocCount())); + facetValueDtos.add(facetValueDto); + } + facetDto.setFacetValueDto(facetValueDtos); + facetDtos.add(facetDto); + } + return facetDtos; + } + + private void extractResponseForCategoryAggregation(SearchResponse searchResponse, List facetDtos) { + ParsedStringTerms categoryAggregations = searchResponse.getAggregations().get(BY_CATEGORY); + List by_category = categoryAggregations.getBuckets(); + List facetValueDtos = new ArrayList<>(); + FacetDto facetDto = new FacetDto(); + facetDto.setFacetName("Category"); + for (Bucket bucket : by_category) { + FacetValueDto facetValueDto = new FacetValueDto(); + facetValueDto.setFacetValueName(bucket.getKeyAsString()); + facetValueDto.setCount(toIntExact(bucket.getDocCount())); + facetValueDtos.add(facetValueDto); + } + facetDto.setFacetValueDto(facetValueDtos); + facetDtos.add(facetDto); + } + + private List extractProductHits(SearchResponse searchResponse) { + SearchHit[] hits = searchResponse.getHits().getHits(); + List products = new ArrayList<>(); + Arrays.stream(hits) + .forEach(hit -> products.add(objectMapper.convertValue(hit.getSourceAsMap(), + ElasticSearchProduct.class))); + return products.stream().map(productMapper::mapESProductToDTO).collect(toList()); + } + + private FilterAggregationBuilder createAggregations(SearchQueryDto searchQueryDto, List possibleFacets) { + TermsAggregationBuilder by_attribute_value = AggregationBuilders.terms(BY_ATTRIBUTE_VALUE) + .field(PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_VALUE_KEYWORD); + TermsAggregationBuilder by_attribute_name = AggregationBuilders.terms(BY_ATTRIBUTE_NAME) + .field(PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_NAME_KEYWORD) + .subAggregation(by_attribute_value); + + MinAggregationBuilder minPriceAgg = AggregationBuilders.min(MIN_PRICE).field(PRICE); + MaxAggregationBuilder maxPriceAgg = AggregationBuilders.max(MAX_PRICE).field(PRICE); + + + TermsQueryBuilder filterForAggregations = termsQuery(PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_NAME_KEYWORD, possibleFacets); + FilterAggregationBuilder filtered_aggregation = AggregationBuilders.filter(FILTERED_AGGREGATION, filterForAggregations).subAggregation(by_attribute_name); + + NestedAggregationBuilder agg_all_facets_filtered = AggregationBuilders.nested(AGG_ALL_FACETS_FILTERED, PRODUCT_ATTRIBUTE_LIST).subAggregation(filtered_aggregation); + + BoolQueryBuilder productAttributeList = boolQuery(); + for (Filter filter : searchQueryDto.getFilters()) { + productAttributeList.must(nestedQuery(PRODUCT_ATTRIBUTE_LIST, + boolQuery() + .must(termQuery(PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_NAME_KEYWORD, filter.getKey())) + .must(termQuery(PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_VALUE_KEYWORD, filter.getValue())), + ScoreMode.None)); + } + + return AggregationBuilders.filter(AGG_ALL_FACETS_RESULT_FILTERED, productAttributeList) + .subAggregation(agg_all_facets_filtered).subAggregation(minPriceAgg).subAggregation(maxPriceAgg); + } + + private BoolQueryBuilder createPostFilterQuery(SearchQueryDto searchQueryDto) { + BoolQueryBuilder postFilterQuery = QueryBuilders.boolQuery(); + BoolQueryBuilder queryBuilderForFilter = boolQuery(); + for (Filter filter : searchQueryDto.getFilters()) { + queryBuilderForFilter.must(QueryBuilders.nestedQuery(PRODUCT_ATTRIBUTE_LIST, + boolQuery() + .must(termQuery(PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_NAME_KEYWORD, filter.getKey())) + .must(termQuery(PRODUCT_ATTRIBUTE_LIST_ATTRIBUTE_VALUE_KEYWORD, filter.getValue())), + ScoreMode.None)); + } + postFilterQuery.filter(queryBuilderForFilter); + return postFilterQuery; + } + + private BoolQueryBuilder performFullTextSearch(SearchQueryDto searchQueryDto, String categoryName) { + BoolQueryBuilder queryBuilder = boolQuery(); + queryBuilder.must(Objects.requireNonNull(createFullTextSearchQuery(searchQueryDto.getTextQuery(), categoryName))); + return queryBuilder; + } + + private QueryBuilder createFullTextSearchQuery(String textQuery, String categoryName) { + BoolQueryBuilder queryBuilder = boolQuery(); + if (StringUtils.isBlank(textQuery) && categoryName != null) { + queryBuilder.must(QueryBuilders.multiMatchQuery(categoryName, CATEGORY_NAME) + .minimumShouldMatch(MINIMUM_SHOULD_MATCH) + .fuzziness(Fuzziness.AUTO)); + } else { + queryBuilder.must(QueryBuilders.multiMatchQuery(textQuery, NAME, DESCRIPTION) + .minimumShouldMatch(MINIMUM_SHOULD_MATCH) + .fuzziness(Fuzziness.AUTO)); + } + return queryBuilder; + } + + private SearchResponse performSearch(QueryBuilder queryBuilder, QueryBuilder postFilterQuery, AggregationBuilder... aggs) throws IOException { + SearchRequest request = search(queryBuilder, postFilterQuery, aggs); + Request lowLevelRequest = new Request(HttpPost.METHOD_NAME, INDEX + "/_search"); + BytesRef source = XContentHelper.toXContent(request.source(), XContentType.JSON, ToXContent.EMPTY_PARAMS, true).toBytesRef(); + log.info("QUERY {}", source.utf8ToString()); + lowLevelRequest.setEntity(new NByteArrayEntity(source.bytes, source.offset, source.length, createContentType())); + + return client.search(request, DEFAULT); + } + + private static ContentType createContentType() { + return ContentType.create(XContentType.JSON.mediaTypeWithoutParameters(), (Charset) null); + } + + private SearchRequest search(QueryBuilder queryBuilder, QueryBuilder postFilterQuery, AggregationBuilder... aggs) { + SearchRequest request = new SearchRequest(INDEX); + SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder(); + searchSourceBuilder.size(16); + searchSourceBuilder.query(queryBuilder); + for (AggregationBuilder agg : aggs) { + searchSourceBuilder.aggregation(agg); + } + if (postFilterQuery != null) { + searchSourceBuilder.postFilter(postFilterQuery); + } + request.source(searchSourceBuilder); + return request; + } + +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserDetailServiceImpl.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserDetailServiceImpl.java new file mode 100644 index 000000000..a22e48004 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserDetailServiceImpl.java @@ -0,0 +1,40 @@ +package com.techie.shoppingstore.service; + +import com.techie.shoppingstore.model.User; +import com.techie.shoppingstore.repository.UserRepository; +import lombok.AllArgsConstructor; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.security.core.userdetails.UserDetailsService; +import org.springframework.security.core.userdetails.UsernameNotFoundException; +import org.springframework.stereotype.Service; + +import java.util.Collection; +import java.util.Collections; +import java.util.Optional; + +@Service +@AllArgsConstructor +public class UserDetailServiceImpl implements UserDetailsService { + + private final UserRepository userRepository; + + @Override + public UserDetails loadUserByUsername(String username) { + Optional userOptional = userRepository.findByUsername(username); + User user = userOptional.orElseThrow(() -> new UsernameNotFoundException("No user Found with username : " + username)); + + return new org.springframework.security.core.userdetails.User(user.getUsername(), user.getPassword(), user.isEnabled(), true, true, true, getAuthorities("USER")); + } + + private Collection getAuthorities(String role) { + return Collections.singletonList(new SimpleGrantedAuthority(role)); + } + + UserDetails loadUserByName(String username) throws IllegalAccessException { + User user = userRepository.findByUsername(username).orElseThrow(IllegalAccessException::new); + + return new org.springframework.security.core.userdetails.User(user.getUsername(), user.getPassword(), user.isEnabled(), true, true, true, getAuthorities("USER")); + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserPrincipal.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserPrincipal.java new file mode 100644 index 000000000..5e3abd7c6 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/service/UserPrincipal.java @@ -0,0 +1,51 @@ +package com.techie.shoppingstore.service; + +import lombok.Data; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.userdetails.UserDetails; + +import java.util.Collection; + +@Data +public class UserPrincipal implements UserDetails { + private String id; + private String name; + private String username; + private String email; + private String password; + + @Override + public Collection getAuthorities() { + return null; + } + + @Override + public String getPassword() { + return null; + } + + @Override + public String getUsername() { + return null; + } + + @Override + public boolean isAccountNonExpired() { + return false; + } + + @Override + public boolean isAccountNonLocked() { + return false; + } + + @Override + public boolean isCredentialsNonExpired() { + return false; + } + + @Override + public boolean isEnabled() { + return false; + } +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties new file mode 100644 index 000000000..3f8b8f93a --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties @@ -0,0 +1,24 @@ +############# Database Properties ########################################## +spring.datasource.host=localhost +spring.datasource.port=27017 +spring.datasource.database=test +############# JWT Properties ########################################### +jwt.secretKey=JWTSuperSecretKey +jwt.expirationTimeMs=604800000 +keystore.password=secret +############# Mail Properties ########################################### +spring.mail.host=smtp.mailtrap.io +spring.mail.port=25 +spring.mail.username= +spring.mail.password= +spring.mail.protocol=smtp +################### Redis Config########################################### +spring.cache.type=redis +spring.redis.host=localhost +spring.redis.port=6379 +################# Elasticsearch Config ################################## +spring.data.elasticsearch.repositories.enabled=true +spring.data.elasticsearch.cluster-name=elasticsearch +spring.data.elsticsearch.cluster-nodes=localhost:9300 +########################################################################## +account.verification.url=http://localhost:8080/api/auth/accountVerification \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/auth.jks b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/auth.jks new file mode 100644 index 0000000000000000000000000000000000000000..0e316f3762ad944ec4c30f070ec83e09b0b3c82c GIT binary patch literal 2651 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 literal 0 HcmV?d00001 diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Category.json b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Category.json new file mode 100644 index 000000000..9f76d3001 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Category.json @@ -0,0 +1,51 @@ +{ + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ], + "_class" : "com.techie.shoppingstore.model.Category" +} +{ + "_id" : NumberLong(145456), + "name" : "Laptops", + "_class" : "com.techie.shoppingstore.model.Category" +} +{ + "_id" : NumberLong(167456), + "name" : "Tablets", + "_class" : "com.techie.shoppingstore.model.Category" +} +{ + "_id" : NumberLong(189456), + "name" : "Gaming", + "_class" : "com.techie.shoppingstore.model.Category" +} +{ + "_id" : NumberLong(101456), + "name" : "Cameras", + "_class" : "com.techie.shoppingstore.model.Category" +} +{ + "_id" : NumberLong(191456), + "name" : "Smart Watches", + "_class" : "com.techie.shoppingstore.model.Category" +} +{ + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets", + "_class" : "com.techie.shoppingstore.model.Category" +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Copy_of_Product.json b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Copy_of_Product.json new file mode 100644 index 000000000..8ba64e610 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Copy_of_Product.json @@ -0,0 +1,187320 @@ +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad2"), + "name" : "Fossil Q Wander FTW2102P Gen 2 Smart Watch, Light Brown", + "description" : "Fossil Q Wander FTW2102P Gen 2 Smart Watch, Light Brown", + "price" : "276", + "sku" : "Fossil Q Wander FTW2102P Gen 2 Smart Watch, Light Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2102-Smart-Watches-491362948-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI1MHxpbWFnZS9qcGVnfGltYWdlcy9oMWYvaGFlLzg4OTQ3MDkwMzkxMzQuanBnfGU4YWI1YTkyMGJiNTQ1MTY4NzcyMzQ5ZjhmNzYyNmNlODAyNGRjZGQ0MWE4N2YyNTI3ZTM2MzM1NGIyZTk4OGQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2102P" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Light Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad3"), + "name" : "Fossil Q Activist FTW1206P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Activist FTW1206P Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil Q Activist FTW1206P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1206-Smart-Watches-491363004-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI4OXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaGJiLzg4OTQ2NTg4Mzg1NTguanBnfDNjMjA3YTc4YTZlMjhmMDU1ZThhZDViNDNhNzBjM2MzN2ZkMzFmODA4MWRkMmY4MDlhNDkwNzMyZDc2OTEzNTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Activist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1206P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad4"), + "name" : "Fossil Q Activist FTW1207 Hybrid Smart Watch, Gunmetal", + "description" : "Fossil Q Activist FTW1207 Hybrid Smart Watch, Gunmetal", + "price" : "211", + "sku" : "Fossil Q Activist FTW1207 Hybrid Smart Watch, Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1207-Smart-Watches-491363005-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzMzN3xpbWFnZS9qcGVnfGltYWdlcy9oODMvaGJhLzg4OTQ2NDUxNDE1MzQuanBnfDJiNjYyYTI4YTM4MTk0OGZmMjZkMWFmYTk5ZmE4YjcwYTM4ZDEyNDE1MmMzOGZlODIwNjlkYzlmMDQ5ZDA0NDU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Activist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1207" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad5"), + "name" : "FOSSIL FTW4002P Q Explorist Gen 3 Smart Watch, Blue", + "description" : "FOSSIL FTW4002P Q Explorist Gen 3 Smart Watch, Blue", + "price" : "290", + "sku" : "FOSSIL FTW4002P Q Explorist Gen 3 Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4002P-Q-Explorist-Gen-3-Smart-Watch-Blue-491363009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjYzMXxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDI4Lzg4NzQ3MTk2NDE2MzAuanBnfGExZjAyZjU1YmMwN2I4ZTQ5ZDRkZmJmZGVmNzFkMjExMmFkMWZlODcwNTU1NjY5Y2Q4Yjk3ODliNTVjNDM5ZGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4002P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad6"), + "name" : "FOSSIL FTW4003P Q Explorist Gen 3 Smart Watch, Brown", + "description" : "FOSSIL FTW4003P Q Explorist Gen 3 Smart Watch, Brown", + "price" : "290", + "sku" : "FOSSIL FTW4003P Q Explorist Gen 3 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4003P-Q-Explorist-Gen-3-Smart-Watch-Brown-491363010-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5MXxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaDMwLzg4NzQ3MTg5ODYyNzAuanBnfGNjMjU0OTMyNGU0N2Q3ZDRkMGM4MTY4OThiMjU2ODQyYzRlYzkxOGUzNjdkNjc3NGJjOTEwYTJiYzFkZjg2NGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4003P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad7"), + "name" : "FOSSIL FTW6003 Q Venture Smart Watch, Silver", + "description" : "FOSSIL FTW6003 Q Venture Smart Watch, Silver", + "price" : "319", + "sku" : "FOSSIL FTW6003 Q Venture Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6003-Smart-Watches-491363012-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEwOHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaDI3Lzg4ODMxODA4MzA3NTAuanBnfGIyMWZlNWU2YjVhYTYwZDFjMzU0MjkxZTY0NTljNWM0MWFlMjdkYWEwODU5YzBlOWMxMzI1NGE1ZmFhZTVmMWE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6003" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "120 min" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad8"), + "name" : "FOSSIL FTW6005P Q Venture Gen 3 Smart Watch, Beige", + "description" : "FOSSIL FTW6005P Q Venture Gen 3 Smart Watch, Beige", + "price" : "290", + "sku" : "FOSSIL FTW6005P Q Venture Gen 3 Smart Watch, Beige", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6005-Smart-Watches-491363016-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODEzMHxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDFmLzg4ODMxODIxNDE0NzAuanBnfGY1ODQwZmEwZGM2MmFmYTkxNTQyZDAxMmMwNzZjYzU3MDQxMGI1YzkwNTE4MzQyOWE3MWU4MDhlOTY1Zjg1ODY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6005P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Beige" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad9"), + "name" : "FOSSIL FTW6007P Q Venture Gen 3 Smart Watch, Brown", + "description" : "FOSSIL FTW6007P Q Venture Gen 3 Smart Watch, Brown", + "price" : "290", + "sku" : "FOSSIL FTW6007P Q Venture Gen 3 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW6007P-Q-Venture-Gen-3-Smart-Watch-Brown-491363018-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzQ3NnxpbWFnZS9qcGVnfGltYWdlcy9oZDYvaGU3Lzg4NzQ3MTUzODE3OTAuanBnfDNkZDQ0MjYwY2JiZjNiYWNhZDQyYzEzZjNiYmUyYzgzZTNmM2JhNmFiMDgxNWE5NDI1ZmM1MGI5MGUyMWJlNmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6007P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ada"), + "name" : "FOSSIL FTW6008P Q Venture Gen 3 Smart Watch, Rose Gold", + "description" : "FOSSIL FTW6008P Q Venture Gen 3 Smart Watch, Rose Gold", + "price" : "319", + "sku" : "FOSSIL FTW6008P Q Venture Gen 3 Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW6008P-Q-Venture-Gen-3-Smart-Watch-Rose-Gold-491363019-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODc0NHxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDJhLzg4NzQ3MTc2NzU1NTAuanBnfGEzY2Q5ZDRmN2U3ZWU4NDM5OTYwNDZkMWY0ZDU0OTZiZmFkMzVmNjQzODExMDIzOWQzOTU3ZmE1Nzk4NjhjMjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6008P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hour" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637adb"), + "name" : "Fitbit Ionic FB503GYBK Smart Watch, Charcoal & Smoke Grey", + "description" : "Fitbit Ionic FB503GYBK Smart Watch, Charcoal & Smoke Grey", + "price" : "363", + "sku" : "Fitbit Ionic FB503GYBK Smart Watch, Charcoal & Smoke Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB503GYBK-Smart-Watches-491378201-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODA1NXxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDNiLzg5ODE2Mjc4MzAzMDIuanBnfDU5ODUwY2ZjZjFmOGVlODgwZTNkNjA4NmRhMTMzNWZhNmU1Y2MzMDkxYTM0ZmU0Yzk5OTFiMGIyNThmMTdkNTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Ionic" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB503GYBK" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "304" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Charcoal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Smoke Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5 days" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Small and large bands" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "manufacturer" : "Fitbit", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637adc"), + "name" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "price" : "637", + "sku" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmG-AL-Cs-P-S-S-LP-GPS-491488346-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk2NnxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaDAwLzkwNTA2NjYzMDM1MTguanBnfDg2NzJjOGI3MjNjN2RkYzNjNjRiOTExNGM0OTQ0NDAzNmNhODBiNTUyZTMzZjU3ZGFhNDQ1Yjc5NWZkMTA4NjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637add"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Black Sport Band", + "price" : "1043", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SB-SS-Cs-BK-S-Bnd-Cel-491488331-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk3NHxpbWFnZS9qcGVnfGltYWdlcy9oMjkvaDczLzkwNTA2NDk4NTM5ODIuanBnfDQ3YmRhYjczMzQ0NmFiZDE3Y2NkOTZkNTdmYzQ2NzFlMmI3NTI1ZWIyOWExMzg1YjdmZjdkNTg0ZjJhNjEwMjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ade"), + "name" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with White Sport Band", + "price" : "593", + "sku" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with White Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmSL-AL-Cs-WH-S-Bd-GPS-491488335-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODYzNnxpbWFnZS9qcGVnfGltYWdlcy9oNTgvaDRlLzkwNTA2NTY0NzMxMTguanBnfDBkM2U4OWZjZDY1N2M3ZDk1YmNkNzY2ZDU1YmY2NWZlYWJjYWQ4MzllNTFhM2M4ZWFjZGY1YzA4NjljYzU3NmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637adf"), + "name" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "price" : "637", + "sku" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmSG-AL-Cs-BK-S-LP-GPS-491488344-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTMzMXxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaGI4LzkwNTA2Njc5NDE5MTguanBnfDFkMzJmZDQ2YWFmM2NhMzM2MTU1NDVmYWRkNGFkMWZlMTFhNDRhMGE1ZDdjNTViNzQzNTJlNjNlNTk4YjZlZDI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae0"), + "name" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "593", + "sku" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488337-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ3NXxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDY3LzkwNDY2NDQ3ODUxODIuanBnfGE5YjAyNTVjMTYzYWE4ZTA4YzZiNmE1ZTk2ZDYzYTE3YmUwZTcyNDMzYzMzNGViZTQ4MjViYWQ3MzcyMWZkMjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae1"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Stone Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Stone Sport Band", + "price" : "1043", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Stone Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-SS-Cs-S-S-Bnd-Cel-491488333-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjUyMXxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDczLzkwNTA2NTE4MjAwNjIuanBnfDFkN2U2NDY1YzMzMTFlM2I5ZGY5ZGQwZWU2OGQwOWQ3ZmJkMmUzNjgzZjZiNjE0ZmFhZGIwNTg5ZjA2MzJiNGU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Stone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae2"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Sport Loop", + "price" : "724", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SG-AL-Cs-BK-S-LP-Cel-491488314-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzU4M3xpbWFnZS9qcGVnfGltYWdlcy9oODIvaGYyLzkwNTA2MjE5MzU2NDYuanBnfDAzMzEwODRlZjNiNDYxYzM1YzNmNTJhNzdmMDUyOTE3NTYzZDllMGJiYzRhM2U3NTAxZmFhNWY4YjRiMWQwNmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae3"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with Milanese Loop", + "price" : "1115", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with Milanese Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SS-Cs-MLN-LP-Cel-491488318-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjIyM3xpbWFnZS9qcGVnfGltYWdlcy9oYjQvaGUzLzkwNTA2Mjg4MTY5MjYuanBnfDkyZmE5ZGQ3ODI3NzgyMWI4ODBjZTUxZWI3NmJkMjMwMDY0ZDhlMTRkODMxYzc4YjE1NjE1OWJhNjI0M2I4MjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Milanese" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae4"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Black Sport Band", + "price" : "985", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SB-SS-Cs-BK-S-Bnd-Cel-491488319-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk3NHxpbWFnZS9qcGVnfGltYWdlcy9oZWQvaDRlLzkwNTA2MjY1MjMxNjYuanBnfGJkNmQyMDllNTQ5MTczYzEwOWFkZjcyMWE5OWQxMWFhODY0MWM3MjY5MDA2MjAwNDI0YmIzYTE5MzJjYmViNzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae5"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with White Sport Band", + "price" : "1043", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with White Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SS-Cs-WH-S-Bnd-Cel-491488329-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4MHxpbWFnZS9qcGVnfGltYWdlcy9oMTEvaDhiLzkwNTA2NDQ5Mzg3ODIuanBnfDE2NTcwYmNmZjBkZTM5ZjBjMTg3OGVjODBmNTYxM2VmNTNjZDJiMGY1NzUyYzJhNWU2ZWU5OTc0N2U1NTE1OGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae6"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Gold Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Gold Milanese Loop", + "price" : "1115", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Gold Milanese Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-SS-Cs-G-MLN-LP-Cel-491488322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE3MHxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaDE2LzkwNTA2MzY0MTkxMDIuanBnfDc3OTRmMmQ5MDMwNWViOWIyNTkxYTQ4OGE1ZWE2MmY2YzUyNWJlZWYzYTBiODQzNGE1ZDlkNzU1OGJkNjc4MmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae7"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Stone Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Stone Sport Band", + "price" : "985", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Stone Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-SS-Cs-S-S-Bnd-Cel-491488321-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjUyMXxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaDA4LzkwNTA2MzUwNDI4NDYuanBnfDc1YTIwYzQ0MzQzMmVmMGMxNjU5OWJlN2EyNTU5YzYzZjFiYmJmZTNkMGY1NGViOGIyNzg1ZTNlZDE1MDI1MjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Stone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae8"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "price" : "1115", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SB-SS-CsSB-MLN-LP-Cel-491488320-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzc3MXxpbWFnZS9qcGVnfGltYWdlcy9oNTIvaGZmLzkwNTA2MzE3NjYwNDYuanBnfDBiYTNlYjg3MzI0NzUzZmYwZjA3ZjY0NzgyOTk4ZWQyYjk3N2IzMTgwYjdiMTNjOGY3ZDQxM2Y1NzE0ZTNhY2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Space Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae9"), + "name" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "593", + "sku" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with Seashell Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmSL-AL-Cs-SS-S-LP-GPS-491488336-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTkwM3xpbWFnZS9qcGVnfGltYWdlcy9oOGMvaGU5LzkwNTA2NTE0OTIzODIuanBnfDhmZjYwNTliY2I4ODI4MjVmODhlYjVkN2MzYzI2Y2IzZmI0OTRmMGUzYjc1ZDYzZjVkOWEyYjMwNWE2MjM0NTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aea"), + "name" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "637", + "sku" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488343-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ3NXxpbWFnZS9qcGVnfGltYWdlcy9oMjkvaDcwLzkwNDY2NDUxMTI4NjIuanBnfGM2MzdhOGFjMmJkYTIxY2U2ZjllM2M5OTQ1Mjg2NWM0NjYyNDkzNmM1OTg1MTNlOWI3MDAwOWM2NTBhZWZkNzU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aeb"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "724", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-SW-S-LP-Cel-491488348-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDcyOXxpbWFnZS9qcGVnfGltYWdlcy9oYjAvaGQ4LzkwNTE1MTAzNzQ0MzAuanBnfDEyNmQwZWMzNmZiMDA4MGRlNjkxZDIwZjAxYWJkODg0ZWI2MWVjZDU4NjcyMWIzZTY3NzU1N2YwZjdiMzc2Yjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aec"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with Milanese Loop", + "price" : "1173", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with Milanese Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SS-Cs-MLN-LP-Cel-491488330-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTE4MnxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaGQzLzkwNTA2NDgyMTU1ODIuanBnfGJkYmMzYmJiNWVjNWIzMjFlYzJkZGU1NzIyMGY3M2YxOTljYmQ0MDFlODQ5NGExYmYwMTI0OGE0ZmRhNWNlODc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Milanese" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aed"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "price" : "767", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-AL-Cs-PS-S-Bnd-Cel-491488327-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjM0MnxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaGM3LzkwNTA2NDMzMDAzODIuanBnfGViMDE0Y2MxMzIyNGU3YTk1ODFjOTBlZjNkZGVlYmJhY2IzNjlhNjI3OTUwNDkxMjE4M2ZmY2Y1ZTBmYjM0ZDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aee"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "724", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminum Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488313-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzA5NnxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDA0LzkwNDY2NDU3NjgyMjIuanBnfGFmYTE4NWY4NTJlMDIxMzQwM2ZmYzJkYWU5ZmQyYzRhNzVjNGExNjMwMzliMWVkM2Q1OGFjNjhjOWUwMTk3MzM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aef"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "767", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488325-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDc1N3xpbWFnZS9qcGVnfGltYWdlcy9oYmUvaGJmLzkwNDY2NDU0NDA1NDIuanBnfDczYTA2YzM0YzU4NmY5MDQyNzAwYmU0MmJlNzBlMWEyMWQ2ZGRhMzQyN2U0ZWVkZGJmNzJhNzM4ZDliMmYyYWY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af0"), + "name" : "Michael Kors Grayson MKT5025 Smart Watch, Silver", + "description" : "Michael Kors Grayson MKT5025 Smart Watch, Silver", + "price" : "377", + "sku" : "Michael Kors Grayson MKT5025 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5025-Smart-Watches-491363047-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Nzc5NHxpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDBmLzg4OTQ3NDU1NDI2ODYuanBnfGNiZjZhNGUzOTQ3MTZlNTkyZTNlOTJiODQ4ZDc4NWEyNWMyMDYyYzJkYTVjM2NhMDcyZGE4NDMyMzU2N2RhYTU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5025" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "47 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af1"), + "name" : "Apple Watch Nike + Series 3 GPS + Cellular - 42 mm Space Gray Aluminum Case with Black/Pure Platinum Nike Sport Loop", + "description" : "Apple Watch Nike + Series 3 GPS + Cellular - 42 mm Space Gray Aluminum Case with Black/Pure Platinum Nike Sport Loop", + "price" : "598", + "sku" : "Apple Watch Nike + Series 3 GPS + Cellular - 42 mm Space Gray Aluminum Case with Black/Pure Platinum Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MQMH2HN-A-Smart-Watches-491378430-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTM2NXxpbWFnZS9qcGVnfGltYWdlcy9oOGUvaDM5Lzg5Nzg1NTkyNzA5NDIuanBnfDM4N2JhY2M1Y2IyYzViNDlmOGNkYmRlNzkzMjFhN2FmZjA5N2NkMjQ2NjczZDU1NTdmMjJiYTA1NzI5NDIxMDY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike +" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "WatchOS 4" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46.4" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wi-Fi (802.11b/g/n 2.4GHz)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nike Sport Band (can be configured for either S/M or M/L length)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af2"), + "name" : "Apple Watch Nike+ - 42mm Silver Aluminum Case with Flat Silver/White Nike Sport Band", + "description" : "Apple Watch Nike+ - 42mm Silver Aluminum Case with Flat Silver/White Nike Sport Band", + "price" : "506", + "sku" : "Apple Watch Nike+ - 42mm Silver Aluminum Case with Flat Silver/White Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-42mm-Silver-Aluminum-Case-with-Flat-Silver-White-Nike-Sport-Band-491277325-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzk0NHxpbWFnZS9qcGVnfGltYWdlcy9oZmYvaDcxLzg5Mjk0MTE0NjUyNDYuanBnfGI4MzY1NjZjNTUzNmFlMmYyNGU2NGZiMmMyZjIyMTczN2ViMDc4NmJmNGNiZDg0ZjMwYzAxODVkNjI1NjkzYjQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "36.4 x 11.4 x 42.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Flat Silver/White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Silver aluminum case
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Silver Aluminum Case
  • Nike Sport Band (can be configured for either S/M or M/L length
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af3"), + "name" : "Apple Watch Nike+ Series 2, 38mm Silver Aluminum Case with Flat Silver/Volt Nike Sport Band", + "description" : "Apple Watch Nike+ Series 2, 38mm Silver Aluminum Case with Flat Silver/Volt Nike Sport Band", + "price" : "477", + "sku" : "Apple Watch Nike+ Series 2, 38mm Silver Aluminum Case with Flat Silver/Volt Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-Series-2-38mm-Silver-Aluminum-Case-with-Flat-Silver-Volt-Nike-Sport-Band-491277326-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzMzOXxpbWFnZS9qcGVnfGltYWdlcy9oNDkvaDFhLzg5Mjk0MTQ5Mzg2NTQuanBnfDk2NmZmNjkzODNiOGFjMjNmMTc1ZTI1OTA1ZjZhNzgzZWI2NDdjOWFjYWEwYjVmNzk1N2E4OGM3MWYyNTJjZDg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 2" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "3.86" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.33" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "28.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "33.3 x 11.4 x 38.6 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Flat Silver/Volt" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • S2 dual-core processor
  • Built-in GPS and GLONASS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Silver Aluminum Case
  • Nike Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af4"), + "name" : "GARMIN Forerunner 230 GPS Running Watch, Black/White", + "description" : "GARMIN Forerunner 230 GPS Running Watch, Black/White", + "price" : "363", + "sku" : "GARMIN Forerunner 230 GPS Running Watch, Black/White", + "imageUrl" : "https://www.reliancedigital.in/medias/GARMIN-Forerunner-230-GPS-Running-Watch-Black-White-491229602-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzE0MXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaGMwLzg5MzMwNzE4NDc0NTQuanBnfDcyN2FiNzQ0ZTI0ZjliMmU0M2VhM2Q5NWFhNTg3Y2U2MjMxYzg1NDE2ODVlMjljNmE1MTIwNDJkNmUyZDYzNTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Forerunner" + }, + { + "attributeName" : "Model", + "attributeValue" : "230" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone TPU" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "41" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 x 45 x 11.7 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/White" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Smart Mode: Up to 5 weeks" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart rate monitor
  • Foot pod
  • Advanced workouts (create custom" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging/data clip
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "GARMIN" + } + ], + "manufacturer" : "GARMIN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af5"), + "name" : "Skagen SKT1104 Hybrid Smart Watch", + "description" : "Skagen SKT1104 Hybrid Smart Watch", + "price" : "225", + "sku" : "Skagen SKT1104 Hybrid Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1104-Smart-Watches-491362897-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTE1NHxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDAzLzg4ODk3NzM1NTU3NDIuanBnfDk1ODY0YjcxMzZlYTcyZjM5MzcyMDY2NDE0NTM5ZmQxMGYzMTk2OGMxYzIzZTIxZTJhM2MwYzNiY2UwMDIwMDY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1104" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af6"), + "name" : "Skagen SKT1103 Hybrid Smart Watch, Brown", + "description" : "Skagen SKT1103 Hybrid Smart Watch, Brown", + "price" : "218", + "sku" : "Skagen SKT1103 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1103-Smart-Watches-491362896-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDAxN3xpbWFnZS9qcGVnfGltYWdlcy9oMjYvaGI3Lzg4ODk3Nzk1MTk1MTguanBnfDYzNmY0OTJlY2E1YjJkZTk2MzE0ZjljMzNjZmMwMTU2YjliMDdlMjIzYjUyMmU1YjVjNjMxZWExNDczM2NhNTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1103" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af7"), + "name" : "Michael Kors Grayson MKT4010 Hybrid Smart Watch, Black", + "description" : "Michael Kors Grayson MKT4010 Hybrid Smart Watch, Black", + "price" : "290", + "sku" : "Michael Kors Grayson MKT4010 Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4010-Smart-Watches-491363042-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTc1OXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDVhLzg4OTQ3MzYxNzEwMzguanBnfDcyY2VkNjYxYjEyZDRkMDdkMGUxZGE1ZGRjZjBmYTFkZGYwYzY1YjQ3MTcxMTQ3OWQ2N2M2MmViMjM1NDljMzA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4010" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "47 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af8"), + "name" : "Garmin Vivofit 3 Activity Tracker, Black", + "description" : "Garmin Vivofit 3 Activity Tracker, Black", + "price" : "102", + "sku" : "Garmin Vivofit 3 Activity Tracker, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Garmin-Vivofit-3-Fitness-Bands-Trackers-491315720-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTAxOHxpbWFnZS9qcGVnfGltYWdlcy9oMjkvaGZmLzg4ODk3NDY3NTE1MTguanBnfDhjNDNhOGNlOTkzODNkY2I4YmIwMDZjOWZmZWIxMTg5MGY0NjUyOWI3N2U5YjQyOWY2MTgxNzgzNDM5OWUyNjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Vivofit 3" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1 Year" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "GARMIN" + } + ], + "manufacturer" : "Garmin", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af9"), + "name" : "Diesel On DZT1002 Hybrid Watch, Brown", + "description" : "Diesel On DZT1002 Hybrid Watch, Brown", + "price" : "244", + "sku" : "Diesel On DZT1002 Hybrid Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Diesel-DZT1002-Smart-Watches-491362976-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjE5MXxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaDQ3Lzg4OTQ2OTM3NjkyNDYuanBnfDE2YWNjZWIyNDYzOWUyODRkNGNlODdkZjQ3NDRjMGU0N2Q4MjkwNGY2ZTk5ZGVlNzRkM2QwMTk4NDY4MjRkYzA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "DZT1002" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "manufacturer" : "Diesel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afa"), + "name" : "Michael Kors Slim Runway MKT4005 Hybrid Smart Watch, Gold", + "description" : "Michael Kors Slim Runway MKT4005 Hybrid Smart Watch, Gold", + "price" : "319", + "sku" : "Michael Kors Slim Runway MKT4005 Hybrid Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4005-Smart-Watches-491362993-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjYxM3xpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGY1Lzg4OTQ3Mzg5ODkwODYuanBnfGI2ODUyNzYyNTk0ZWZlZGRmNjdmNTI5MDc3NzFhZmM2Y2M2Mjc4ZWM3NzIwMjNkNjI4M2UzYTcxYzY1ZDdiYzA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4005" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afb"), + "name" : "Michael Kors Bradshaw MKT5012 Smart Watch, Silver", + "description" : "Michael Kors Bradshaw MKT5012 Smart Watch, Silver", + "price" : "377", + "sku" : "Michael Kors Bradshaw MKT5012 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5012-Smart-Watches-491362906-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDg1OHxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDQ1Lzg4OTQ3NjA4NzgxMTAuanBnfDQzNDcwZjY1Nzc4ZmUwMGVjNGU3MjFmOWQ2YTAyZTEyZGQ2M2E5Y2M3NDUwZDU5YWQ5YzY2MWUxYTYwNGJjYjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afc"), + "name" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Gray", + "description" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Gray", + "price" : "218", + "sku" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/c11286fe-210c-4a06-b049-d9d6bccbcc9f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTcxMXxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDAwLzg4MDY4NTI2MjQ0MTQuanBnfDQ3YmQ2OThmODMzZmFmYTE4ZTM3NTA3MTNmN2M1ZTYzN2U4NmY0OTFkOTY0ZTg1NTJjNjhjYmExNDNmZDg1ZTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gear" + }, + { + "attributeName" : "Model", + "attributeValue" : "SM-R3600" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Galaxy devices: Android 4.3 and above that have minimum 1.5GB " + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.5 inch Curved Super AMOLED Display
  • Bluetooth v4.2
  • Tizen Operating System
  • Accelerometer" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afd"), + "name" : "Apple Watch Series 2 - 42mm Rose Gold Aluminium Case with Space Orange/Anthracite Woven Nylon", + "description" : "Apple Watch Series 2 - 42mm Rose Gold Aluminium Case with Space Orange/Anthracite Woven Nylon", + "price" : "506", + "sku" : "Apple Watch Series 2 - 42mm Rose Gold Aluminium Case with Space Orange/Anthracite Woven Nylon", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Series-2-42mm-Rose-Gold-Aluminium-Case-with-Space-Orange-Anthracite-Woven-Nylon-491315311-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDQwM3xpbWFnZS9qcGVnfGltYWdlcy9oZDkvaGZiLzg5Mjk0MDg1MTYxMjYuanBnfDZmNGUzMTJjMzZhNzc0YTdmY2M2ZDNjNzNkYzRlYjdlNzc5YTI0YTFjNDI0ZGJmN2ZhMGIzNDU3MTk4NThhMTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 2" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Woven Nylon" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "36.4 x 11.4 x 42.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Space Orange/Anthracite" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Rose Gold Aluminum Case
  • Woven Nylon Strap
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afe"), + "name" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Blue", + "description" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Blue", + "price" : "218", + "sku" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Gear-Fit-2-SM-R3600-Fitness-Band-Blue-491295685-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODYxM3xpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDM5Lzg5MzA4NzQyOTQzMDIuanBnfGIzODcxNDYxODlkMTkxOTU1MWE0MzA4NjU4MjQwY2ViODU4ODQyOTZjYTExMmQxY2QyZmFjNWZiNGJjODA4MTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gear" + }, + { + "attributeName" : "Model", + "attributeValue" : "SM-R3600" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Galaxy devices: Android 4.3 and above that have minimum 1.5GB " + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.5 inch Curved Super AMOLED Display
  • Bluetooth v4.2
  • Tizen Operating System
  • Accelerometer" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aff"), + "name" : "Samsung Gear S3 Frontier SM-R760N Smart Watch, Dark Gray", + "description" : "Samsung Gear S3 Frontier SM-R760N Smart Watch, Dark Gray", + "price" : "414", + "sku" : "Samsung Gear S3 Frontier SM-R760N Smart Watch, Dark Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Gear-S3-Frontier-SM-R760N-Smart-Watch-Dark-Gray-491315697-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDc1NHxpbWFnZS9wbmd8aW1hZ2VzL2hmZC9oODEvODkzMzA2ODg5ODMzNC5wbmd8NzEzZjQ1ODk0ZjM0Mzc5Njg2N2JmMzFhNzQ2MDMzMTVlMjMwMDg5MGVkMTExZTA5NDZmYTRmYTExYTVlOGRjOQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gear" + }, + { + "attributeName" : "Model", + "attributeValue" : "SM-R760N" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dust and Water-resistant (IP68)
  • Bluetooth
  • Samsung Pay
  • GPS
  • 4 GB Internal Memory / RAM 768 MB
  • 1GHz" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Band Strap
  • Wireless Charging Dock / Display
  • Stand
  • Quick Start Guide
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b00"), + "name" : "Michael Kors Sofie MKT5020 Smart Watch, Silver", + "description" : "Michael Kors Sofie MKT5020 Smart Watch, Silver", + "price" : "377", + "sku" : "Michael Kors Sofie MKT5020 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5020-Smart-Watches-491363044-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTMxMnxpbWFnZS9qcGVnfGltYWdlcy9oZjAvaGMwLzg4ODMxNzY1NzA5MTAuanBnfDViOWVlZjdmZjZmYjAyMGViYjljY2IxZjQ2NDhjMGUyZDAzZWNlYzI1OWFjZmY5ZjIxMWM4M2ZmMWVjZjk2YWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5020" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear 2.0" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b01"), + "name" : "Michael Kors MKT5004 Smart Watch, Rose Gold", + "description" : "Michael Kors MKT5004 Smart Watch, Rose Gold", + "price" : "377", + "sku" : "Michael Kors MKT5004 Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5004-Smart-Watches-491363107-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODQ1NnxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaGJkLzg4ODMxNzM5NDk0NzAuanBnfDY1OGIyMjI4ZjUwNjdhOWQxNzIyMWUzNjdkNTYzNTNhNTU0ODY5N2U0Y2ZjNWM4MWFhZGVmNDlmOGIzMzkyZmY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5004" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.5" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b02"), + "name" : "Michael Kors Access MKT5041 Smart Watch, Sofie Pavé Rose Gold-Tone and Acetate", + "description" : "Michael Kors Access MKT5041 Smart Watch, Sofie Pavé Rose Gold-Tone and Acetate", + "price" : "406", + "sku" : "Michael Kors Access MKT5041 Smart Watch, Sofie Pavé Rose Gold-Tone and Acetate", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5041-Smart-Watches-491378197-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDY5N3xpbWFnZS9qcGVnfGltYWdlcy9oMGUvaDJiLzg5Nzg1OTkyNDc5MDIuanBnfGIzNmE5ZGQ0OTFmYmJmZmM2NzVjMTZkYzliYjkzNWY4NjFlODkwNmMxNDQ2MTFmMjBmMDVjZTkxYTZlMjJiOWE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT5041" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b03"), + "name" : "Apple Series 3 GPS + Cellular - 42 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Series 3 GPS + Cellular - 42 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "597", + "sku" : "Apple Series 3 GPS + Cellular - 42 mm Silver Aluminum Case with Seashell Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MQKQ2HN-A-Smart-Watches-491379736-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE1OXxpbWFnZS9qcGVnfGltYWdlcy9oMDYvaDc5Lzg5OTgzOTg1NTgyMzguanBnfDQ0YjE1ODAwYmMwYTM1Njg3OWNkMDNiOTY3NDU1ZTVmNjIxMTViZWIzYWQwNGI5YWViZTJhYWZiNWZjNTNhNGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 4" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "HR Sensor" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.9" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core Processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours of battery life" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Silver Aluminum Case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b04"), + "name" : "Fitbit Versa Lite FB415BUBU Smart Watch", + "description" : "Fitbit Versa Lite FB415BUBU Smart Watch", + "price" : "232", + "sku" : "Fitbit Versa Lite FB415BUBU Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415BUBU-Smart-Watches-491550909-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTQ4MnxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDk5LzkxMjI3MjE4MjQ3OTguanBnfDg1NmRlMjIyOWQ5MGFkN2VkYmRmOTg2NGI3MTU1ZTk0Yzg3YzAwYzE2NDEzNTJlNDMzNjY0MjUwZGY2ZDE2MmQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415BUBU" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Marina Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Marina Blue" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b05"), + "name" : "Michael Kors Grayson MKT5029 Smart Watch, Black", + "description" : "Michael Kors Grayson MKT5029 Smart Watch, Black", + "price" : "377", + "sku" : "Michael Kors Grayson MKT5029 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5029-Smart-Watches-491363049-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTk2NXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaGJiLzg4OTQ3MzM4NzcyNzguanBnfDZkNGRhMDc2MDAzMDgxM2NjNDVjNDliOGVmOTFiOTI5ZGZkMjcwMzFkNmUzY2YwY2M2MGYwOTdhYTBkNmQ3ZWE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5029" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "47 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b06"), + "name" : "Michael Kors Sofie MKT5021 Smart Watch, Gold", + "description" : "Michael Kors Sofie MKT5021 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael Kors Sofie MKT5021 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5021-Smart-Watches-491363045-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTEzNXxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaGM3Lzg4OTQ3NTg5MTIwMzAuanBnfDU3MzE0ZjhjYjNlNWJkNjUxZjE5NTgyM2E3OTVkOTYwZWNlZTJkODAyOTY5YTg5YTcxODNkMDU1YmIyYTIxYjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5021" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b07"), + "name" : "MISFIT Vapor MIS7000 Smart Watch, Jet", + "description" : "MISFIT Vapor MIS7000 Smart Watch, Jet", + "price" : "211", + "sku" : "MISFIT Vapor MIS7000 Smart Watch, Jet", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS7000-Smart-Watches-491378006-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTYxMXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDk0Lzg5Nzg2MjkwNjY3ODIuanBnfDIzMjVmNzNiZmIwZjRjYzA1YjFmNjFiMTczZjBkOTE0Y2QwOWU5ZTk3NDk5ZTNlZWE3OWNhOTkxYTM5YjJhNzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Vapor" + }, + { + "attributeName" : "Model", + "attributeValue" : "MIS7000" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Brushed Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS (By Google)" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Phones and iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black Sport Strap" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100 processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.3 full round AMOLED 326 pixels per inch display
  • \n
  • Altimeter" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "manufacturer" : "MISFIT", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b08"), + "name" : "MISFIT Vapor MIS7001 Smart Watch, Rose Tone", + "description" : "MISFIT Vapor MIS7001 Smart Watch, Rose Tone", + "price" : "211", + "sku" : "MISFIT Vapor MIS7001 Smart Watch, Rose Tone", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS7001-Smart-Watches-491378007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTEwMHxpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDAxLzg5Nzg2MjMzNjUxNTAuanBnfDFjMjAzMDhhYzc3MzU4MjhhOWU5MjJhYmZiYzA1NmVlODYxNjFkZjVhODM2MWEzZGIxNjRjNDg4ODc0ZTQ2M2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Vapor" + }, + { + "attributeName" : "Model", + "attributeValue" : "MIS7001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Brushed Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS (By Google)" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Phones and iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Midnight Blue Sport Strap" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Tone" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100 processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.3 full round AMOLED 326 pixels per inch display
  • \n
  • Altimeter" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "manufacturer" : "MISFIT", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b09"), + "name" : "Apple Series 3 Nike+ Smart Watch, Black", + "description" : "Apple Series 3 Nike+ Smart Watch, Black", + "price" : "500", + "sku" : "Apple Series 3 Nike+ Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MQL42HN-A-Sports-Fitness-Watches-491363076-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTQyOXxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaGYxLzg5MTI0ODE1NTAzNjYuanBnfDc0MDAyZGVjNWJhMDE4MzA0ZDc2ZGViMWNlM2M4OTg5MzRlMTBlZGZlY2NiODRlYThkNzYxYjM5YTBkYWM5ZTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5s or later" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey Aluminium & Anthracite/Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0a"), + "name" : "Fitbit Versa Smart Watch, Black/Black Aluminium", + "description" : "Fitbit Versa Smart Watch, Black/Black Aluminium", + "price" : "312", + "sku" : "Fitbit Versa Smart Watch, Black/Black Aluminium", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB505GMBK-CJK-Smart-Watches-491392187-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTIyNnxpbWFnZS9qcGVnfGltYWdlcy9oNmMvaDMwLzg5OTg0MDI4MTgwNzguanBnfGIzZGMwYTJkNjhmYTUzM2ExNTY5OWQ2MWE5ZWNjMDZkMzRiYTQ4OTU4OTQ2ODYwOGM3NjA2OTVmZDQyMGFkODc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Versa" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 Days" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Woven wristbands" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0b"), + "name" : "FOSSIL FTW2112P Q Wander Gen 2 Smart Watch, Rose Gold", + "description" : "FOSSIL FTW2112P Q Wander Gen 2 Smart Watch, Rose Gold", + "price" : "290", + "sku" : "FOSSIL FTW2112P Q Wander Gen 2 Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2112-Smart-Watches-491362955-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjA2MXxpbWFnZS9qcGVnfGltYWdlcy9oMzEvaDJhLzg4ODMxNzAzNDQ5OTAuanBnfDA4NjNjMzcwZGY4Yzc0ZmVlOGYzZWYwNjYxY2ExMDBjMWZkZTI2YWY5MjAyYTcyMDEwMjkxZGI2YTBiZTYzZjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2112P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "360" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0c"), + "name" : "FOSSIL FTW4000P Q Explorist Gen 3 Smart Watch, Silver", + "description" : "FOSSIL FTW4000P Q Explorist Gen 3 Smart Watch, Silver", + "price" : "319", + "sku" : "FOSSIL FTW4000P Q Explorist Gen 3 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4000P-Q-Explorist-Gen-3-Smart-Watch-Silver-491363007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM3NHxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDI3Lzg4NzQ3MTkzMTM5NTAuanBnfDkxYzU2YWExNzE1MmU2MGY4MTgzZWY0NDE3MTZjYmVmZjkyNmUwN2ZjMGNjNzhkZjUyNmMzODBlMjcyNTIzN2M", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4000P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0d"), + "name" : "FOSSIL FTW6000P Q Venture Gen 3 Smart Watch, Rose Gold", + "description" : "FOSSIL FTW6000P Q Venture Gen 3 Smart Watch, Rose Gold", + "price" : "319", + "sku" : "FOSSIL FTW6000P Q Venture Gen 3 Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6000-Smart-Watches-491363011-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjEyN3xpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGMyLzg4ODMxNzk1MjAwMzAuanBnfDc1MDIzNmJiYTY5YmYzZmUzMjRhMWVjYzczYzhkODI4NGY0NDY4NmNhOWNkYjFhM2QwOTM0Yjg1MzNlYWE2NTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6000P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyro Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0e"), + "name" : "FOSSIL FTW4004P Q Explorist Gen 3 Smart Watch, Brown", + "description" : "FOSSIL FTW4004P Q Explorist Gen 3 Smart Watch, Brown", + "price" : "290", + "sku" : "FOSSIL FTW4004P Q Explorist Gen 3 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4004P-Q-Explorist-Gen-3-Smart-Watch-Brown-491363013-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5MnxpbWFnZS9qcGVnfGltYWdlcy9oYjUvaDdmLzg4NzQ3MTU3MDk0NzAuanBnfGRiNDg0ZjRiYmRhYjRiMTBhZDUxOTkzNmM5MGRmZGUyN2MxZDYzOGI5MTYzNTExNWRjMjRhM2ZhNTgwNDgxMzE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4004P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0f"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "593", + "sku" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-BK-S-LP-GPS-491488360-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjg4NXxpbWFnZS9qcGVnfGltYWdlcy9oM2QvaDhlLzkwNTE1Mjc2MTAzOTguanBnfDQyZWIxYjQwZTJjMGJiZmUwNzRhMDI5YjliNGNlZTRiMzViZTZhNDRjYjBlMTU3NTg5ZDlhZjA4MzNjMjUzZTI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b10"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "767", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-PPB-Bnd-Cel-491488352-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzM2N3xpbWFnZS9qcGVnfGltYWdlcy9oZmYvaDFkLzkwNTE1MTY2MDAzNTAuanBnfDRiNjY0OThhNDUxMWM1MjAwOGU2ZDg1MDE5YmFlY2RhYjczM2I0MjNhZjMyYjI4YzNhOTI1Y2Q5MWVkNGFkZjI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b11"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Gold Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Gold Milanese Loop", + "price" : "1173", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Gold Milanese Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-SS-Cs-G-MLN-LP-Cel-491488334-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE3MHxpbWFnZS9qcGVnfGltYWdlcy9oNDEvaDdlLzkwNTA2NTQ3NjkxODIuanBnfDhmNWQ5OWQxYmM5NjAyMjkzODcyYmQxZTM0NDMwNzg3MjU0Yzc0ODU3YjYwYjE3MjhiZmY3MGM1OTNjZTNlOGU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold Milanese" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b12"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "593", + "sku" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-AB-Bnd-GPS-491488356-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaGYxLzkwNTE1MjM2MTI3MDIuanBnfGJjZWM5ZDg5Y2YwYzlhNjg5YzZjOGIzYjU5NzFhZTcwNDRkOWMyYTRkY2JlZjM1YjQzNTU1NzBlOWMwMTYzOGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b13"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "637", + "sku" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-AB-Bnd-GPS-491488358-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDI3LzkwNTE1Mjg1OTM0MzguanBnfGE5YTdlMTBmYjBjM2VhYjljZjczYTQ4YzhjYWNmOTdiZjZiYTgwOWQ0M2ZiYWZlMjYzNjg1ZTViZDM5ZThjYjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b14"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "price" : "1173", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SB-SS-CsSB-MLN-LP-Cel-491488332-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzc3MXxpbWFnZS9qcGVnfGltYWdlcy9oMzEvaDFkLzkwNTA2NDU5MjE4MjIuanBnfDE3ODA3NjM0OGY3OGRhMWMwZjc4NGIwZGVmNTdmMzkyZjFjOWQ2YzExZDVjMmY4ODViM2MzZjgyYzk4YzM2NmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Space Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b15"), + "name" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Band", + "price" : "593", + "sku" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmG-AL-Cs-P-S-S-Bd-GPS-491488339-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxN3xpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGFmLzkwNTA2NjEzODgzMTguanBnfGMxMmEzZWYzYjRmM2FjYzc0MDQxN2JkNzZhZDFlN2NkYjE3OWU0MGYxM2E1MjQ5ZDhjNGRjNDQzMzZiNDk4MDA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b16"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "724", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-BK-S-LP-Cel-491488350-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzA3OHxpbWFnZS9qcGVnfGltYWdlcy9oMTQvaGUyLzkwNTE1MTkyODczMjYuanBnfDA4NWZiNzI0ZWY0ZTA0NmZlYTA0Njk3ZmIzZWYyYmE1ZTY0MThjNDYwODIwMjZhMWNhZDQ2MjMxYjUzNzJlYWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b17"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "767", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-AB-Bnd-Cel-491488354-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oYTkvaGIzLzkwNTE1MjQ5MjM0MjIuanBnfDVkZTQwMzUxYjQxNTRkODliYWY5NDk4N2U1ZGMxOGVkNmUyOTkwZmUyOWMyOTdlZjRhNTNhY2VlMGJkYjkyZmQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b18"), + "name" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Loop", + "price" : "593", + "sku" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmSG-AL-Cs-BK-S-LP-GPS-491488338-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTMzMXxpbWFnZS9qcGVnfGltYWdlcy9oNTUvaDAzLzkwNTA2NTgxMTE1MTguanBnfGQxMDEwYzMzYzQxNzRkYTliMmI3MzMwMjI0OGJkNWQ4NTNmMWQ4ZjhlZmQ0NzczMTkzNjZmZjQ0NzkyNjY1N2M", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b19"), + "name" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with White Sport Band", + "price" : "637", + "sku" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with White Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmSL-AL-Cs-WH-S-Bd-GPS-491488341-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODYzNnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDM4LzkwNTA2NTk3NDk5MTguanBnfDRhN2YzMmNmYTJkZGVmYjc4MDc3Y2MwMGEwYjYxNDEzYjM0MzVlMmI3NzQwOWE4OTc0YmRjODY0YTQyNmQxNWY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1a"), + "name" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Loop", + "price" : "593", + "sku" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmG-AL-Cs-P-S-S-LP-GPS-491488340-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk2NnxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDU0LzkwNTA2NjI2OTkwMzguanBnfDc5NmEwNWMxOGYxYzQ5YWUwNjk2YzI1NDlhY2IwMzJkYTg1MjBjMWY0Nzk4Zjg1NWI1M2YzNjAxYjhmNWE4MDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1b"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "767", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-BK-S-LP-Cel-491488353-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzA3OHxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDVkLzkwNTE1MTQyNDEwNTQuanBnfDIxZjdlOGZlOWZlM2NmZjlkOWViMWUwMzBhNWRkMDVjYzI1NDhmMjQwYmRlN2FhOTMwMGY3NjA3YTQ2MTkwOWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1c"), + "name" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "637", + "sku" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmSL-AL-Cs-SS-S-LP-GPS-491488342-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTkwM3xpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDUyLzkwNTA2NjQ2NjUxMTguanBnfDJhOTQzOGIyYzAxN2I1Mjk3MTc0ZWQ0NDA1M2I0YTU5NzRkMTYzZWU5ZjczOGNkYjdhY2VhOTE0N2Y5MTlhYjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1d"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "767", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-SW-S-LP-Cel-491488351-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDcyOXxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaDQyLzkwNTE1MTU2MTczMTAuanBnfDA5ZDVhYjU3MDU3MTBmYTI2ZjExNzIyZThjNGY3M2UyN2EyZWMyZjE5MTEyMmZlM2Y1NjQ4ZWMyZjAyMGUxZDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1e"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "637", + "sku" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-SW-S-LP-GPS-491488361-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDU3NXxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaGEzLzkwNTE1MjIyMzY0NDYuanBnfDJlNGE0ZGViZmRjNjM5MTc0YmMxOTMwODA2N2RkYzI0N2VjNjdkZmU5M2FiYjMxN2I1MTc1ZmMzZDZkMmQzY2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1f"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "724", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-AB-Bnd-Cel-491488349-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGQ3LzkwNTE1MTAwNDY3NTAuanBnfGJkNGNkM2VkOTliNmMyMmQwYzJlOTgxNTU4ZWNhZDMyYWNiZWU5ZTc0ZTEyOWM5MzNhM2MwNDYxYTExYTQ3Mjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b20"), + "name" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "price" : "637", + "sku" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmG-AL-Cs-P-S-S-Bd-GPS-491488345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxN3xpbWFnZS9qcGVnfGltYWdlcy9oN2EvaGFmLzkwNTA2Njk1ODAzMTguanBnfGQ2MjI0NmQ4MmM2OWFmNTg1YWIyYzljMDliOGMyZDhkYzdjNGM5M2IzY2ZlNmY3ZDljNWU2MzIyYjgwZTIwNzY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b21"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "724", + "sku" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-PPB-Bnd-Cel-491488347-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzM2N3xpbWFnZS9qcGVnfGltYWdlcy9oOWEvaDRlLzkwNTE1MTIyNzQ5NzQuanBnfDBmZmZkNmZmMDM2YjNlNWJjNDg2MTdiZDMyYjk0YmVkYzljZTc4ZTBjYTU0MzAzNDNlNTk0NGIxZWE2OGYzY2Y", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b22"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "593", + "sku" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-SW-S-LP-GPS-491488359-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDU3NXxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaDEwLzkwNTE1MjQ1OTU3NDIuanBnfGEyZTkwZjFhMmNjOGUzYzJjYWIwMDc4MTc5N2UwNGU1NjU0MTZhYzM3NDY2NzMwMmEzYWUxM2U4ODg1YTdlOTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b23"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "637", + "sku" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-PPB-Bnd-GPS-491488357-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzM2N3xpbWFnZS9qcGVnfGltYWdlcy9oMjYvaDZlLzkwNTE1MTgyMzg3NTAuanBnfGIwOWRhNmI3ZGU0ZDgyNjZhYTg5Y2U1N2I0NGM5ZGQ3YjBlZGY3MDBjZjUxMDY2MGJhOGRkNWNhOGE2MzQ1NGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b24"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "593", + "sku" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-PPB-Bnd-GPS-491488355-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQ1OXxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaGY0LzkwNTE1MjA1OTgwNDYuanBnfDBhOWZkZDNlODU3NDBhMWU3YjgzODJjMTQwMjhmYmQ5ZGEzNzZjOTk3YjBlMzBjNzQ2NzI2NTFmYWZjMzc0ODI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b25"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "637", + "sku" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-BK-S-LP-GPS-491488362-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjg4NXxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDBiLzkwNTE1MzAyMzE4MzguanBnfGY5OTI0MzU3Y2NjNjdiNGFkN2Q0YzgxYWFlNWYwMDQ0NDg3OTcwMmU4MzI4M2Q0ZmRmZTNmNzlhMTUyMjgxMDc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b26"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Loop", + "price" : "724", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-AL-Cs-PS-S-LP-Cel-491488316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjc5N3xpbWFnZS9qcGVnfGltYWdlcy9oYjIvaGE5LzkwNTA2MjUyMTI0NDYuanBnfDcyM2YyYjQ1YzUyZWI0YmU1NGQyNTIzYWYxYWJlMWVkZTUzMjRiM2VkMjc2Yjc1MTc4YjUyNDI0MWMxNzJlZTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b27"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "price" : "767", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-AL-Cs-PS-S-LP-Cel-491488328-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTkxNXxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDZhLzkwNTA2NDAwMjM1ODIuanBnfGJjZWU1NTQ0YzJmYzk1ZTQ3ZmY2NjVlMjNmNDJhODU2ZDQ3NGRlOTNjYzY3MGZjMWVkOTBjODVmMzZjNDY1ZmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b28"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with White Sport Band", + "price" : "724", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with White Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SL-AL-Cs-WH-S-Bnd-Cel-491488311-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTE0NXxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaGUxLzkwNTA2MTg2NTg4NDYuanBnfDA5MjdiZmZjZTc0YmE0MmRjMzEyYjI2NjBkMzA5YWY3NTZiYjMzMGJjYmZiNTdiODhmNTUzZDRkMTBjMmFiOTY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b29"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with White Sport Band", + "price" : "767", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with White Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SL-AL-Cs-WH-S-Bnd-Cel-491488323-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkxNnxpbWFnZS9qcGVnfGltYWdlcy9oYTQvaGFkLzkwNTA2MzM0MDQ0NDYuanBnfDdiZmQ4NzhiYWI5YmMxNTRiNjAzZmQ2ZmQwNzk1OWEzNDc2ZGIzNGI0MGJjYjEzYWFiY2IzN2RiZDZjNmNjNjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2a"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with White Sport Band", + "price" : "985", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with White Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SS-Cs-WH-S-Bnd-Cel-491488317-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4MHxpbWFnZS9qcGVnfGltYWdlcy9oYTkvaGVlLzkwNTA2Mjg0ODkyNDYuanBnfDBiMDVkNmNhY2U1M2QxMmJkYmFmOTgzMWYxNTc5OGIwMWI2NTdlNGUyYTU2MzQ5ZmU0MDQyNjFkNzY2ZWU2MzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2b"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "price" : "767", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SG-AL-Cs-BK-S-LP-Cel-491488326-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTMyMnxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGRjLzkwNTA2NDE2NjE5ODIuanBnfGFjNDU4ODMzYWM5NzczODdmOGQ5OTMzNjE5ZmQyMTM4ZjA4ZTU0ZjI4YjFjN2MyMmUwZWE2ZDUwNWMzNWY0ZmY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2c"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Band", + "price" : "724", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-AL-Cs-PS-S-Bnd-Cel-491488315-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODA2MHxpbWFnZS9qcGVnfGltYWdlcy9oZGIvaGE5LzkwNTA2MjIyNjMzMjYuanBnfGIxMWZkZThiZjMzZWRiMjQ0MTBjMTg4MzUyMGZlMTIxMWQyNTEzMmI2NTVhODY0ZjI1ZTcyNjg5YWE5ZmNkYTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2d"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "767", + "sku" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SL-AL-Cs-SS-S-LP-Cel-491488324-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjIxNHxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaDg2LzkwNTA2MzgzODUxODIuanBnfDA5NzI1NWNiZWY4OTJkNTIyNjhmZDM5OGM2M2NkYWNmNDE0ODdiYzkxN2VkYjNkNTMyNDhjYTg0N2Y4OTI1Y2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2e"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Seashell Sport Loop", + "price" : "724", + "sku" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Seashell Sport Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SL-AL-Cs-SS-S-LP-Cel-491488312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTQ2M3xpbWFnZS9qcGVnfGltYWdlcy9oOTAvaGNlLzkwNTA2MTg5ODY1MjYuanBnfGJmYTVlZWFlMzk5YzA0YjI0NjlmZmI3MWQ5NjY1M2ZkOWIzOGYzOGQ2ZjU3YTEwMjhhMjFjYmU5NmU4ZDc1ZDc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2f"), + "name" : "Fossil Q Scarlette FTW5017P Hybrid Smart Watch, Blue/Rose Gold", + "description" : "Fossil Q Scarlette FTW5017P Hybrid Smart Watch, Blue/Rose Gold", + "price" : "211", + "sku" : "Fossil Q Scarlette FTW5017P Hybrid Smart Watch, Blue/Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5017-Smart-Watches-491350707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTk5M3xpbWFnZS9qcGVnfGltYWdlcy9oMmEvaGVmLzg4OTQ3NzA1Nzc0MzguanBnfDljYmY2Y2M3ZGEzZjdmYjM1YzM2MmMzNjQ0NWU3MGE1ZjFjZmZhYWJhYTBhZTljMTQ4OWRmOWE2ZDIzNjEyYzY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Scarlette" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5017P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue/Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b30"), + "name" : "GARMIN Vivofit 2 Activity Tracker, Black", + "description" : "GARMIN Vivofit 2 Activity Tracker, Black", + "price" : "116", + "sku" : "GARMIN Vivofit 2 Activity Tracker, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/GARMIN-Vivofit-2-Activity-Tracker-Black-491229540-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzA3NnxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaDVkLzg5MzI3NDc5MDMwMDYuanBnfDI5MzRkZmRiZGUyYjg4YzI0MjEyMjRjM2E4MWVhNWU1NDUyZGQ2ZjE1NDlkMDFmZTg3MTRmZmQxNDk5NGQ0MDE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Vivofit 2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart rate-based calorie computation
  • Step counter
  • Garmin Connect compatible (online community where you analyze" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB ANT Stick
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "GARMIN" + } + ], + "manufacturer" : "GARMIN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b31"), + "name" : "Fossil FTW1176 Smart Watch", + "description" : "Fossil FTW1176 Smart Watch", + "price" : "196", + "sku" : "Fossil FTW1176 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW1176-Smart-Watches-491550745-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Mzg4fGltYWdlL2pwZWd8aW1hZ2VzL2g4Yy9oMzEvOTExNzM1NDM5MzYzMC5qcGd8MWVjNjczYmJkMjAxYTIzZmZkYjkzNmJkNjNkZWQxNzc2MDRlYTdjNWQyNGQ1YWRlNjhmNjkwNTJiYTk1ODU5YQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW1176" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Genuine Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial Colour)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "12 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b32"), + "name" : "Apple Watch Nike+ - 38mm Space Gray Aluminum Case with Black/Volt Nike Sport Band", + "description" : "Apple Watch Nike+ - 38mm Space Gray Aluminum Case with Black/Volt Nike Sport Band", + "price" : "477", + "sku" : "Apple Watch Nike+ - 38mm Space Gray Aluminum Case with Black/Volt Nike Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-38mm-Space-Gray-Aluminum-Case-with-Black-Volt-Nike-Sport-Band-491277330-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjA2M3xpbWFnZS9qcGVnfGltYWdlcy9oNjUvaDNlLzg5Mjk0MDYyMjIzNjYuanBnfGUxZmQyYTY3M2RjNmRjNGM0Y2ZjOTRlOTE1NGNjZDk0NjZmMWNiM2EwZDcxMGU1YmIyYjExMjJkMDNkY2RhNWI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "3.86" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.33" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "28.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "33.3 x 11.4 x 38.6 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/Volt" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Space Gray aluminum case
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Space Gray Aluminum Case
  • Nike Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b33"), + "name" : "Michael Kors Sofie MKT5022 Smart Watch, Gold", + "description" : "Michael Kors Sofie MKT5022 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael Kors Sofie MKT5022 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5022-Smart-Watches-491363046-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODYzNHxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaGJiLzg4ODMxNzU5MTU1NTAuanBnfDNmNDcxMzk5MWYwNWMxOGU3NzM3YzQxYzQ3YWQ1ODBlNjA3NWI3MzcwNDg0MTEzNmE1ZmRjY2MzMzk2Nzc2NzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5022" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear 2.0" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b34"), + "name" : "Michael Kors MKT5028 Smart Watch, Blue", + "description" : "Michael Kors MKT5028 Smart Watch, Blue", + "price" : "377", + "sku" : "Michael Kors MKT5028 Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5028-Smart-Watches-491363048-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDIwOXxpbWFnZS9qcGVnfGltYWdlcy9oYzcvaGRlLzg4ODMxNzQyNzcxNTAuanBnfDZhN2YyYTZlZGZhMzEzNDMwNWQ1NDNlYzc1NGFlYzkzYjFmNzM5MzYyY2RiMDU1OGNmNGI4NGJlMjk3MTM4ZGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5028" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b35"), + "name" : "Skagen SKT1101 Hybrid Smart Watch, Black", + "description" : "Skagen SKT1101 Hybrid Smart Watch, Black", + "price" : "208", + "sku" : "Skagen SKT1101 Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1101-Smart-Watches-491362895-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDU4MHxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaGFmLzg4ODk3ODg0NjUxODIuanBnfDc0MDdmYzVhMmM0ZmViM2NlMTI5ZWNmM2JmZjdiMTIxMTg4ZWMxZDg3ZTQ5NWFmNTU3OTk5YmU4ZWEwZTdmMTU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1101" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b36"), + "name" : "Fossil Q Commuter FTW1151P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Commuter FTW1151P Hybrid Smart Watch, Brown", + "price" : "211", + "sku" : "Fossil Q Commuter FTW1151P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1151-Smart-Watches-491363023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDU3MHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDIyLzg4OTQ2NjQ0MDkxMTguanBnfGRhODRjMDAwNDIzMzk0MmE2ZjZjNjY0YjY5MzExYTJkNDc5M2NjN2MwZmYzM2RkZDg4NWNjMDgzMmRhMjE0ZmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1151P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b37"), + "name" : "Fossil Q Commuter FTW1150 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Commuter FTW1150 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil Q Commuter FTW1150 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1150-Smart-Watches-491363022-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDkwMHxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDIxLzg4OTQ2NjcwMzA1NTguanBnfGY1MGM2ODkzNTIwZTJiNDRhMzkzMjhlNzgxZTNkNWNhZDkwZjI1ZjcxNmMwZTYwNTNiZWZmODViZGM2YmYzOWU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1150" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Off-White (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b38"), + "name" : "Fossil Q Commuter FTW1149 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Commuter FTW1149 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil Q Commuter FTW1149 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1149-Smart-Watches-491363021-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzM5MnxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDFkLzg4OTQ2NjMwOTgzOTguanBnfDg1OWE5NTA2M2Y3MDNmYjg1NmNjMDQwY2JjYTM0NTU3NWYyYWE3N2JiYWVjYzJlNDVlOTY0MDJkZjEwMTE2NDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1149" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b39"), + "name" : "Fossil Q Virginia FTW5011P Hybrid Smart Watch, Silver/Rose Gold", + "description" : "Fossil Q Virginia FTW5011P Hybrid Smart Watch, Silver/Rose Gold", + "price" : "189", + "sku" : "Fossil Q Virginia FTW5011P Hybrid Smart Watch, Silver/Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5011-Smart-Watches-491350703-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE4NHxpbWFnZS9qcGVnfGltYWdlcy9oYjUvaDk5Lzg4OTQ3MDE5NjEyNDYuanBnfDA5MzYwYWU1MjMyNjJlMjQ4OTI0ZDljMzU5MWNiZTExMDM2MTQ5MmJiYTVlMzNmYWNmMTM5NDQ0Mzk2ZDE0OWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Virginia" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5011P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver/Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3a"), + "name" : "Fossil Q Virginia FTW5010P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Virginia FTW5010P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil Q Virginia FTW5010P Hybrid Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5010-Smart-Watches-491363033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Nzk0OHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDRiLzg4OTQ3MDgwNTYwOTQuanBnfGVhYWQ0NTk4YTQ4NGQ1Y2ViYzZjNWYyMzQ4ODNlZDRlZDBhZTdkMWUwNzQ4M2QzNmZkMzQ5NzdlMGZjMGUxMmI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Virginia" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5010P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3b"), + "name" : "Fossil Q Commuter FTW1154 Hybrid Smart Watch, Blue", + "description" : "Fossil Q Commuter FTW1154 Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil Q Commuter FTW1154 Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1154-Smart-Watches-491363026-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTUyNnxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaDdmLzg4OTQ2NTIyODQ5NTguanBnfDgwZDBjN2UxZmMzNGRhOTAyMzliNTY3NGFjZmMyODVhOTlkOTFjNGI2YzVhODNjOWEyMThkNzhkYjlmYTVlMjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1154" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ or iPhone 5/iOS 8.2+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3c"), + "name" : "Fossil Q Commuter FTW1161 Hybrid Smart Watch, Gunmetal", + "description" : "Fossil Q Commuter FTW1161 Hybrid Smart Watch, Gunmetal", + "price" : "189", + "sku" : "Fossil Q Commuter FTW1161 Hybrid Smart Watch, Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1161-Smart-Watches-491363031-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDExNHxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDJhLzg4OTQ2NTMyNjc5OTguanBnfDQ0YjRlMTk4OGY1MzU1MmJhODlhNDk5MTk1ZDg3MmFhNDgxZDQ2Y2RhNmUzNGVjMjhiNzhhZmY0ZTA3OWZjOTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1161" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ or iPhone 5/iOS 8.2+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3d"), + "name" : "Fossil Q Crewmaster FTW1141 Hybrid Watch, Black/Red", + "description" : "Fossil Q Crewmaster FTW1141 Hybrid Watch, Black/Red", + "price" : "174", + "sku" : "Fossil Q Crewmaster FTW1141 Hybrid Watch, Black/Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1141-Smart-Watches-491350692-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODgxOHxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaDkxLzg4OTQ2ODc4NzEwMDYuanBnfDdmOWI2ZTM1YjNkYzI4NjZjNjI0N2EyNjZiNTExMTMwZjgwMjA5ZWIxMGYzYzI5NDkyMjFlMGMwZDNkY2YzOTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1141" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3e"), + "name" : "Fossil Q Neely FTW5007P Hybrid Smart Watch, Beige", + "description" : "Fossil Q Neely FTW5007P Hybrid Smart Watch, Beige", + "price" : "211", + "sku" : "Fossil Q Neely FTW5007P Hybrid Smart Watch, Beige", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5007-Smart-Watches-491363032-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODU0NXxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGY2Lzg4OTQ3MDYwOTAwMTQuanBnfDQ4NzY5NGNhY2M5NGYzYjlmMGRjZDRlYzg4ZmI0YmEzNmU4NmE3NWEyOTgxNDhlM2Q3NDQzY2Y4ZDUxODUyYzc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Neely" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5007P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Beige" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3f"), + "name" : "Fossil Q Virginia FTW5009 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Virginia FTW5009 Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil Q Virginia FTW5009 Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5009-Smart-Watches-491363034-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTQwMXxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGE5Lzg4OTQ3MDgzODM3NzQuanBnfDJiNjI4YjIwMjRlZjY0NjE3NzNlNWQ5ZGFkNTgyMzc4NGI4ZjkyYzY0ZmZiYmM2MmU3NjMyMDNjY2Y4YTYzZGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Virginia" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b40"), + "name" : "Michael Kors Grayson MKT4012 Hybrid Watch, Blue", + "description" : "Michael Kors Grayson MKT4012 Hybrid Watch, Blue", + "price" : "290", + "sku" : "Michael Kors Grayson MKT4012 Hybrid Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4012-Smart-Watches-491363043-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzk2MHxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaDU2Lzg4OTQ3NjE1MzM0NzAuanBnfGQ5ODQ1MDFlNzIxMDkyZTBmNzg5NjFlYmFjYmYxZGVkNTI2ZWU4ZGIwNDFlMzM1N2IwM2RhZmVkYWYzMzEyYjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b41"), + "name" : "Fossil Q Modern Pursuit FTW1136P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Modern Pursuit FTW1136P Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil Q Modern Pursuit FTW1136P Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1136-Smart-Watches-491350690-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTQzOHxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDY0Lzg4OTQ3NzM1MjY1NTguanBnfGI2MTg5OWRkNmUzZTk1MDMyZDMwODAzOGE2YzliZjJjNWFlYjc4ZGVhMThjNDQ1Y2FkZDhjMjk4M2I1M2JhNzg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Modern Pursuit" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1136P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b42"), + "name" : "Fossil Q Modern Pursuit FTW1146P Hybrid Smart Watch, Wine", + "description" : "Fossil Q Modern Pursuit FTW1146P Hybrid Smart Watch, Wine", + "price" : "174", + "sku" : "Fossil Q Modern Pursuit FTW1146P Hybrid Smart Watch, Wine", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1146-Smart-Watches-491350695-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzYxMnxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGI4Lzg4OTQ3Nzk0MjQ3OTguanBnfDU3NGU3YTI3MzMzZDdjOTU5NDdhN2E4ZmYxYjEwYThjNGRmZjRmNjA4MDBiYmExOGY4MTJiNzBmOGViNTgzN2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Modern Pursuit" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1146P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Wine" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Wine" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b43"), + "name" : "Fitbit Ionic FB503WTGY Smart Watch, Blue-Grey & Silver-Grey", + "description" : "Fitbit Ionic FB503WTGY Smart Watch, Blue-Grey & Silver-Grey", + "price" : "363", + "sku" : "Fitbit Ionic FB503WTGY Smart Watch, Blue-Grey & Silver-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB503WTGY-Smart-Watches-491378202-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjg3NHxpbWFnZS9qcGVnfGltYWdlcy9oNmQvaDI3Lzg5ODE2MjgxNTc5ODIuanBnfDk4MTljNWZiMWE0MWI1MWYxY2JkMDc2NjE0NWY5YWRjYzc2NmIzMDFjM2U4OGJkY2I3MzUzYWYyMTE2MDA5MjQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Ionic" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB503WTGY" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "304" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue-Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver-Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5 days" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Small and large bands" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b44"), + "name" : "FOSSIL FTW2117P Q Founder Gen 3 Smart Watch, Black", + "description" : "FOSSIL FTW2117P Q Founder Gen 3 Smart Watch, Black", + "price" : "290", + "sku" : "FOSSIL FTW2117P Q Founder Gen 3 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2117-Smart-Watches-491362960-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTcyNHxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDY2Lzg4ODMxNzc4ODE2MzAuanBnfDI0NGY0M2QyYWE2OGJmYzRhNjkyOWRiZjUyNWE3ZTMwN2VlNGQ5ZTFjNjk0ZjI5ZWY0N2NlN2IxMjIyNjliNjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2117P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+ or iPhone 5/iOS 9+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black Gray Case" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "G-Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b45"), + "name" : "FOSSIL FTW4001P Q Explorist Gen 3 Smart Watch, Gunmetal", + "description" : "FOSSIL FTW4001P Q Explorist Gen 3 Smart Watch, Gunmetal", + "price" : "319", + "sku" : "FOSSIL FTW4001P Q Explorist Gen 3 Smart Watch, Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4001P-Q-Explorist-Gen-3-Smart-Watch-Gunmetal-491363008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzk2M3xpbWFnZS9qcGVnfGltYWdlcy9oMTAvaDkzLzg4NzQ3MTk5NjkzMTAuanBnfGJjMzhiMTdkMzkyYTZkNmRiMDlkNDgzNzExYzI1ZDk0MzA1ZDU0ODMyMDY2NTA5YzUyOGQ0NDVjZjU4OTYyMjI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4001P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b46"), + "name" : "FOSSIL FTW2109P Q Marshal Gen 2 Smart Watch, Silver", + "description" : "FOSSIL FTW2109P Q Marshal Gen 2 Smart Watch, Silver", + "price" : "290", + "sku" : "FOSSIL FTW2109P Q Marshal Gen 2 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2109-Smart-Watches-491362953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDE5NnxpbWFnZS9qcGVnfGltYWdlcy9oNjQvaDI1Lzg4ODMxNzA2NzI2NzAuanBnfDliMDlkZjBlMDc1ZTU2N2Y2NjZkYjA1NzAxOWU4MmQ2MTE0YmI5ZmMzOWY5OGMzMmY0ODkyYjYyMDgzZWZhZmY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2109P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "360" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+ or iPhone 5/iOS 9+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b47"), + "name" : "FOSSIL FTW2106P Q Marshal Gen 2 Smart Watch, Tan", + "description" : "FOSSIL FTW2106P Q Marshal Gen 2 Smart Watch, Tan", + "price" : "276", + "sku" : "FOSSIL FTW2106P Q Marshal Gen 2 Smart Watch, Tan", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2106-Smart-Watches-491362950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzgzM3xpbWFnZS9qcGVnfGltYWdlcy9oNDEvaGRjLzg4ODMxNzEwMDAzNTAuanBnfDdmMzAyMzE2MGUyMmJmNzJjMWEwNjAwYTgxOWI2MTA4ZDVhNDVkNGY3NjgyM2EyNDgyNDdhM2Q2MjQzZDU4ZDA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2106P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "360" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+ or iPhone 5/iOS 9+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Tan" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b48"), + "name" : "Skagen SKT1100 Hybrid Smart Watch, Silver", + "description" : "Skagen SKT1100 Hybrid Smart Watch, Silver", + "price" : "218", + "sku" : "Skagen SKT1100 Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1100-Smart-Watches-491362894-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDkzOXxpbWFnZS9qcGVnfGltYWdlcy9oYjgvaGUwLzg4ODk3NzkxOTE4MzguanBnfGUyY2Q1Njc4N2FlODUyN2M2ZjIxYmRiYjc1MjlmZWU4NWI5NGYzZmEzZjEyYjM2MzQ4NzhjMDNiYzRkNzJmYzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1100" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b49"), + "name" : "Skagen SKT1113 Hybrid Smart Watch, Silver", + "description" : "Skagen SKT1113 Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Skagen SKT1113 Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1113-Smart-Watches-491363001-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTQ3OXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGRmLzg4ODk3ODA4NjMwMDYuanBnfGY5NWMxOTc5Mjc0MDY4MjUxOTUwZjhhYjc4NjA2NGI1ZDc3ZmRhMjJkZDJhMTNiYmU1ODczOTg2ZGZkNGFhYmE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1113" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4a"), + "name" : "Skagen SKT1114 Hybrid Smart Watch, Green", + "description" : "Skagen SKT1114 Hybrid Smart Watch, Green", + "price" : "211", + "sku" : "Skagen SKT1114 Hybrid Smart Watch, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1114-Smart-Watches-491363002-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTg1NnxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDUyLzg4ODk3Nzg2Njc1NTAuanBnfDZlZWY1MWRkNjI1ZTUxZGFjZWFlNzBhODkxMWE0MDIzODhmNjNmOGI2NTQ1NjhhYjc5MmQyOTQyNDEzMTg5YWY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1114" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Titanium" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4b"), + "name" : "Skagen SKT1112 Hybrid Smart Watch, Black", + "description" : "Skagen SKT1112 Hybrid Smart Watch, Black", + "price" : "196", + "sku" : "Skagen SKT1112 Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1112-Smart-Watches-491363000-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODEzNXxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaGVkLzg4ODk3OTk2MzkwNzAuanBnfGJkZWI0NzgwOWRjMDc0YjRlMTdhZmVhMGQ5NzJmOWZiYjZhZjhjNzhjYTBjZGU3N2Q1N2RlNGE5NWYzZGM4NzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1112" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4c"), + "name" : "Skagen SKT1111 Hybrid Smart Watch, Brown", + "description" : "Skagen SKT1111 Hybrid Smart Watch, Brown", + "price" : "196", + "sku" : "Skagen SKT1111 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1111-Smart-Watches-491362999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU1OXxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaDk3Lzg4ODk4MDMwNzk3MTAuanBnfDZlMTFiODc5ZTcyNTkzYWI2NjY3YjQ1NzVjOGZiMDMxZTFkYzNmOTgzNmFmZWE5MjZiZjNkMmRhNzdkMmY3ZDI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1111" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4d"), + "name" : "Fossil Q Accomplice FTW1208P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Accomplice FTW1208P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil Q Accomplice FTW1208P Hybrid Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1208-Smart-Watches-491363006-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDQ4MXxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaGVhLzg4OTQ2NDY0NTIyNTQuanBnfGNlOTkxMDU1YTYyNzZkM2RjMWVjNzFiZjE0NmJjZmIxNDFiY2UyMDg1Yjc5N2FhMzhhZWYxYzY3MWMyMmM1YTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1208P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4e"), + "name" : "Fossil Q Control FTW7001 Gen 3 Smart Watch, Grey", + "description" : "Fossil Q Control FTW7001 Gen 3 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil Q Control FTW7001 Gen 3 Smart Watch, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW7001-Smart-Watches-491350721-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzU3OHxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDdlLzg4OTQ2NTgxODMxOTguanBnfDA5MTc0M2MyMTZmMmY4MDExNWU1Mzk0YTUwZGJkNjlmNmRjOGQyYTgzMTU3NGIwNTIzMWJkZGFhN2JjMzVhMmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Control" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW7001" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.3+ or iOS 9.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4f"), + "name" : "Fossil Q Commuter FTW1148 Hybrid Smart Watch, Black", + "description" : "Fossil Q Commuter FTW1148 Hybrid Smart Watch, Black", + "price" : "211", + "sku" : "Fossil Q Commuter FTW1148 Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1148-Smart-Watches-491363020-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzAwM3xpbWFnZS9qcGVnfGltYWdlcy9oNTgvaDg5Lzg4OTQ2NTg1MTA4NzguanBnfGMyYzk1MDVhNDdiZDZmMWYyMDI2YzczYWFjNDdjMzc1OTA4MDRhZDFkZTBiNDIzYWEyNjJhMjczZmMxNGM0MTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1148" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b50"), + "name" : "Fossil Q Commuter FTW1152P Hybrid Smart Watch, Gold", + "description" : "Fossil Q Commuter FTW1152P Hybrid Smart Watch, Gold", + "price" : "211", + "sku" : "Fossil Q Commuter FTW1152P Hybrid Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1152-Smart-Watches-491363024-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDk4NnxpbWFnZS9qcGVnfGltYWdlcy9oMGMvaDI3Lzg4OTQ2NjM3NTM3NTguanBnfDkyNDlhY2U5OTYwODgzMWVkMzFmMjEzZGJmZWU3ZmUwY2U2NTJkZWFkNjc2MWQ5OWEzN2RiYWI2YzUzNjYyZGE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1152P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b51"), + "name" : "Fossil Q Accomplice FTW1200P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Accomplice FTW1200P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil Q Accomplice FTW1200P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1200-Smart-Watches-491362989-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTIzMHxpbWFnZS9qcGVnfGltYWdlcy9oY2MvaDI3Lzg4OTQ2Njg4NjU1NjYuanBnfDdhNDU1YWY4MTI3MjgwOWQ1Njg4ZGI4MTgyYzIwZjhiMGI1Mjc0OTYzYmIxMzQ2YTA0YWMyNWIxZjVhY2VhMDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1200P" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b52"), + "name" : "Fossil Q Explorist FTW4005P Gen 3 Smart Watch, Black", + "description" : "Fossil Q Explorist FTW4005P Gen 3 Smart Watch, Black", + "price" : "290", + "sku" : "Fossil Q Explorist FTW4005P Gen 3 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4005-Smart-Watches-491350709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTIyMnxpbWFnZS9qcGVnfGltYWdlcy9oZDYvaDNiLzg4OTQ2NjkxOTMyNDYuanBnfDJhOWRlNWJmNDQ3OGQ5MzI3YWYyNGI4YzE2MDA1YTVjMzVlOWVhNjRmNWUwMTM3ZjQxNDIwZTlhMzg0NWIwN2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Explorist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4005P" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Case)" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b53"), + "name" : "Fossil Q Crewmaster FTW1126 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Crewmaster FTW1126 Hybrid Smart Watch, Silver", + "price" : "203", + "sku" : "Fossil Q Crewmaster FTW1126 Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1126-Smart-Watches-491362944-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM2NHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDE0Lzg4OTQ2NzE0ODcwMDYuanBnfGY4ODVkZDEyNTU0MTY0ZDhiNGZlM2JjYzA5ODM3MzljMDQ1MjQyZDQyZDVjNjcxYzY4OGY2Y2I3MzQwZDI4ZTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1126" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b54"), + "name" : "Fossil Q Crewmaster FTW1124 Hybrid Smart Watch, Black", + "description" : "Fossil Q Crewmaster FTW1124 Hybrid Smart Watch, Black", + "price" : "174", + "sku" : "Fossil Q Crewmaster FTW1124 Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1124-Smart-Watches-491362942-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjkzNXxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaDAzLzg4OTQ2NzIxNDIzNjYuanBnfDJkNDQ2NWVjYTY1YjAyZTBlMzlkYjIwMzE4Y2RmZDdkNzczOGVjYWQyYTU4NTNhYWRhYjRiNzQ3MGU3M2Q0ZTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1124" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b55"), + "name" : "Fossil Q Grant FTW1147 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1147 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil Q Grant FTW1147 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1147-Smart-Watches-491363003-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTM3NHxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDk4Lzg4OTQ2NzgwNDA2MDYuanBnfDlkODEwM2Q2Nzk1MmIwZjczYjhlNTM4YzI2ZTQxOTA2NTZlZGI5YzQ1YzVlMTM4MTVjMzMzODYyOTY1YmUyNTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1147" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Months Based On Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b56"), + "name" : "Fossil Q Gazer FTW1106 Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Gazer FTW1106 Hybrid Smart Watch, Rose Gold", + "price" : "203", + "sku" : "Fossil Q Gazer FTW1106 Hybrid Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1106-Smart-Watches-491362937-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzQ2NHxpbWFnZS9qcGVnfGltYWdlcy9oNGYvaGU3Lzg4OTQ2ODA5ODk3MjYuanBnfGYyOTk3MmI4ZDExMGFhMjQ2NTYyMjJkMjhiNTYzNjhhNWMwOGI1YTRjOGM4ZDA3ZGNiYWY2ZDMyYWY1YTBlNDU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1106" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b57"), + "name" : "Fossil Q Gazer FTW1105 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Gazer FTW1105 Hybrid Smart Watch, Silver", + "price" : "203", + "sku" : "Fossil Q Gazer FTW1105 Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1105-Smart-Watches-491362936-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODAzNXxpbWFnZS9qcGVnfGltYWdlcy9oMzIvaDZmLzg4OTQ2ODUzODA2MzguanBnfDUxYjc2ZjYxYThhZDFmNGU0OWVlZjE2MGNhOTRlZjQ1YWIzYzg5Yzc3ZmRjOTQ1Y2QyNzY3MmZjMjAyYzg5ZjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1105" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b58"), + "name" : "Fossil Q Crewmaster FTW1125 Gen 2 Hybrid Smart Watch, Blue", + "description" : "Fossil Q Crewmaster FTW1125 Gen 2 Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil Q Crewmaster FTW1125 Gen 2 Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1125-Smart-Watches-491362943-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzU2NHxpbWFnZS9qcGVnfGltYWdlcy9oYTQvaDc0Lzg4OTQ2ODQ3MjUyNzguanBnfGZjNWU4MWU0YTQ5NzM1MTU0MjE0ZDZmYmIyMGJjODJiNDlhYjM3OWNmZDQxZjM4NGNkNTg5NGNmNzY2ZjdjMWQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1125" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months Based on usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b59"), + "name" : "Fossil Q Gazer FTW1116 Hybrid Smart Watch, Grey", + "description" : "Fossil Q Gazer FTW1116 Hybrid Smart Watch, Grey", + "price" : "174", + "sku" : "Fossil Q Gazer FTW1116 Hybrid Smart Watch, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1116-Smart-Watches-491362940-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Njg1MnxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDUyLzg4OTQ2OTA4MjAxMjYuanBnfDE3ZjU1OTMzODM4YmYxOGQwMDRlOTM3ZThkM2MwZGFjZTRlYWJmMDk4ZTEwMjQ0MTY4YTY2Mjk1NWQ3YjU5OTU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1116" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Months Based On Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5a"), + "name" : "Fossil Q Gazer FTW1145P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Gazer FTW1145P Hybrid Smart Watch, Blue", + "price" : "203", + "sku" : "Fossil Q Gazer FTW1145P Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1145-Smart-Watches-491362988-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDMyMHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDliLzg4OTQ2OTk2Njc0ODYuanBnfGE2YzA0YjA3NjlhYzA3ODhjZDQzYjgxYTIxZWE0ZDRkMDVjNTFjMDg3MWM1NDNkODZjZGIzNDFiNjBhODYzYzk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1145P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5b"), + "name" : "Fossil Q Tailor FTW1127P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Tailor FTW1127P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil Q Tailor FTW1127P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1127-Smart-Watches-491362945-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTc5OHxpbWFnZS9qcGVnfGltYWdlcy9oMWUvaDM5Lzg4OTQ3MDA5NzgyMDYuanBnfGUwNGY4MmVhNjQxNjg2MWY0N2IyNmQ0MGQ3NTViODc0MjQwZmM3Nzg2NWZlZjQwZGM0YTg5NTM3N2YxMTk4NDE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1127P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5c"), + "name" : "Fossil Q Wander FTW2114P Gen 2 Smart Watch, White", + "description" : "Fossil Q Wander FTW2114P Gen 2 Smart Watch, White", + "price" : "276", + "sku" : "Fossil Q Wander FTW2114P Gen 2 Smart Watch, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2114-Smart-Watches-491362957-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDc5NnxpbWFnZS9qcGVnfGltYWdlcy9oNWYvaGJiLzg4OTQ3MDIyODg5MjYuanBnfDNhYmUxNTc0N2FiMWYwZjllNWNiMjM5ZTU3YzIyMGNlOGI2Y2I5NTA2MGFlMGQ3ZDMzOThlNTRiZjY4MDg2NGE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2114P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5d"), + "name" : "Fossil Q Tailor FTW1129 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Tailor FTW1129 Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil Q Tailor FTW1129 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1129-Smart-Watches-491362947-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUxM3xpbWFnZS9qcGVnfGltYWdlcy9oZDAvaDA2Lzg4OTQ3MDg3MTE0NTQuanBnfDQ2ZDRiM2UxOTAzZjc5ZmUwN2NkNTNhZjZmMTFhNzE2MTJmNjk2MTRlNTM5ODczZTY2M2JiYmZiYjMwY2QyZDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1129" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5e"), + "name" : "Fossil Q Wander FTW2113P Gen 2 Smart Watch, Wine", + "description" : "Fossil Q Wander FTW2113P Gen 2 Smart Watch, Wine", + "price" : "276", + "sku" : "Fossil Q Wander FTW2113P Gen 2 Smart Watch, Wine", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2113-Smart-Watches-491362956-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDMxM3xpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDAwLzg4OTQ3MTQ5MzczNzQuanBnfDQ0N2ZhYzAzZThmNDk5ODlmMDAwMjhlODUxOTE0YTU0ZjExMTI2MGJiM2RlNjIyYzNkMTY3MTZiODZlNTE0Yzk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2113P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Wine" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Burgundy (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5f"), + "name" : "Fossil Q Nate FTW1115P Hybrid Smart Watch, Black", + "description" : "Fossil Q Nate FTW1115P Hybrid Smart Watch, Black", + "price" : "203", + "sku" : "Fossil Q Nate FTW1115P Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1115-Smart-Watches-491362939-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDA2NHxpbWFnZS9qcGVnfGltYWdlcy9oZDAvaGIyLzg4OTQ3MjA3NzAwNzguanBnfGI0YjhlNGQ5MTA2YWU5Njc4MmM2Y2E1NmY4YmNiMTg5ZWM2MzIzOTliOWY0YjZmYmZjYWE0NThhZWVlNjYzMTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1115P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b60"), + "name" : "Fossil Q Wander FTW2111P Gen 2 Smart Watch, Silver", + "description" : "Fossil Q Wander FTW2111P Gen 2 Smart Watch, Silver", + "price" : "290", + "sku" : "Fossil Q Wander FTW2111P Gen 2 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2111-Smart-Watches-491362954-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njg4MHxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDU4Lzg4OTQ3MjIwODA3OTguanBnfGU2MzhlYjAyNmU2MTM4YWZhZmUwOTFhYzBkNzFkODA5NjYwY2Q0MTRmYWU4MTNiYjMxNDMxMTM4YmFkZDE2N2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2111P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b61"), + "name" : "Fossil Q Nate FTW1123P Hybrid Smart Watch, Stainless Steel", + "description" : "Fossil Q Nate FTW1123P Hybrid Smart Watch, Stainless Steel", + "price" : "203", + "sku" : "Fossil Q Nate FTW1123P Hybrid Smart Watch, Stainless Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1123-Smart-Watches-491362941-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTA5NnxpbWFnZS9qcGVnfGltYWdlcy9oZjkvaGU4Lzg4OTQ3MjUwMjk5MTguanBnfDM2ODEwMjlkNmUxYTJjZjE4MDQwZDdiZWEwNmFkODlhYTkyMjgxYzBlMjkwMGJjYWE3ZjZkMDQ1ZDA5YjFiOWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1123P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b62"), + "name" : "Fossil Q Venture FTW6009P Gen 3 Smart Watch, Black", + "description" : "Fossil Q Venture FTW6009P Gen 3 Smart Watch, Black", + "price" : "290", + "sku" : "Fossil Q Venture FTW6009P Gen 3 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6009-Smart-Watches-491350710-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDc0MXxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDVjLzg4OTQ3MzAyNzI3OTguanBnfGQ0YzNjZGZmMTVlYjZhODhiYzJmYzIxZWU2OTU3ODI2YmUxYTEyNWExOWU3YWUxMjFmZjExZDM1YTMxNWEwYjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6009P" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b63"), + "name" : "Fossil Q Founder FTW2115P Gen 2 Smart Watch, White", + "description" : "Fossil Q Founder FTW2115P Gen 2 Smart Watch, White", + "price" : "276", + "sku" : "Fossil Q Founder FTW2115P Gen 2 Smart Watch, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2115-Smart-Watches-491362958-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjMyNXxpbWFnZS9qcGVnfGltYWdlcy9oZDUvaGY0Lzg4OTQ3MzM1NDk1OTguanBnfGUyZDU3MzcxZjIxYzk1NDdhZDVjNTc5YWI5ZjAyM2Q4OTc1M2NiNjg4OTQxZGI5OWYwZDkyNTc0MDY0MGIxZWI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Founder" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2115P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b64"), + "name" : "Fossil Q Venture FTW6001P Gen 3 Smart Watch, Gold", + "description" : "Fossil Q Venture FTW6001P Gen 3 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil Q Venture FTW6001P Gen 3 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6001-Smart-Watches-491363014-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDc5MXxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaGZkLzg4OTQ3MjA0NDIzOTguanBnfGRjYzBhODU0ODU1OGEzN2M1NDViZjBiZTUwMzgzMDgwY2U5OWJlZjdkOGEyNzM2ODU5ZjA2YmIzZjE2OGRkYTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6001P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b65"), + "name" : "Fossil Q Nate FTW1114P Hybrid Smart Watch, Dark Brown", + "description" : "Fossil Q Nate FTW1114P Hybrid Smart Watch, Dark Brown", + "price" : "174", + "sku" : "Fossil Q Nate FTW1114P Hybrid Smart Watch, Dark Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1114-Smart-Watches-491362938-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTYwMHxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaDY2Lzg4OTQ3MjYzNDA2MzguanBnfGRlNDYxN2VkYjkyMTAyMmQ4OGU0MDc0MmNmZDkwZTc2NDZjZDE5ZDM2YTRlZGQyZmNkMTM4NWFiMTRkMmZlMjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1114P" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b66"), + "name" : "Fossil Q Tailor FTW1128P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Tailor FTW1128P Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil Q Tailor FTW1128P Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1128-Smart-Watches-491362946-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzUyMHxpbWFnZS9qcGVnfGltYWdlcy9oYzkvaGYyLzg4OTQ3MTQyODIwMTQuanBnfDU5MzY2ZTIwNmMwOTFlOGI0MGFlZmUwYWU4OWU5MjgyZGZhOWFiNjgzM2M1ODI4ZDg4YTliYWVlZDAzMTgyZTY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1128P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b67"), + "name" : "Fossil Q Founder FTW2119P Gen 2 Smart Watch, Dark Brown", + "description" : "Fossil Q Founder FTW2119P Gen 2 Smart Watch, Dark Brown", + "price" : "276", + "sku" : "Fossil Q Founder FTW2119P Gen 2 Smart Watch, Dark Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2119-Smart-Watches-491362961-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTk3MHxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaGI0Lzg4OTQ3MjQwNDY4NzguanBnfDgzNWRjY2MyNDExZGI3YjM3NjJlYTUxODljYzM2NzQ5YzgwMTZjYWVmZWNmZjkxYjdhZTc0MTczMjM5OTVlNGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Founder" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2119P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b68"), + "name" : "Fossil Q Venture FTW6002P Gen 3 Smart Watch, Rose Gold/ Blue", + "description" : "Fossil Q Venture FTW6002P Gen 3 Smart Watch, Rose Gold/ Blue", + "price" : "319", + "sku" : "Fossil Q Venture FTW6002P Gen 3 Smart Watch, Rose Gold/ Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6002-Smart-Watches-491363015-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Nzg1M3xpbWFnZS9qcGVnfGltYWdlcy9oNjUvaGIwLzg4OTQ3MzIyMzg4NzguanBnfGMyYjdiN2M2NWFmMTFkZWM5YWIyOTllMGZmYWVjZWE5ZjU1NTY5ZmJkOTRjNzA1ZDgwYTdkMzExZGY2MDFhNWQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6002P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue/ Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Blue" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b69"), + "name" : "Fossil Q Founder FTW2116P Gen 2 Smart Watch, Stainless Steel", + "description" : "Fossil Q Founder FTW2116P Gen 2 Smart Watch, Stainless Steel", + "price" : "290", + "sku" : "Fossil Q Founder FTW2116P Gen 2 Smart Watch, Stainless Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2116-Smart-Watches-491362959-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODIwNXxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDM3Lzg4OTQ3MjY5OTU5OTguanBnfDk2MDQxN2RkYjNiYjQ5NjM0ZGE3YTc0MjUxNTdjZWZiMjIwYzNkZWEyY2YzNzMzN2ZiZjE2OGYzYTQ2YTZhMjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Founder" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2116P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6a"), + "name" : "Michael Kors Dylan MKT5009 Smart Watch, Black", + "description" : "Michael Kors Dylan MKT5009 Smart Watch, Black", + "price" : "377", + "sku" : "Michael Kors Dylan MKT5009 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5009-Smart-Watches-491362909-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTIzNnxpbWFnZS9qcGVnfGltYWdlcy9oYWEvaGZlLzg4OTQ3MzkzMTY3NjYuanBnfDFiNWQ2NzA5YmRiNWExZDM5Yzg4MzEwMDdmZDQzZjYxNWJlMGExMDI3OWFkNGEwYmE3YWVkNDRiNGJhMDkwY2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "46 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6b"), + "name" : "Michael Kors Dylan MKT5010 Smart Watch, Gold", + "description" : "Michael Kors Dylan MKT5010 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael Kors Dylan MKT5010 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5010-Smart-Watches-491362905-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzAyOXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDVmLzg4OTQ3NDU4NzAzNjYuanBnfDEzYTdkM2NmZTQ2ZmIzZTk5ODhiOTRjYTk4MmE2MWJkOTY2NWQzNDcyZmYyYzFkYzkzNDZkYTZiZGI3NGY5MDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5010" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "46 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6c"), + "name" : "Michael Kors Bradshaw MKT5005 Smart Watch, Black", + "description" : "Michael Kors Bradshaw MKT5005 Smart Watch, Black", + "price" : "377", + "sku" : "Michael Kors Bradshaw MKT5005 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5005-Smart-Watches-491362903-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjExMnxpbWFnZS9qcGVnfGltYWdlcy9oNzMvaDAzLzg4OTQ3NDY4NTM0MDYuanBnfDliMzA4YzRiNzhmMGY5NjhjOTRkYzNmYWQyOGU0MzRiYmYyYzhkNjgxMjA2ZmY0M2NkMTE4NWM3NTQ1OWE2M2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5005" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android devices" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6d"), + "name" : "Fossil Q Venture FTW6006P Gen 3 Smart Watch, Gold", + "description" : "Fossil Q Venture FTW6006P Gen 3 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil Q Venture FTW6006P Gen 3 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6006-Smart-Watches-491363017-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDM0N3xpbWFnZS9qcGVnfGltYWdlcy9oYzAvaGIxLzg4OTQ3Mzk2NDQ0NDYuanBnfDJkNjg4YTc2ZWNlYjA2ZmI0MTAyMzZkNzUyYmVhZDI2NDhhOTA0NTZkZWI1YTBlNzQ0Njg5YTEwN2NmNzA5YmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6006P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6e"), + "name" : "Michael Kors Bradshaw MKT5001 Smart Watch, Gold", + "description" : "Michael Kors Bradshaw MKT5001 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael Kors Bradshaw MKT5001 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5001-Smart-Watches-491362907-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzM0MnxpbWFnZS9qcGVnfGltYWdlcy9oOGYvaDI2Lzg4OTQ3NDk1NDAzODIuanBnfDBlMzgxZjdjOTdkZWNkNzQ1ZjY2YTdmMDQ2MDg3YjlkNGU5NTAzYTQxNzFhOTk5OTdmY2I5YWU2ZDIzNjU3MTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6f"), + "name" : "Michael Kors Gage MKT4000 Hybrid Watch, Silver", + "description" : "Michael Kors Gage MKT4000 Hybrid Watch, Silver", + "price" : "319", + "sku" : "Michael Kors Gage MKT4000 Hybrid Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4000-Smart-Watches-491362901-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTc5MHxpbWFnZS9qcGVnfGltYWdlcy9oY2MvaDBmLzg4OTQ3NTQzMjQ1MTAuanBnfGRlNzlhOTJkMDQ2ODNiMjZmZDA4MDdlYzFkZDZmNGU1MTgxNThhZTMzZDQ2YWNmOTBmODcyZTFhYzk1YWZlMzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4000" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b70"), + "name" : "Michael Kors Slim Runway MKT4004 Hybrid Smart Watch, Silver", + "description" : "Michael Kors Slim Runway MKT4004 Hybrid Smart Watch, Silver", + "price" : "319", + "sku" : "Michael Kors Slim Runway MKT4004 Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4004-Smart-Watches-491362992-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTUyNHxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGJhLzg4OTQ3NTUzMDc1NTAuanBnfDc4ZTllZmYyOWQ1YmJlMzM4NDlkOTcxNjU4NzQ5MGI3ZTE0MjU0OTIzNTUwMWE5NTU0NjMxMTAwZjJkMTU2ZmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4004" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Size", + "attributeValue" : "41 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b71"), + "name" : "Michael Kors Gage MKT4001 Hybrid Smart Watch, Brown", + "description" : "Michael Kors Gage MKT4001 Hybrid Smart Watch, Brown", + "price" : "290", + "sku" : "Michael Kors Gage MKT4001 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4001-Smart-Watches-491362899-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTExNHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDUyLzg4OTQ3NTMzNDE0NzAuanBnfGIzYjczMzJlN2ZjMzEyMTY5NTUyN2U2MWNmNDdjODY2YzhiYTFmZGMxZjFlMTNhNGY2MzZhODFiMTkyNzc0NTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b72"), + "name" : "Michael Kors Slim Runway MKT4002 Hybrid Smart Watch, Gold", + "description" : "Michael Kors Slim Runway MKT4002 Hybrid Smart Watch, Gold", + "price" : "269", + "sku" : "Michael Kors Slim Runway MKT4002 Hybrid Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4002-Smart-Watches-491362900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjI4M3xpbWFnZS9qcGVnfGltYWdlcy9oNmEvaGE2Lzg4OTQ3NjE4NjExNTAuanBnfDQ1Mjc5ZGRiNzI5YmM3ZGU3M2RlYWNjN2NjZmNhYWZmNmFjNDViZTliYjhjYjcxOTBjYmI5YjQxY2U2MjllNmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4002" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "While (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b73"), + "name" : "Michael Kors Dylan MKT5011 Smart Watch, Black", + "description" : "Michael Kors Dylan MKT5011 Smart Watch, Black", + "price" : "377", + "sku" : "Michael Kors Dylan MKT5011 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5011-Smart-Watches-491362904-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzMxMHxpbWFnZS9qcGVnfGltYWdlcy9oMjEvaGZkLzg4OTQ3Njc5NTU5OTguanBnfDE4ZWY1ZWY2MDdkY2M5ODQ4YzRiMWM2MTMxMTI1NjBmZmNiZmFjOTgxMWJhZjIzODRlMjhlNzQ3NTNiNGNiNDU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5011" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b74"), + "name" : "Michael Kors Bradshaw MKT5003 Smart Watch, Gold", + "description" : "Michael Kors Bradshaw MKT5003 Smart Watch, Gold", + "price" : "403", + "sku" : "Michael Kors Bradshaw MKT5003 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5003-Smart-Watches-491362908-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODUzMnxpbWFnZS9qcGVnfGltYWdlcy9oNmMvaDNlLzg4OTQ3NzMxOTg4NzguanBnfDk3OGU1ZTQ3YjQ4YzQzMGFhYWViNWY3NTBhZTVmMzYzOWEzMDhjYmY1ZjE5NTQwY2FhYmVmODZkNDU0ZWYxMDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5003" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b75"), + "name" : "Fossil Q Jacqueline FTW5018P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Jacqueline FTW5018P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil Q Jacqueline FTW5018P Hybrid Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5018-Smart-Watches-491350708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzU4NHxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaDlkLzg4OTQ3Nzg0NDE3NTguanBnfDE0ZThmOGMzZDcwYjI1YTg0YWI0Njk0NzA4MDc4YWJiYzViZjQzMTEzMGYxYjYwODM5ZTNlNTllZWI5ODJiYTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5018P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b76"), + "name" : "Michael Kors Bradshaw MKT5007 Smart Watch, Brown", + "description" : "Michael Kors Bradshaw MKT5007 Smart Watch, Brown", + "price" : "377", + "sku" : "Michael Kors Bradshaw MKT5007 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5007-Smart-Watches-491362902-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzkxMnxpbWFnZS9qcGVnfGltYWdlcy9oNjAvaGYyLzg4OTQ3Njc0MzE3MTAuanBnfGMwNWQzNTEzN2Q1NDI0MWI1ZmY2OGM1MjBiYTg5NmFjZjVjMDE4NzRmM2Y2M2E2NzM0MzdiMGY4NTk4MDExMWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5007" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b77"), + "name" : "Fossil Q Wander FTW2103P Gen 2 Smart Watch, Black", + "description" : "Fossil Q Wander FTW2103P Gen 2 Smart Watch, Black", + "price" : "276", + "sku" : "Fossil Q Wander FTW2103P Gen 2 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2103-Smart-Watches-491362949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjQ5MXxpbWFnZS9qcGVnfGltYWdlcy9oZTAvaGIxLzg4OTQ3NzU4MjAzMTguanBnfGViOGE3ZGI1YWRiZGY1NzA5MmVjN2U1NjRiZjkyYzZiOGNmZjgwOGYzMTVkYWE3MTU2YzJmMjQ0MTE4MDMyY2U", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2103P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b78"), + "name" : "Fossil Q Marshal FTW2107P Gen 2 Smart Watch, Black", + "description" : "Fossil Q Marshal FTW2107P Gen 2 Smart Watch, Black", + "price" : "276", + "sku" : "Fossil Q Marshal FTW2107P Gen 2 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2107-Smart-Watches-491362951-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTUxN3xpbWFnZS9qcGVnfGltYWdlcy9oYmMvaGJhLzg4OTQ3ODUyNTc1MDIuanBnfDI0ZWU3MjI1ODU1OGY3MmQ5YmMyM2Q2OWNhZDM1MDQ5YjExZjY0ZDExYzA4MDc2NzhjYjU5ZjQ3NDg3MDc4Yjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Marshal" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2107P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b79"), + "name" : "Fossil Q Marshal FTW2108P Gen 2 Smart Watch, Smoke", + "description" : "Fossil Q Marshal FTW2108P Gen 2 Smart Watch, Smoke", + "price" : "290", + "sku" : "Fossil Q Marshal FTW2108P Gen 2 Smart Watch, Smoke", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2108-Smart-Watches-491362952-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODM4NHxpbWFnZS9qcGVnfGltYWdlcy9oOTIvaGRlLzg4OTQ3ODI3NjcxMzQuanBnfGJmOGJlODE5MjQwZTY3ZTIxMzNlMDQyZWZhMGY3NTVhZmIzMDA5NjdlYjU4YjRhMTI5NmZmN2Q4ZDBmZmFlOTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Marshal" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2108P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Smoke" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Grey" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7a"), + "name" : "Apple Watch Series 2 - 42mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 2 - 42mm Space Gray Aluminum Case with Black Sport Band", + "price" : "486", + "sku" : "Apple Watch Series 2 - 42mm Space Gray Aluminum Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Series-2-42mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band-491277196-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTYxNnxpbWFnZS9qcGVnfGltYWdlcy9oYmEvaGQ0Lzg5MjkzNzgxMDc0MjIuanBnfDNkYzJhMjYzMzViNDZmMmZmOTZhNWQ3NGQ0OTc3ZjlkMzg1NWViMDY5ZGM0Y2I5YWE1YzZlYjVkNWQ0NGUzZGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 2" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "36.4 x 11.4 x 42.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Space Gray Aluminum Case
  • Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter (Included with Series 2 only)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7b"), + "name" : "Misfit Phase MIS5007 Smart Watch, Brown", + "description" : "Misfit Phase MIS5007 Smart Watch, Brown", + "price" : "203", + "sku" : "Misfit Phase MIS5007 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS5007-Smart-Watches-491350687-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDYyOXxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDk0Lzg4ODk4MDExNzkxNjYuanBnfDliZTEwNjgzZmI0YzVkZTg1ZmQxOTEzNGE5N2JiNTk5M2UwMGI2ZmI5YmVmY2ExMmIyNzQ3ZmU2MjU1YmRhYzc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MIS5007" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "manufacturer" : "Misfit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7c"), + "name" : "Misfit Phase MIS5000 Hybrid Smart Watch, Black", + "description" : "Misfit Phase MIS5000 Hybrid Smart Watch, Black", + "price" : "182", + "sku" : "Misfit Phase MIS5000 Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS5000-Smart-Watches-491350685-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE1NHxpbWFnZS9qcGVnfGltYWdlcy9oZmQvaGZmLzg4ODk4MzAwMTUwMDYuanBnfDlmZGM5MzBlNDczYjlkMmI4YjdiZWJkZGU0ZDdjMjM2OWQ1NzE3Mjg2MzY0NGNkNmJhNjE0MzI2ZjgzYjc3MDc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MIS5000" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "manufacturer" : "Misfit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7d"), + "name" : "Fossil Q X Cory Richards FTW2120SETP Smart Watch, Silver/Brown", + "description" : "Fossil Q X Cory Richards FTW2120SETP Smart Watch, Silver/Brown", + "price" : "348", + "sku" : "Fossil Q X Cory Richards FTW2120SETP Smart Watch, Silver/Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2120SET-Smart-Watches-491350699-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODU5OXxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaDhhLzg4OTQ2NDU0NjkyMTQuanBnfDU4MWU1MDM1ZGIyOTY5MjA2NzI0NjJiZmJhODM0NzNmYWVjNjk5NWJmNjc0YTQ3NWVlN2FhMGVmYzhhNzhkYWU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q X Cory Richards" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2120SETP" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver/Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7e"), + "name" : "Fossil Q Accomplice FTW1201P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Accomplice FTW1201P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil Q Accomplice FTW1201P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1201-Smart-Watches-491350696-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTAzM3xpbWFnZS9qcGVnfGltYWdlcy9oODQvaDdhLzg4OTQ2NTE2Mjk1OTguanBnfGU3MjE3MDI5ZTRjOGZmOGYwMzUwYmI3ODNmODdhOGU3OTA5MWI4ZGU5OWQ2OGNhYmQ3NmJjZjMzOGRhZTVlMjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1201P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7f"), + "name" : "Fossil Q Accomplice FTW1202P Hybrid Smart Watch, Silver", + "description" : "Fossil Q Accomplice FTW1202P Hybrid Smart Watch, Silver", + "price" : "203", + "sku" : "Fossil Q Accomplice FTW1202P Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1202-Smart-Watches-491350697-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzA3MnxpbWFnZS9qcGVnfGltYWdlcy9oYmEvaDFiLzg4OTQ2NDU3OTY4OTQuanBnfDIzOTYzNjI2ZTE2NDQxZjNkNmViYWYxY2UxNTI4MzI4YTI1NzUzMWFkMTRjNTQwZTk1MmIzNjgwNTViNmQzMGQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1202P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b80"), + "name" : "Fossil Q Accomplice FTW1203P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Accomplice FTW1203P Hybrid Smart Watch, Blue", + "price" : "203", + "sku" : "Fossil Q Accomplice FTW1203P Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1203-Smart-Watches-491350698-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODE1M3xpbWFnZS9qcGVnfGltYWdlcy9oMDIvaGM4Lzg4OTQ2NTM5MjMzNTguanBnfGM5MTIzNzliNGY3NzYyODdjNDliOTM5ODQ4NDJkNzE3ZmZjNDIxMGViNzNiMGUxNzljMzIwMDYxOWIxN2Q4OTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1203P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b81"), + "name" : "Fossil Q Activist FTW1204 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Activist FTW1204 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil Q Activist FTW1204 Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1204-Smart-Watches-491350700-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODM0NHxpbWFnZS9qcGVnfGltYWdlcy9oNTkvaDlhLzg4OTQ2NTc4NTU1MTguanBnfDZiZWY4ZWE2NGUyM2VlNjEwNGQ3MjMxZDU2YTQ5NjIyOWE1YjM5YmMzYTAxN2E5NjczMTJmYjk4YTNlZDE2ODI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Activist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1204" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b82"), + "name" : "Fossil Q Grant FTW1157P Hybrid Smart Watch, Black", + "description" : "Fossil Q Grant FTW1157P Hybrid Smart Watch, Black", + "price" : "189", + "sku" : "Fossil Q Grant FTW1157P Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1157-Smart-Watches-491350701-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzI0MXxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDljLzg4OTQ2ODYyMzI2MDYuanBnfDY3OTE2MGFmNWVjZTk0YjM5Zjk4YjFkYjk1NjdkYTY0Y2JkOWJhNmFiMTYyNDkyNjUwYTcxNDMyNGU1ZjcxMmI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1157P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b83"), + "name" : "Fossil Q Grant FTW1140P Hybrid Smart Watch, Blue/Gray", + "description" : "Fossil Q Grant FTW1140P Hybrid Smart Watch, Blue/Gray", + "price" : "203", + "sku" : "Fossil Q Grant FTW1140P Hybrid Smart Watch, Blue/Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1140-Smart-Watches-491350691-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjA3MHxpbWFnZS9qcGVnfGltYWdlcy9oODUvaDUwLzg4OTQ2OTA0OTI0NDYuanBnfDc0ZDc3YjgyYTFjZmFhZjNkNTlhMmIxMzJlZGU0ZmQ4MmVjNTIwOTRiZGZmZjdlYWMwOTE2ZTA2ODY4NWM2YjI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1140P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue/Gray" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b84"), + "name" : "Fossil Q Neely Cabernet FTW5003P Hybrid Smart Watch, Red", + "description" : "Fossil Q Neely Cabernet FTW5003P Hybrid Smart Watch, Red", + "price" : "189", + "sku" : "Fossil Q Neely Cabernet FTW5003P Hybrid Smart Watch, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5003-Smart-Watches-491350702-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzA4OHxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDVhLzg4OTQ3MDMyNzE5NjYuanBnfDI5NGI5NmVkOWQ4Mjc1MGExZWFkNmNlZTRhNzA1MDk3ZmRlYmMwNjFmOGRiOTc1Y2YxMzY0MmQwMDg2ZWNhYTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Neely Cabernet" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5003P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b85"), + "name" : "Fossil Q Tailor FTW1144P Hybrid Smart Watch, Gold", + "description" : "Fossil Q Tailor FTW1144P Hybrid Smart Watch, Gold", + "price" : "203", + "sku" : "Fossil Q Tailor FTW1144P Hybrid Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1144-Smart-Watches-491350694-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzU0MnxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDUwLzg4OTQ3MTQ2MDk2OTQuanBnfDYzMzFlZjVlOTlhMzhmMTAyNmY2ODY4NTg1ZDJlYmZhYzRkNjhkMzgwNWNkMmVmNjU0Yzc3MjYyYWY0MGY4ZDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1144P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b86"), + "name" : "Fossil Q Nate FTW1142P Hybrid Smart Watch, Gold", + "description" : "Fossil Q Nate FTW1142P Hybrid Smart Watch, Gold", + "price" : "203", + "sku" : "Fossil Q Nate FTW1142P Hybrid Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1142-Smart-Watches-491350693-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTc3NHxpbWFnZS9qcGVnfGltYWdlcy9oMmEvaDYyLzg4OTQ3Mzk5NzIxMjYuanBnfGRjNzI2MWZhNTMxZWU1MDdmNGMzZTUxODkyNTBiMzllZjFhNTQzOWIzZGUyNTM5OTAyYjE4NWEwMTkzNTlkMTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1142P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b87"), + "name" : "Fossil Q Modern Pursuit FTW1135P Hybrid Smart Watch, White", + "description" : "Fossil Q Modern Pursuit FTW1135P Hybrid Smart Watch, White", + "price" : "174", + "sku" : "Fossil Q Modern Pursuit FTW1135P Hybrid Smart Watch, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1135-Smart-Watches-491350689-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDYzMHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGE0Lzg4OTQ3NjUxMzc5NTAuanBnfDk0MGU1NjU2M2ExYWY0MmYzNTA4NWQxYjhlMTJhNzRiM2IyM2Y2MGViNWJlMzQ0MWM5YTg1ODgzNDgwY2M4YzU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Modern Pursuit" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1135P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b88"), + "name" : "Fossil Q Scarlette FTW5015P Hybrid Smart Watch, Silver", + "description" : "Fossil Q Scarlette FTW5015P Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil Q Scarlette FTW5015P Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5015-Smart-Watches-491350705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzMzM3xpbWFnZS9qcGVnfGltYWdlcy9oMDAvaGZhLzg4OTQ3Njk1OTQzOTguanBnfDJlMGMzZGRiMzY0ZmNkNTgxODUzYjJhMGJkNDc3YjJmZDU2YmUxZDNjYjc5NWYzZGZiNTRmYzAzMGQ3MTkxZjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Scarlette" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5015P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b89"), + "name" : "Fossil Q Scarlette FTW5016P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Scarlette FTW5016P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil Q Scarlette FTW5016P Hybrid Smart Watch, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5016-Smart-Watches-491350706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI2MnxpbWFnZS9qcGVnfGltYWdlcy9oZmUvaDI2Lzg4OTQ3ODAwODAxNTguanBnfDQwMDVkYTdmOGM2OTA3Mzk5ODg1NTcyN2RhOGJlZjg2NjVjMzFlM2IzZWNjNzc3NTI1OGUxYzZiNDlmODljMDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Scarlette" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5016P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8a"), + "name" : "Fossil Q Jacqueline FTW5012P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Jacqueline FTW5012P Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil Q Jacqueline FTW5012P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5012-Smart-Watches-491350704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTAxNHxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaDQ1Lzg4OTQ3NzQ1MDk1OTguanBnfDRhOGRjMmU0OWZiM2VkYWI4NGRmZTgxMDJiNDAyNjMxNDgxOTA4YWYwMmFmYTVhOTdkZjVlOWQxMGJjNmQxOTY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5012P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8b"), + "name" : "Fossil Q Commuter FTW1153 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Commuter FTW1153 Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil Q Commuter FTW1153 Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1153-Smart-Watches-491363025-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE2OHxpbWFnZS9qcGVnfGltYWdlcy9oYjAvaGM0Lzg4OTQ2Njc2ODU5MTguanBnfDZlM2FmYjYwMWUzODQzMGJmOWNmMTM3ZThmODg1ZDMwMWQyOTY0NmMzMDE0YzQzODY5NGJmZDRiZWFjYmMyNGE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1153" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8c"), + "name" : "Fossil Q Grant FTW1122P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1122P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil Q Grant FTW1122P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1122-Smart-Watches-491363105-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTM5MXxpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDY1Lzg4OTQ2NzMxMjU0MDYuanBnfDEyNTVlNmEwYmIwNDY3NDUxOGY4ZjQwOWU5MzY0MWRjN2EzNTg0ZWYyMzU0NGU2NmU5NmM0YTg5MzBmOGEyMjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1122P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8d"), + "name" : "Fossil Q Grant FTW1155 Hybrid Smart Watch, Blue", + "description" : "Fossil Q Grant FTW1155 Hybrid Smart Watch, Blue", + "price" : "189", + "sku" : "Fossil Q Grant FTW1155 Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1155-Smart-Watches-491363027-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTk1OXxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDM0Lzg4OTQ2Nzc3MTI5MjYuanBnfDQyMmQ4MWIxNzVkYjhkOWNlM2QxNjhjOGFkNjY5ZjhiZGVlMzhlYWVhZjllZTY2ZWI3NzhiYzRmNjVjMDM1Zjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1155" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8e"), + "name" : "Fossil Q Grant FTW1139P Hybrid Smart Watch, Black/Smoke", + "description" : "Fossil Q Grant FTW1139P Hybrid Smart Watch, Black/Smoke", + "price" : "203", + "sku" : "Fossil Q Grant FTW1139P Hybrid Smart Watch, Black/Smoke", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1139-Smart-Watches-491363106-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDEyMXxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGJjLzg4OTQ2NzM3ODA3NjYuanBnfDc1NzcxYjEzNjg3OTliMzljOTZmZWM1NWFiZjllOTdmZTk4MTZkYWU1ZmViODMyODI0YmJlZjI4MTkyMWE0ZTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1139P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/Smoke" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8f"), + "name" : "Fossil Q Grant FTW1156P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1156P Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil Q Grant FTW1156P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1156-Smart-Watches-491363028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODY0NXxpbWFnZS9qcGVnfGltYWdlcy9oZTUvaDExLzg4OTQ2NzkwMjM2NDYuanBnfGI1MDAzYzE2YTg2ZWMyNTM1ODg5Yjk3OGUwNzc2YjA4OWM0NjRiYjdlNjE2ZmVlMTRiYzBmNzUxODdiODMwYWU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1156P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b90"), + "name" : "Fossil Q Grant FTW1158P Hybrid Smart Watch, Silver", + "description" : "Fossil Q Grant FTW1158P Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil Q Grant FTW1158P Hybrid Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1158-Smart-Watches-491363038-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTg1M3xpbWFnZS9qcGVnfGltYWdlcy9oYjUvaDM1Lzg4OTQ2ODM3NDIyMzguanBnfDBiZTg4OGE3NGQyNTY4ZmEwMDU5ZjIxN2IyNTU3MjQ4ZTE4Zjg1ZjU1MGQ4MDc5MTc1ODNmZjg0NDlmOGY3MzY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1158P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iOS 9.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b91"), + "name" : "Fossil Q Grant FTW1118P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1118P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil Q Grant FTW1118P Hybrid Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1118-Smart-Watches-491363104-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODkzNnxpbWFnZS9qcGVnfGltYWdlcy9oMDcvaGYyLzg4OTQ2OTI3ODYyMDYuanBnfDgyMGI5MzAxNTQ5MDlmOGQ5NmRjMzc4NDgwYTg0YWY5OTFmYTMxZmZmNjZlZmJmMGJkYjViNGE0OTZlNmU5ZDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1118P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b92"), + "name" : "Fossil Q Neely FTW5008P Hybrid Smart Watch, Black", + "description" : "Fossil Q Neely FTW5008P Hybrid Smart Watch, Black", + "price" : "189", + "sku" : "Fossil Q Neely FTW5008P Hybrid Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5008-Smart-Watches-491363037-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjgxNnxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGE5Lzg4OTQ3MTM5NTQzMzQuanBnfDM5ODkyZmFlNTBiYzg4OTU4ODJlYjRjMGJhYTk1NWRmMmNhMDc0OWQ4ODJiZGU5MjZkMjA0OGRkY2NmOGU1ZWQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Neely" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5008P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b93"), + "name" : "Fossil Q Nate FTW1160P Hybrid Smart Watch, Gunmetal", + "description" : "Fossil Q Nate FTW1160P Hybrid Smart Watch, Gunmetal", + "price" : "211", + "sku" : "Fossil Q Nate FTW1160P Hybrid Smart Watch, Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1160-Smart-Watches-491363030-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTM5MnxpbWFnZS9qcGVnfGltYWdlcy9oZWQvaDgwLzg4OTQ3Mjk5NDUxMTguanBnfDg2N2U5MDI5Mjc1MDNjMjk3NDgxNTM2OWIyM2MzYjNiYTcwNzg1YTUwNjRlYWMxNmRjMGI4YWUzZDViODZkNDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1160P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gunmetal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b94"), + "name" : "Fossil Q Nate FTW1159P Hybrid Smart Watch, Dark Brown", + "description" : "Fossil Q Nate FTW1159P Hybrid Smart Watch, Dark Brown", + "price" : "189", + "sku" : "Fossil Q Nate FTW1159P Hybrid Smart Watch, Dark Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1159-Smart-Watches-491363029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDU4MnxpbWFnZS9qcGVnfGltYWdlcy9oZTgvaDYyLzg4OTQ3MzQ1MzI2MzguanBnfDE2MzJlMzQwNTM0OTMwMTNkZmM1NWQ4YmMzMWRlNGVkMjFlZDY4N2EzOTAwZTQzZGUyMzY4MmJiZDEwOTZhMGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1159P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b95"), + "name" : "Fossil Q Jacqueline FTW5013P Hybrid Smart Watch", + "description" : "Fossil Q Jacqueline FTW5013P Hybrid Smart Watch", + "price" : "189", + "sku" : "Fossil Q Jacqueline FTW5013P Hybrid Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5013-Smart-Watches-491363036-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODM5NHxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaGY4Lzg4OTQ3Nzk3NTI0NzguanBnfGMyOWM3ZTBmYTEzZTVlMjAxZWE0ZmUwODYwODFmNWIwZWJiMzJjYTRjNTg5NDRkMzUyMTRmYzY4MzYzMmFlOGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5013P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b96"), + "name" : "Fossil Q Jacqueline FTW5014P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Jacqueline FTW5014P Hybrid Smart Watch, Blue", + "price" : "189", + "sku" : "Fossil Q Jacqueline FTW5014P Hybrid Smart Watch, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5014-Smart-Watches-491363035-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTkzN3xpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGJiLzg4OTQ3ODM5NDY3ODIuanBnfDYyNWIxNTUwOTNlNGM3NjAyMGRjZGVhZmEyOGNiOWU4Mzg3YTRlN2YxYmNhNmM2MjViYmY4ZTI2YjIyYzQ1NGU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5014P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b97"), + "name" : "Apple Watch Series 3 - 42mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 3 - 42mm Space Gray Aluminum Case with Black Sport Band", + "price" : "596", + "sku" : "Apple Watch Series 3 - 42mm Space Gray Aluminum Case with Black Sport Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Series-3-42mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band-491379734-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTYwNnxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaGJmLzg5MzQwMzk3MTU4NzAuanBnfGU1MmY2ZmIxOWQwMDcyZjk4ZDBhNWQxYTg3M2NkMWM5MmEyYTVjYmI0MmUzM2U0YjQ1ZGZlMDNlODYxNDIwNzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 4" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "42mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Built-in GPS and GLONASS
  • Faster dual-core processor
  • W2 chip
  • Barometric altimeter
  • Heart rate sensor
  • Ion-X strengthened glass
  • Ceramic back
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Space Gray Aluminum Case
  • Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b98"), + "name" : "SKAGEN Falster SKT5001 Smart Watch, Falster Black Leather", + "description" : "SKAGEN Falster SKT5001 Smart Watch, Falster Black Leather", + "price" : "290", + "sku" : "SKAGEN Falster SKT5001 Smart Watch, Falster Black Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5001-Smart-Watches-491378296-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzQwN3xpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDBmLzg5Nzg1OTgxOTkzMjYuanBnfGJiZjE5ZTBjNmI3ZGFjMzBlNzlmYmUwY2E5NTc4MjZkNTllNGRkYWUzZWRiZTk3YTU0YzVhMWUzNGRjZWFkODM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b99"), + "name" : "SKAGEN Falster SKT5000 Smart Watch, Falster Steel Mesh", + "description" : "SKAGEN Falster SKT5000 Smart Watch, Falster Steel Mesh", + "price" : "319", + "sku" : "SKAGEN Falster SKT5000 Smart Watch, Falster Steel Mesh", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5000-Smart-Watches-491378295-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDU5OHxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDFjLzg5Nzg1OTMyODQxMjYuanBnfGVhNDY3YjJmYTY2ZjU0ODRiM2JhMjcxMzM0ODNjOWUyOTllNTRiZTI2NmFmNDg4OGM1YjU3MzIwMDA3YmI4NGI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5000" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9a"), + "name" : "Diesel On DZT1009 Smart Watch", + "description" : "Diesel On DZT1009 Smart Watch", + "price" : "247", + "sku" : "Diesel On DZT1009 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Diesel-DZT1009-Smart-Watches-491378404-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTAzNXxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaDdkLzg5Nzg1ODYyNzE3NzQuanBnfDk4YmY3ZDU3NWM3Nzk2NGUzN2QzZGI0NTg1MWIwNGY4YWM1NjFmZDc2NjE3OGQ2YmUxNjU4NGZmY2IxNzRiMzE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT1009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "48 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Diesel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9b"), + "name" : "SKAGEN Falster SKT5003 Smart Watch, Falster Brown Leather", + "description" : "SKAGEN Falster SKT5003 Smart Watch, Falster Brown Leather", + "price" : "290", + "sku" : "SKAGEN Falster SKT5003 Smart Watch, Falster Brown Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5003-Smart-Watches-491378298-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjY0OXxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGM3Lzg5Nzg2MDc1NzA5NzQuanBnfDA1YjNmZjAyNjk2NTQ5ODM5MDYzMDEzZjY1NTE0MjczMjMwZTMyYzY5ZjhjMTIyN2JhZDBiOTYxNWNjOGZkNGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5003" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9c"), + "name" : "SKAGEN Falster SKT5002 Smart Watch, Falster Rose Gold Tone Steel Mesh", + "description" : "SKAGEN Falster SKT5002 Smart Watch, Falster Rose Gold Tone Steel Mesh", + "price" : "319", + "sku" : "SKAGEN Falster SKT5002 Smart Watch, Falster Rose Gold Tone Steel Mesh", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5002-Smart-Watches-491378297-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzE1NHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDU0Lzg5Nzg2MDM1NzMyNzguanBnfGI1NDBmZGM4MTYzOTE1ZmU4ZWIzYzk0MTVhM2VmOGMzYzY1Y2IyNzQ5MjY3Mjk4OTAzMDdhMTE5NWUzMmFjM2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5002" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9d"), + "name" : "Michael Kors Access MKT5040 Smart Watch", + "description" : "Michael Kors Access MKT5040 Smart Watch", + "price" : "435", + "sku" : "Michael Kors Access MKT5040 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5040-Smart-Watches-491378193-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODk0OXxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDhiLzg5Nzg1ODc2NDgwMzAuanBnfGZiOGY0NjAzN2ZjODhkYzlkZWE5MDkxNDU2YjBlYjcyMzI5NTkxZGIyYzRkODVjMWUwY2EzZjBkMDVmNDE0YmQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT5040" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Phones and iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Powered by Android Wear
  • Compatible with iPhone and Android phones
  • Oversized
  • Silver-Tone/Rose Gold-Tone Stainless Steel
  • 42mm Case
  • AMOLED Display: Active-Matrix Organic Light-Emitting Diode
  • Social Media Updates 
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9e"), + "name" : "Michael Kors Access MKT5039 Smart Watch, Sofie Pavé Gold-Tone and Silicone", + "description" : "Michael Kors Access MKT5039 Smart Watch, Sofie Pavé Gold-Tone and Silicone", + "price" : "406", + "sku" : "Michael Kors Access MKT5039 Smart Watch, Sofie Pavé Gold-Tone and Silicone", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5039-Smart-Watches-491378194-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE1OXxpbWFnZS9qcGVnfGltYWdlcy9oMDAvaDIzLzg5Nzg1OTU2NDM0MjIuanBnfGM5ZjhiZDU2MGU5NjkwNTQxMDY4M2QxNTcwMTM0Y2FiNzE2MzhhYjA0NmQ5YzlkY2ZmNzZhNWY3MmFlNTg3N2Y", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT5039" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9f"), + "name" : "Michael Kors Access MKT4026 Smart Watch, Quartz Stainless Steel and Leather", + "description" : "Michael Kors Access MKT4026 Smart Watch, Quartz Stainless Steel and Leather", + "price" : "290", + "sku" : "Michael Kors Access MKT4026 Smart Watch, Quartz Stainless Steel and Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4026-Smart-Watches-491378196-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzEzNXxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDBmLzg5OTk0NjM2MTY1NDIuanBnfGM1ZThiZjEzNGUwMTljYjFkMWRiODMwYjJiOWE5ZDk0Y2JlMzlmY2YxNzlhNjI3NzVkOWRlN2I2ZTg3MzZkMjQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT4026" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "48 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba0"), + "name" : "Michael Kors Access MKT4025 Smart Watch, Quartz Stainless Steel and Leather", + "description" : "Michael Kors Access MKT4025 Smart Watch, Quartz Stainless Steel and Leather", + "price" : "290", + "sku" : "Michael Kors Access MKT4025 Smart Watch, Quartz Stainless Steel and Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4025-Smart-Watches-491378195-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTk3NHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDkzLzg5OTk0NjMyODg4NjIuanBnfDQ4N2FmZjU0NjE3MjI2OTEwZDI4ODI5ODNkYzI3Y2U5MjUxMjhjM2NlNDM1NTVjNTQxODZiMjVmZmMyZjExYTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT4025" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "48 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba1"), + "name" : "Fitbit Versa Lite FB415SRLV Smart Watch", + "description" : "Fitbit Versa Lite FB415SRLV Smart Watch", + "price" : "232", + "sku" : "Fitbit Versa Lite FB415SRLV Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415SRLV-Smart-Watches-491550912-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTU0N3xpbWFnZS9qcGVnfGltYWdlcy9oZjQvaDYzLzkxMjI3MjcxMzMyMTQuanBnfGEyYWM4NTY3NDc0NmJiMTcyZTNmNjZiMjIwNWI5NmY0MWRlYzRjMDM3N2FjMmU5OTRkNWJlNDQ5ZjE4MDcxZDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415SRLV" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Lilac/Silver Aluminum" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac/Silver Aluminum" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba2"), + "name" : "Fitbit Versa Lite FB415SRWT Smart Watch", + "description" : "Fitbit Versa Lite FB415SRWT Smart Watch", + "price" : "232", + "sku" : "Fitbit Versa Lite FB415SRWT Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415SRWT-Smart-Watches-491550913-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDIxNHxpbWFnZS9qcGVnfGltYWdlcy9oODMvaDY1LzkxMjI3MjYwODQ2MzguanBnfDMwN2RkNzQyZGVlN2YyZGIzNDEzMTAxMzkyMjRiMDUzYjM2MThiOTZjYWM2MzliOTBjNzJhNGE2NDZlYWI5MmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415SRWT" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White/Silver Aluminum" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Silver Aluminum" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba3"), + "name" : "Fitbit Versa Lite FB415PMPM Smart Watch", + "description" : "Fitbit Versa Lite FB415PMPM Smart Watch", + "price" : "232", + "sku" : "Fitbit Versa Lite FB415PMPM Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415PMPM-Smart-Watches-491550910-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDM5MnxpbWFnZS9qcGVnfGltYWdlcy9oZDcvaGViLzkxMjI3MjE0OTcxMTguanBnfDUwNmEyOTAxOGY4MTVjMGRiMmJjMzBjNmMyMTViYTExODJlMTNhZmEwNmNiNTA2ZGQwZWZkZDFmYjUzZGFjMmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415PMPM" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Mulberry" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mulberry" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba4"), + "name" : "Skagen SKT1412 Smart Watch", + "description" : "Skagen SKT1412 Smart Watch", + "price" : "196", + "sku" : "Skagen SKT1412 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1412-Smart-Watches-491550748-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTk3fGltYWdlL2pwZWd8aW1hZ2VzL2g5Mi9oZDMvOTExNzM1NjY4NzM5MC5qcGd8NmIzN2M5Y2MzY2I3YjBmMWU1YzQ2OGQ2OWM4NDM1ZWYwZmQzYzBiYTQ1MmEwYTIwYzA0MzI0ZjMyMDBlODQ1MA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1412" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Genuine Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0 or higher" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial Colour)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba5"), + "name" : "Skagen SKT1413 Smart Watch", + "description" : "Skagen SKT1413 Smart Watch", + "price" : "211", + "sku" : "Skagen SKT1413 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1413-Smart-Watches-491550749-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDU5fGltYWdlL2pwZWd8aW1hZ2VzL2hjZS9oNzgvOTExNzM1NTM3NjY3MC5qcGd8ZWY5YmE0OGNkYjdjMzllYjBmZmYwZDVlMDY5NjE0ZDY4ZmJlM2UwMjY3Y2Q0MjlmZDhkNWY2MjFkNWE1YTYxNg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1413" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0 or higher" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial Colour)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba6"), + "name" : "Fossil FTW5033 Smart Watch", + "description" : "Fossil FTW5033 Smart Watch", + "price" : "196", + "sku" : "Fossil FTW5033 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW5033-Smart-Watches-491550754-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTgwfGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oZDYvOTExNzM1Mjc1NTIzMC5qcGd8MjRiNjIxOWIzOGNiOTk2ZGM3NDBjMjhjZjYxZjI3NDRiYjZiNmY1MWU5MzY2YzExZjcyYTgxYzc4YzRhZWQzZA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW5033" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "12 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Case Diameter: 36mm
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba7"), + "name" : "Fossil FTW5023 Smart Watch", + "description" : "Fossil FTW5023 Smart Watch", + "price" : "174", + "sku" : "Fossil FTW5023 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW5023-Smart-Watches-491550753-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODQ0fGltYWdlL2pwZWd8aW1hZ2VzL2hkZS9oODYvOTExNzM1MjQyNzU1MC5qcGd8NjJjNGU1YjA3Mjg5YmY1Njg3NzlmMWE3OWFiMzhkN2FiZTg4NzE4ZmZkZTNhMzcwYmMyMjU5M2JhNGY1ZTJmMQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW5023" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather Calfskin" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Size", + "attributeValue" : "38 mm x 41 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver - Dial Colour" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 Month" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba8"), + "name" : "Fossil FTW5034 Smart Watch", + "description" : "Fossil FTW5034 Smart Watch", + "price" : "196", + "sku" : "Fossil FTW5034 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW5034-Smart-Watches-491550755-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDM4fGltYWdlL2pwZWd8aW1hZ2VzL2g4Yy9oZDgvOTExNzM1MDc4OTE1MC5qcGd8NjdjZGQwZjkxZDZmNWY1NThiN2FhMDJmZDkwOWYwMjA3MDM4Y2E1YzhlYjNlNWY3MTU4MTU3MDIxYjFjODQ5Mg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW5034" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ and iOS 9.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "12 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba9"), + "name" : "Fossil FTW6010 Smart Watch", + "description" : "Fossil FTW6010 Smart Watch", + "price" : "319", + "sku" : "Fossil FTW6010 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW6010-Smart-Watches-491550757-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTAyfGltYWdlL2pwZWd8aW1hZ2VzL2gxNy9oNmMvOTExNzM1MDQ2MTQ3MC5qcGd8NWMxZjc2ODI2NDlmMmZlNGYxZWZiZWYxY2EwZTM2ODA0NjIwNjUyNTgwZDJkNDU5Yzg2MjY5ZjZlZWNlYzZkZA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6010" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial Colour)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637baa"), + "name" : "Skagen SKT1400 Smart Watch", + "description" : "Skagen SKT1400 Smart Watch", + "price" : "211", + "sku" : "Skagen SKT1400 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1400-Smart-Watch-491550746-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM2N3xpbWFnZS9qcGVnfGltYWdlcy9oNTQvaDUzLzkxMjgxMjk0OTUwNzAuanBnfDgzZjk2ZGY1MzY3YWEzMjRiMDU1ZTk0NWNmNzA1OGVmMDViNmMwODIwMmUwNDcyOTBmOTQ0MjQxMjZhYmQ0MTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1400" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Case Thickness: 1.2 cm
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bab"), + "name" : "Skagen SKT1404 Smart Watch", + "description" : "Skagen SKT1404 Smart Watch", + "price" : "211", + "sku" : "Skagen SKT1404 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1404-Smart-Watch-491550747-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjQyfGltYWdlL2pwZWd8aW1hZ2VzL2hkZC9oNzIvOTEyODEzMDE1MDQzMC5qcGd8OWRhZjU2NzFiMDIwYWQzZGM1ODkwY2ZmYjIxNGE5N2VmZjMyODcyYjQ1NmUwNmQ2NWQzNjViM2ZjZDhkNTZjMg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1404" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Case Thickness: 1.2 cm
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bac"), + "name" : "Fossil Q Gen 4 Hr FTW4015 Smart Watch, Brown", + "description" : "Fossil Q Gen 4 Hr FTW4015 Smart Watch, Brown", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW4015 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4015-Smart-Watch-491503420-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzI4fGltYWdlL2pwZWd8aW1hZ2VzL2hmZC9oZmYvOTA4MzM0OTI3MDU1OC5qcGd8YmU1Y2RiOTJiMWIyNWQyYmExNmM4MDQyMWRlYTgyZDdhNzZmZGRlZWEwM2QwNjFiMDY2ODg5MTQ2MTVlMGY4NQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4015" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bad"), + "name" : "Fossil Gen 4 Venture HR FTW6012 Smart Watch, Gold", + "description" : "Fossil Gen 4 Venture HR FTW6012 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil Gen 4 Venture HR FTW6012 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6012-Smart-Watch-491503425-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Nzg1fGltYWdlL2pwZWd8aW1hZ2VzL2g4MC9oM2UvOTA4MzM1NDcxMDA0Ni5qcGd8MTZiMzZmOWMyMzdmYTNjOTU1ZjA3MjhhYmIzMGQwOTI1NGJhNzkwMzA2YzgxOGRmMzMxNzczZDMzMzQ4OWZjNA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel Plated" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart Rate Tracking" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bae"), + "name" : "Fossil Q Gen 4 Hr FTW6016 Smart Watch, Grey", + "description" : "Fossil Q Gen 4 Hr FTW6016 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW6016 Smart Watch, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6016-Smart-Watch-491503429-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjkzfGltYWdlL2pwZWd8aW1hZ2VzL2hjMS9oMjcvOTA4MzM2MDI4MDYwNi5qcGd8NTNlMzk1M2E2MjViN2VkNDRkZDc3MGM0NTI3YTQ1NTFlNWEwYjFmOGVlOTlkNDVhZjk3ZjE0YzI3NTIxN2QzNQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6016" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637baf"), + "name" : "Fossil Q Gen 4 Hr FTW6011 Smart Watch, Gold", + "description" : "Fossil Q Gen 4 Hr FTW6011 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW6011 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6011-Smart-Watch-491503424-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDMxfGltYWdlL2pwZWd8aW1hZ2VzL2g2YS9oNmMvOTA4MzM1NTAzNzcyNi5qcGd8MTQ4ODAxMTY1MTQ3MTBhZmNmNWNjMTVlZmZmNGMzMjMwZmM0MTliODJkOWI3NDg0ZjYxYmJlNjJjYzVjM2Q5Yg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6011" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb0"), + "name" : "Fossil Q Gen 4 Hr FTW6021SET Smart Watch, Gold", + "description" : "Fossil Q Gen 4 Hr FTW6021SET Smart Watch, Gold", + "price" : "355", + "sku" : "Fossil Q Gen 4 Hr FTW6021SET Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6021SET-Smart-Watch-491503434-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU2MHxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaDg3LzkwODMzNzAxMTEwMDYuanBnfDZkMjQ3ODA2YjQ1YjgwZTljZWJmMWFmMWZkM2I0OWI0ZDk2MTRlYmQ5ZjYyNDQ5ZjgwZmM5ZDY4ODZjYzc0MTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6021SET" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold/Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb1"), + "name" : "Fossil Gen 4 Venture HR FTW6017 Smart Watch, Silver", + "description" : "Fossil Gen 4 Venture HR FTW6017 Smart Watch, Silver", + "price" : "319", + "sku" : "Fossil Gen 4 Venture HR FTW6017 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6017-Smart-Watch-491503430-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTc2NXxpbWFnZS9qcGVnfGltYWdlcy9oNGYvaDhmLzkwODMzNjYxNzg4NDYuanBnfGJmNjQ3YTI0M2Q4ZDQ2ZjkwZTRjNWYyM2NkZDI3MjE4NmQyYjE5MTE5NjJkYzg1NjFiNGY2ZjZlMWNiOWNlMDI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6017" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Google Pay(TM)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb2"), + "name" : "Fossil Gen 4 Venture HR FTW6014 Smart Watch, Brown", + "description" : "Fossil Gen 4 Venture HR FTW6014 Smart Watch, Brown", + "price" : "319", + "sku" : "Fossil Gen 4 Venture HR FTW6014 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6014-Smart-Watch-491503427-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjE2fGltYWdlL2pwZWd8aW1hZ2VzL2hiMy9oMzYvOTA4MzM3MTU1Mjc5OC5qcGd8YjYyMTVlNmM4NWRkNGNmZmRmNTViNWQzN2IwMjFmYzJjZjFiNjFkNWI3YWU1MGYxMWNlM2VmYzU1ZDUxNmM0Yw", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6014" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Google Pay(TM)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb3"), + "name" : "Fossil Gen 4 Venture HR FTW6020 Smart Watch, Gold", + "description" : "Fossil Gen 4 Venture HR FTW6020 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil Gen 4 Venture HR FTW6020 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6020-Smart-Watch-491503433-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDQyfGltYWdlL2pwZWd8aW1hZ2VzL2g0NC9oNDcvOTA4MzM2NzgxNzI0Ni5qcGd8NDQwMjgxMGFjOTQxOWU1ODE2MDg3MDlmNDYzZmJjNjg2ZTBiNzlkMGZkZTA3ODU4ZWYxMWVmOTYxMTAwZWQ4MA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6020" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "NFC" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2100 Qualcomm Snapdragon Wear" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Operating System: Wear OS by Google
  • \n
  • RAM: 512 MB
  • \n
  • Internal Memory: 4 GB
  • \n
  • Calorie Count" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb4"), + "name" : "Fossil Q Gen 4 Hr FTW6015 Smart Watch, Nude", + "description" : "Fossil Q Gen 4 Hr FTW6015 Smart Watch, Nude", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW6015 Smart Watch, Nude", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6015-Smart-Watch-491503428-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTc1fGltYWdlL2pwZWd8aW1hZ2VzL2g1ZS9oZGQvOTA4MzM2MjU3NDM2Ni5qcGd8OWQ4N2I1N2E0NzExMDFkMTJiMjI5ZTMwODRiZmJjNjBhZmU1ZDExZjIzMzcwYTNiN2VjMWQwOTcyNWU2NGRmOQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6015" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Nude" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb5"), + "name" : "Fossil Q Gen 4 Hr FTW4012 Smart Watch, Grey", + "description" : "Fossil Q Gen 4 Hr FTW4012 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW4012 Smart Watch, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4012-Smart-Watch-491503419-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTQ1NHxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGQ2LzkwODMzNTIyODUyMTQuanBnfDk4MmEzYjg2YTcxMWVjNDk0OGY3ODRkMGZiZmRiNzEyMzFlYWFmNzFhYWZiODQwZjIzYzM2NDQzZDg0YzY5Y2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb6"), + "name" : "Fossil Q Gen 4 Hr FTW6023 Smart Watch, Black", + "description" : "Fossil Q Gen 4 Hr FTW6023 Smart Watch, Black", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW6023 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6023-Smart-Watch-491503435-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQ5MHxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGM1LzkwODMzNzUxNTcyNzguanBnfGM0OWYxNDY1ZTI0N2RhYmY0YjgwZTQzMTIzMGRjZDc5ODdjMWM2YzdiM2JkMTExYjY4ZGE4Y2VkYjY5MzMyNzM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6023" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb7"), + "name" : "Fossil Q Gen 4 Hr FTW4017 Smart Watch, Black", + "description" : "Fossil Q Gen 4 Hr FTW4017 Smart Watch, Black", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW4017 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4017-Smart-Watch-491503422-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Mzk2fGltYWdlL2pwZWd8aW1hZ2VzL2hlYS9oYzMvOTA4MzM1NTY5MzA4Ni5qcGd8ZmNiZGVmNWI2MTkxNjYyZGM5YzczNzI3ODg0YzkzMGEwYjFmMWQyZjNmZjI0MDVhMzFiNThiNGQ2N2Q4YjhmNA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4017" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb8"), + "name" : "Fossil Q Gen 4 Hr FTW4018 Smart Watch, Black", + "description" : "Fossil Q Gen 4 Hr FTW4018 Smart Watch, Black", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW4018 Smart Watch, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4018-Smart-Watch-491503423-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI5NnxpbWFnZS9qcGVnfGltYWdlcy9oMGMvaGQzLzkwODMzNjIyNDY2ODYuanBnfDhmMWNmZTY0MzgzZDIxYmIzNjkzZTk1NTFmYWQzZDcyNzc1NTg3ZGZlODMzMWI4MWE3OGI4ZWZmOWYxZWU1ODQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4018" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb9"), + "name" : "Fossil Q Gen 4 Hr FTW6019 Smart Watch, Grey", + "description" : "Fossil Q Gen 4 Hr FTW6019 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW6019 Smart Watch, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6019-Smart-Watch-491503432-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTY2fGltYWdlL2pwZWd8aW1hZ2VzL2g1Mi9oMTkvOTA4MzM2ODgwMDI4Ni5qcGd8M2NlNTk3ZWMxZjVjYTMzODA3MzYwMGU4NThkODczMjkwYzY0NjMzMDRkZWEyMGMzODgwZWRiNDVjYWEwM2Y3Mw", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6019" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bba"), + "name" : "Fossil Q Gen 4 Hr FTW4011 Smart Watch, Silver", + "description" : "Fossil Q Gen 4 Hr FTW4011 Smart Watch, Silver", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW4011 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4011-Smart-Watch-491503418-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM0fGltYWdlL2pwZWd8aW1hZ2VzL2hhNi9oNDQvOTA4MzM0OTU5ODIzOC5qcGd8NGYxNjU0NzIzM2I5YWUzYzk3NzBiNzczYTQ3NWI2NjExZGFkNDk1ZjFiMzkxZjk3NzExZGFlZjVhZjVlYzUwZA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4011" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbb"), + "name" : "Fossil Q Gen 4 Hr FTW6018 Smart Watch, Gold", + "description" : "Fossil Q Gen 4 Hr FTW6018 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW6018 Smart Watch, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6018-Smart-Watch-491503431-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzAzfGltYWdlL2pwZWd8aW1hZ2VzL2gyNy9oZjQvOTA4MzM3Mzg0NjU1OC5qcGd8NDNiMzNjMDViNjcwYTY5ZmRkYzNjYmVkZDNhOTBkYTY1ZDdjMjhlY2FhYmRhMGY5ZjdlZTliNzFlMDBhOTY4NQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6018" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbc"), + "name" : "Fossil Q Gen 4 Hr FTW6013 Smart Watch, Silver", + "description" : "Fossil Q Gen 4 Hr FTW6013 Smart Watch, Silver", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW6013 Smart Watch, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6013-Smart-Watch-491503426-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDkwfGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oYTkvOTA4MzM1OTk1MjkyNi5qcGd8YzFlMGQwOTY5YWJlODBhZDExM2FjYjViN2YyYWY3ZmM5NjBhOTJjY2RiOTMyNDM3MjgyNmMzOTY4Njk4ZDBkOQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6013" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart Rate Tracking" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbd"), + "name" : "Fossil Q Gen 4 Hr FTW4016 Smart Watch, Brown", + "description" : "Fossil Q Gen 4 Hr FTW4016 Smart Watch, Brown", + "price" : "319", + "sku" : "Fossil Q Gen 4 Hr FTW4016 Smart Watch, Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4016-Smart-Watch-491503421-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzQ5fGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oZWQvOTA4MzM0OTk5MTQ1NC5qcGd8ZTg5MDE4NzMzMzM5NjYwZjE1MjBhMzEyNjMxYzE4ZjQ2YTk2ZDg5OTZhMzFiYzY1ZjEzOGE2Zjg1ODBjNmRjOA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4016" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbe"), + "name" : "DIESEL On DZT2009 Smart Watch", + "description" : "DIESEL On DZT2009 Smart Watch", + "price" : "355", + "sku" : "DIESEL On DZT2009 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2009-Smart-Watch-491503437-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTUwOXxpbWFnZS9qcGVnfGltYWdlcy9oMmEvaDc1LzkwODc3MjcyNzE5NjYuanBnfGFhNzJjNmMzZWViMGFkZjlmYjA1NWYyMmI5YmZlMzA5NjU5ZTU4MGM5ZGNlMjNkZTIxNGFkZmNjZTVjYjVmY2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbf"), + "name" : "DIESEL On DZT2010 Smart Watch", + "description" : "DIESEL On DZT2010 Smart Watch", + "price" : "355", + "sku" : "DIESEL On DZT2010 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2010-Smart-Watch-491503438-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTY2NHxpbWFnZS9qcGVnfGltYWdlcy9oYjYvaDhkLzkwODc3Mjc5MjczMjYuanBnfGUzODQyMTU0NTAwNGE4ODdiZTY5ZGJhOWFhYjYyM2Y5NGI2ZmMyNDdiMDMxNDM4ODE5NTZkYWI0YjM2YWE0Mzk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2010" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc0"), + "name" : "DIESEL On DZT2011 Smart Watch", + "description" : "DIESEL On DZT2011 Smart Watch", + "price" : "377", + "sku" : "DIESEL On DZT2011 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2011-Smart-Watch-491503439-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTgyNnxpbWFnZS9qcGVnfGltYWdlcy9oMTQvaDJhLzkwODc3MjgyNTUwMDYuanBnfDlmNWNjNjdmNTYzNTBiMTFhYzRiNzdhNWFhZTVjMDRjMjEwOWUwOGRjZDU1ODBlYzllMjk2YTYwN2IwODU1ZjM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2011" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc1"), + "name" : "DIESEL On DZT2008 Smart Watch", + "description" : "DIESEL On DZT2008 Smart Watch", + "price" : "355", + "sku" : "DIESEL On DZT2008 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2008-Smart-Watch-491503436-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTk1MXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaGNmLzkwODc3Mjc1OTk2NDYuanBnfDRjYmFiOWNjZjg2M2FkMjM4ODE1OWJiNDU3OTE2NDdjMTM1OGY2ZjNkYjZiNWFmMTA1NDk0YTU3NTNhZmQxM2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2008" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sliver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc2"), + "name" : "Skagen Falster SKT5103 Smart Watch", + "description" : "Skagen Falster SKT5103 Smart Watch", + "price" : "319", + "sku" : "Skagen Falster SKT5103 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5103-Smart-Waches-491503501-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDUwfGltYWdlL2pwZWd8aW1hZ2VzL2hiYy9oYTcvOTA5NTQ0ODY5MDcxOC5qcGd8MWQzMTFlMjg2ZDM2ZjE4YjcxOTJmM2MyZmJiNTNhODI4YmFhNTUzNzlhYjA1ZDE5YmFiZTA3MmQ4NGFiZGY2NQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5103" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc3"), + "name" : "Skagen Falster SKT5100 Smart Watch", + "description" : "Skagen Falster SKT5100 Smart Watch", + "price" : "290", + "sku" : "Skagen Falster SKT5100 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5100-Smart-Waches-491503499-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDc4OHxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDdlLzkwOTU0NDkwODM5MzQuanBnfGFlMjk5MTdjNmNmYTk5YjhjMTNhMWQzOGI0ZTkwM2ExNDJhOTZlNDEyMDY2ZDNkOTM4MDc0NDAyYjY4NmI1ZTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5100" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc4"), + "name" : "Skagen Falster SKT5105 Smart Watch", + "description" : "Skagen Falster SKT5105 Smart Watch", + "price" : "319", + "sku" : "Skagen Falster SKT5105 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5105-Smart-Waches-491503502-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMTMvaGZhLzkwOTU0NDgzNjMwMzguanBnfGU4MDA5NWVkZTI2OTkzNjY2ZjQxZmI4M2MwM2JiNDY4ZjAxMjgwNzAzNjA4YzBmNTNlNWY0ZTg4NWRjM2JjZDg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5105" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc5"), + "name" : "Skagen Falster SKT5102 Smart Watch", + "description" : "Skagen Falster SKT5102 Smart Watch", + "price" : "319", + "sku" : "Skagen Falster SKT5102 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5102-Smart-Waches-491503500-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODk0OXxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaGRlLzkwOTU0NDk0MTE2MTQuanBnfDFkMTczYTAwNWY2MGU3MmZjOGY0NTE5NjIzOTk4ZTg0MDdkZDQzODBhN2M1ZTZlNzViYzMxZjZkNTIwZGEyN2Y", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5102" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc6"), + "name" : "Skagen SKT5109 Smart Watch", + "description" : "Skagen SKT5109 Smart Watch", + "price" : "319", + "sku" : "Skagen SKT5109 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5109-Smart-Watch-491503504-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2hmMy9oZjcvOTA5Nzc1NzMyNzM5MC5qcGd8Y2U4MjRjOGMzZGY4OGJlZjYzNGMwMDc4NDA5N2NjOTRhZDgwODQzZWIwYmI1YjI3ZDM2YzY2NjliNDJhZWFhZQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT5109" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Case)" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dial Color: Full Color Display
  • \n
  • Interchangeable Compatibility: 20 mm
  • \n
  • Water Resistant: 3 ATM
  • \n
  • Case Thickness: 11 mm
  • \n
  • Strap Width: 20 mm
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc7"), + "name" : "Skagen SKT5107 Smart Watch", + "description" : "Skagen SKT5107 Smart Watch", + "price" : "290", + "sku" : "Skagen SKT5107 Smart Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5107-Smart-Watch-491503503-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYzMHxpbWFnZS9qcGVnfGltYWdlcy9oNzYvaGI4LzkwOTc3NTc2NTUwNzAuanBnfGE2ZDEyM2ZhZDFiNjI2YzNkMWUwNjY1MTQ2ZDk2YTQxYTI4NDhkMWQ5Yzg2NGUxZjY5MmM0YTNjNTMwZTU1N2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT5107" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dial Color: Full Color Display
  • \n
  • Case Thickness: 11 mm
  • \n
  • Altimeter" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc8"), + "name" : "Extramarks SmartStudy 25.65 cm (10.1 inch) Tablet 2 GB RAM, 32 GB, Black ST-600QC", + "description" : "Extramarks SmartStudy 25.65 cm (10.1 inch) Tablet 2 GB RAM, 32 GB, Black ST-600QC", + "price" : "508", + "sku" : "Extramarks SmartStudy 25.65 cm (10.1 inch) Tablet 2 GB RAM, 32 GB, Black ST-600QC", + "imageUrl" : "https://www.reliancedigital.in/medias/Extramarks-ST-600QC-Tablets-491419830-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDA1MXxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDRlLzkwNDk2NzE0MDE1MDIuanBnfDg0M2JlY2M1Y2I1YzhlNDQ2YWJmMWRlNmUwOTQ5ZDBkNGFlN2FiODM4ZTM4ZDc3NWQxNWQ1NDNjZGY1YmMzYmU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "ST-600QC" + }, + { + "attributeName" : "Brand", + "attributeValue" : "EXTRAMARKS" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.65 cm (10.1 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "G-Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "6000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + } + ], + "manufacturer" : "Extramarks", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc9"), + "name" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Blue SM-T595N", + "description" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Blue SM-T595N", + "price" : "464", + "sku" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Blue SM-T595N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-5-T595N-Tablets-491420132-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDkyfGltYWdlL2pwZWd8aW1hZ2VzL2gxNC9oYjcvOTA0NDc1MTgxMDU5MC5qcGd8NDk4OTJkMzZkMjI2MWEyYmEyOTEyODBkNGVhNzI5ZDVmZDA5YTI4ZDA0YjRkZTc4Y2NmOGFjNjc2MTBkNThlYg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T595N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "26" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "534" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1200" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.72 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Video Playback Time: Up to 15 hours
  • \n
  • Audio Playback Time: Up to 183 hours
  • \n
  • Internet Usage Time(LTE): Up to 15 hours
  • \n
  • Talk Time (3G WCDMA): Up to 51 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bca"), + "name" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Black SM-T595N", + "description" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Black SM-T595N", + "price" : "464", + "sku" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Black SM-T595N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-5-T595N-Tablets-491420133-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjEzfGltYWdlL2pwZWd8aW1hZ2VzL2hjNS9oMGYvOTA0NDc1MjEzODI3MC5qcGd8ZjExYjJmN2RjMzQ0NDQxNDJjMTVlZmZmMDBlMTU1MTNhNmYzODM1YTBiOTBkNzFlZDYwZWY1YzY0MjBhNGViOA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T595N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "26" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "534" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1200" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.72 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Video Playback Time: Up to 15 hours
  • \n
  • Audio Playback Time: Up to 183 hours
  • \n
  • Internet Usage Time(LTE): Up to 15 hours
  • \n
  • Talk Time (3G WCDMA): Up to 51 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcb"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 8 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 8 GB, Black", + "price" : "189", + "sku" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 8 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-Kindle-New-Paperwhite-Wifi-eReader-8GB-491488489-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjIyfGltYWdlL2pwZWd8aW1hZ2VzL2g1Ni9oOWQvOTA1NjE4MTYxNjY3MC5qcGd8ZDNjYjk4ZmU2OTE4ZmRhYmI2NjMyNmFjMTUwYWQ0NTk2NzJiNTQ4MWJhZjkzOTE0YWM4YTM5ZGU0NzA1NjgyMQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle " + }, + { + "attributeName" : "Model", + "attributeValue" : "B077454Z99" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "182" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcc"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Space Grey", + "price" : "2028", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXV2HN-A-Tablet-491503284-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTkwOHxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaDQ2LzkwNzA4ODc2OTg0NjIuanBnfGUwYjA1Y2I4Y2QzMTNiZDk0MzJjODExYTMwMDEwNGU1NGI2ZjdkN2MwNGY5NzMxNmU5YTFkYzU1YjA0ZDZhZDQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcd"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Gold", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Gold", + "price" : "560", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-32-GB-Gold-491379700-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY4OXxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaGNlLzg5MzQxNTU5NzY3MzQuanBnfGFkZDIzNzMyNGMwNDdiZDdhOGY1NmNmMDA0MjFhNWViODU2OWU5MmVkYTA3ODZiNzQyMDUyZTIyODBhNGFjMzE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bce"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 GB, Space Grey", + "price" : "1767", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFP2HN-A-Tablet-491503266-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDEzNDN8aW1hZ2UvanBlZ3xpbWFnZXMvaDlkL2gwOS85MDcwODUwNzM2MTU4LmpwZ3w3MGFjYjNjYWQ4ZGZlZWE5OGYzODNlYzMxNzJiOTcwYzFlZDlmMTlhMmJhN2Y4Y2RhM2NmYzg1NzJjMmM3OGFh", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcf"), + "name" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Gold SM-T385NZDA", + "description" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Gold SM-T385NZDA", + "price" : "280", + "sku" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Gold SM-T385NZDA", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T385NZDA-Tablets-eReaders-491351057-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQ5MXxpbWFnZS9qcGVnfGltYWdlcy9oMTYvaDg3Lzg4ODIxNDc4NTIzMTguanBnfGU5YzI3OGQ5N2MwYTk3ZTQwOWE3YjkxMDhkZTk5YmNkMTNhZTM5MWY4NDYzNzNmZGFhNjkyY2VhYjc4NDBiMWU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Tab" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "21.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.32 cm (8 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : GSM850,GSM900,DCS1800,PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS : B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B17(700),B20(800),B28(700)
  • \n
  • TDD LTE : B38(2600),B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Talk Time (3G WCDMA): Up to 36 Hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd0"), + "name" : "Amazon Kindle Paperwhite 15.24 cm (6 inch) E-Reader 4 GB, Black", + "description" : "Amazon Kindle Paperwhite 15.24 cm (6 inch) E-Reader 4 GB, Black", + "price" : "167", + "sku" : "Amazon Kindle Paperwhite 15.24 cm (6 inch) E-Reader 4 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-Paperwhite-eReaders-491351049-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjU0OHxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDViLzg5MzM1MTI3MDgxMjYuanBnfDRkNzY5MjE0ZDY1OGJjZWQ5Y2U0YjBlYWNhZjJjNzNhMzVjYzIzOTEyODRmNzY5ODQ0ZDU4MDQ3NzA3ZmM3MTg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Kindle Paperwhite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "7 Days" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Next-Generation Reading Experience
  • \n
  • Read Comfortably With One Hand
  • \n
  • No Distractions
  • \n
  • Skim Through Without Losing Your Place
  • \n
  • Sharp" + } + ], + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd1"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 4 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 4 GB, Black", + "price" : "160", + "sku" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 4 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-All-New-Kindle-Paperwhite-Wi-Fi-E-Reader-6-inch-15.24-cm-4-GB-491216604-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDA1MHxpbWFnZS9qcGVnfGltYWdlcy9oNTQvaDU0Lzg5MzI5NDQ0NDU0NzAuanBnfDM0ZTllNGI1YWQ1OTgwMTJiYTMyZTViZDUxYjgwZWNiYzUyOGU5YTBiODhlNGQ1MGUyMzQ5NDQzMDVlYmU2OGQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Paperwhite" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB 2.0 charging cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Holds thousands of books
  • Fully charges in approximately 4 hours from a computer via USB cable
  • Battery lasts weeks on a single charge
  • Content format supported - Kindle Format 8 (AZW3)" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + } + ], + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd2"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + 3G E-Reader 4 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + 3G E-Reader 4 GB, Black", + "price" : "203", + "sku" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + 3G E-Reader 4 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-All-New-Kindle-Paperwhite-Wi-Fi-3G-E-Reader-6-inch-15.24-cm-4-GB-491216603-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjA4NXxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDA2Lzg5MzI5NDU3NTYxOTAuanBnfDI3MzY0NjYyNzU3OTVhZmE3ZjM0MmVhYWVhM2Y3NGY2Mzk5YjJhMmNmYzA3NWFjNmZmZGJlOWExMzE3NDU2YmQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "217" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Paperwhite" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB 2.0 charging cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Holds thousands of books
  • Fully charges in approximately 4 hours from a computer via USB cable
  • Battery lasts weeks on a single charge
  • Content format supported - Kindle Format 8 (AZW3)" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + } + ], + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd3"), + "name" : "Samsung Galaxy J Max 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285YZKYINS", + "description" : "Samsung Galaxy J Max 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285YZKYINS", + "price" : "203", + "sku" : "Samsung Galaxy J Max 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285YZKYINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J-Max-Tablet-7-inch-17.77-cm-Black-491282614-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzg2MHxpbWFnZS9qcGVnfGltYWdlcy9oNjAvaGNhLzg5MjkxNzAyMjcyMzAuanBnfDE5OTk5ZDg0YzMxNGY3MmEyZWY4YTNjNDU3ZDBkYWYyNWRmOGI2YTkyYzg5ZjBlMjM0YWViNDA3YzA5M2E3YzE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "J Max" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.77 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "200" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 Quad Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd4"), + "name" : "Lenovo Tab 3 17.78 cm (7 inch) Tablet, 2 GB RAM, 16 GB, Slate Black 7 Plus", + "description" : "Lenovo Tab 3 17.78 cm (7 inch) Tablet, 2 GB RAM, 16 GB, Slate Black 7 Plus", + "price" : "160", + "sku" : "Lenovo Tab 3 17.78 cm (7 inch) Tablet, 2 GB RAM, 16 GB, Slate Black 7 Plus", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-TAB-3-7PLUS-Tablets-491297560-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTQ4MnxpbWFnZS9qcGVnfGltYWdlcy9oMTkvaGZkLzg5MjIxNzc0MDQ5NTguanBnfGUzYzUyMDE1MGJhOGQ5NjljYmZlN2VhZDBmOTlmYTQzMzcwNjdlMmI1MzgwZDJmYTQwYTNjYTJkYWM4MDdmZDk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Tab3 7 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "259" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Slate Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.78 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.01 Marshmallow" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM - B2/3/5/8" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS - B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD - B1/3/7, TDD - B38/39/40/412" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz 64-bit Qualcomm Snapdragon 410 Quad Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + } + ], + "manufacturer" : "Lenovo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd5"), + "name" : "Amazon Kindle Paperwhite Starter Pack 15.24 cm (6 inch) E-Reader 4 GB, Black", + "description" : "Amazon Kindle Paperwhite Starter Pack 15.24 cm (6 inch) E-Reader 4 GB, Black", + "price" : "179", + "sku" : "Amazon Kindle Paperwhite Starter Pack 15.24 cm (6 inch) E-Reader 4 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-B071LDM6L8-eReaders-491379527-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDQyM3xpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDg2Lzg5MTI4OTUxMTUyOTQuanBnfGQyODlhYTk1NTIyOWU4MmU5NzVhZDc0MWQ4MDk3NjFkNTRhOGJjYTYyZjBmM2MzMDE4NmRlMzcxMjFmN2U0YmM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Kindle Paperwhite Starter Pack" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable and Quick Start Guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd6"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MV0N2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MV0N2HN/A", + "price" : "1014", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MV0N2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0N2HN-A-Tablet-491551020-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDE3M3xpbWFnZS9qcGVnfGltYWdlcy9oOWIvaDY4LzkxMjU0OTIwMzE1MTguanBnfGQ5NjkzZDk4MzMzODVhOTk3OTdkOGYxM2U0ZmFmYjQzYmNiYTEyY2QwMGNhNzkyZDI4NWViYTZiY2VkMjc5YmM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0N2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd7"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Space Grey MUUQ2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Space Grey MUUQ2HN/A", + "price" : "854", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Space Grey MUUQ2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUQ2HN-A-Tablet-491551014-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDEyM3xpbWFnZS9qcGVnfGltYWdlcy9oZjAvaGUyLzkxMjU0MzYxMjkzMTAuanBnfDBiMGM2ZjgyOGExMWU1ZTcxMTQxMmEyYWEzYzBlOTY0MmE2NzM3MWFkOTYyMjkwYmQ2ZTA5MTU4YWIzZDMyYjE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUQ2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd8"), + "name" : "Samsung Galaxy S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Black SM-T835N", + "description" : "Samsung Galaxy S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Black SM-T835N", + "price" : "913", + "sku" : "Samsung Galaxy S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Black SM-T835N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-TAB-S4-T835N-Tablets-491488488-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODkxfGltYWdlL2pwZWd8aW1hZ2VzL2g4Ni9oNmUvOTA3MzE3ODc3MTQ4Ni5qcGd8Nzg5YzFmMmVkYmQ5MDFlYjkxN2JlOGExODljZjkxNTM3YTQ0MmY4Yjk0MWYxN2MwY2ZiODE2MzAzYTAxMTU1Nw", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "S4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "483" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour Reproduction", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android O" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 GHz Qualcomm MSM8998 Processor" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "S Pen" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: 16 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4 speakers
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd9"), + "name" : "Samsung Galaxy Tab S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Grey T835N", + "description" : "Samsung Galaxy Tab S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Grey T835N", + "price" : "913", + "sku" : "Samsung Galaxy Tab S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Grey T835N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-TAB-S4-T835N-Tablet-491488487-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTM0fGltYWdlL2pwZWd8aW1hZ2VzL2g5Yy9oMjEvOTA4MzAwMDcxNzM0Mi5qcGd8N2MxY2M4YzEzYzdjMjBiN2JhMzNhYzIwYWQ3MzRjNjVhZDVkMGZiMWNiY2Q4ODExZGQ2NDRkNWM0MDIwYzU0YQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "S4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "483" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour Reproduction", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android O" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100)/B2(1900)/B3(1800)/B4(AWS)/B5(850)/B7(2600)/B8(900)/B12(700)/B13(700)/B17(700)/B20(800)/B28(700)/B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 GHz Qualcomm MSM8998 Processor" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "S Pen" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video playback: 16 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bda"), + "name" : "Apple iPad Pro 2017 26.67 cm (10.5 inch) Wi-Fi Tablet 512 GB, Gold", + "description" : "Apple iPad Pro 2017 26.67 cm (10.5 inch) Wi-Fi Tablet 512 GB, Gold", + "price" : "1167", + "sku" : "Apple iPad Pro 2017 26.67 cm (10.5 inch) Wi-Fi Tablet 512 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MPGK2HN-A-Tablets-491297755-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTM2OXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDBjLzg5MjIxNzM0NzI3OTguanBnfGM1ZjgzYjI1MGJmNGE0NmQ0NDcyZGU5ZmRjOTAyN2JhMTc4ZjlmNDljMWY5ODZiNDIzNjYzY2JmMGU3MjI1Nzg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Connector" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10X Fusion chip with 64‑bit architecture" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "8135" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi‐Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdb"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Silver", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Silver", + "price" : "672", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-128-GB-Silver-491379705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Njk4MXxpbWFnZS9qcGVnfGltYWdlcy9oNDUvaDllLzg5MzQxNjM4NDEwNTQuanBnfDEwYTIwM2ZhZjUwYTE0NDAwNmJkZTc5MjRhZWQ0OTc4MmViZWM2YjJkNmY4NTQwNGU4NTRkMGUyMDMzZjhiMDU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdc"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Space Grey", + "price" : "560", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR6N2HNA-Tablets-491379698-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjUwOHxpbWFnZS9qcGVnfGltYWdlcy9oODIvaGE1Lzg5MzQxNTQwMTA2NTQuanBnfGI3YTYyZDAyYzdiZWJkOTk4NWNhZDQwY2IxNDVlOGJmODY2ZDYyMjc5Yzg3NmZhMTEwMjI3NDMzMDUwOWMxYjk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdd"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 32 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 32 GB, Space Grey", + "price" : "406", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 32 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-32-GB-Space-Grey-491379695-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzkzN3xpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDA1Lzg5MzQxNjkyODA1NDIuanBnfDBiYzc3MDIyMmJiMTk0MjdjOGRlMDc3MWQ1MTExYjc0OWMzZmIwZDQxNGU5YTY0NjRiMTQ0MjJkZWEwYWVjZTE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bde"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "price" : "1245", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU0M2HN-A-Tablet-491503286-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTU5N3xpbWFnZS9qcGVnfGltYWdlcy9oOGMvaGM3LzkwNzA4OTcyNjY3MTguanBnfGVlYzkxMTk2MjExNWE4ZGQyZWM1NDFkZjY2MzY2YWJkODVkZWQxYTE2YmQ2Mjg2Y2I5YmI1NjhiOWEyYzQ4YmY", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdf"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Silver", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Silver", + "price" : "560", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-32-GB-Silver-491379699-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjA2N3xpbWFnZS9qcGVnfGltYWdlcy9oMWUvaDZjLzg5MzQxNTQ5OTM2OTQuanBnfGQxNGNmYWM3MDBlMWY4NGViODBiNjU5NTBlMTViNWRkNzRjYjY3NWM2YTY0NzllNTNmZWQzOTZhZjlhZjg1Yjc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be0"), + "name" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, White SM-T285NZWSINS", + "description" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, White SM-T285NZWSINS", + "price" : "151", + "sku" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, White SM-T285NZWSINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T285NZWSINS-Tablets-491379520-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDcwNHxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaDIxLzg4OTc3NTk4NzEwMDYuanBnfDVlZjJjODFkMDQzZWE2YmMwZTk1MTcxMTU1ZDczMDAxZmJkYjk5YTFhMWIzN2FhOGIzMWQwZWNhZjUzNjJhYTA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T285N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "10.88" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "289" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.77 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 5.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core 1.5GHz" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 8 hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be1"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Space Grey", + "price" : "672", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-128-GB-Space-Grey-491379704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjUwOHxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDBkLzg5MzQxNjE4NzQ5NzQuanBnfDcxMzQyYTYzMzIxYTk1MjM0YzE2MjU2NTRmZTc4NmU2MWRiYjI1ZmZlNTBhNjA4ZGIxNTQwMGY4ZDkwNWNkYzc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be2"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 64 GB, Space Grey", + "price" : "1043", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXN2HN-A-Tablet-491503278-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjA1MHxpbWFnZS9qcGVnfGltYWdlcy9oMWUvaGFkLzkwNzA4ODAyOTI4OTQuanBnfDllNzFiMjBjNWRhYTJhZjY1NmNlMmZjMzZjNWFmNDkzMTYwMGM2MzdlNDI1OWFlMTkzYTVhYjNmZTk3ODkyNDI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be3"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MUX52HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MUX52HN/A", + "price" : "666", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MUX52HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUX52HN-A-Tablets-491551029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODE2N3xpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDFmLzkxMzYzMzkyODgwOTQuanBnfDg2YjM1N2EzM2MyZmU3ZTcxZjQxMjUwYzgyZmRiM2U0ZWM1YjU4OTBmZGMwOWM2NTBiMzdhOTU1YzU4NDhjZTk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUX52HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be4"), + "name" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285NZKSINS", + "description" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285NZKSINS", + "price" : "151", + "sku" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285NZKSINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T285NZKSINS-Tablets-491379521-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzQxNHxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGFmLzg4OTc3NjAxOTg2ODYuanBnfDlhMTcwMjgzZGYwY2M1MDFkMWE1NjAwMjMzMDZjZGY5NTQxZTA1ZTg5OTk3ZGFhYTg3OGEwNmEyYWVjNTIxZTI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T285N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "10.88" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "289" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.77 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 5.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core 1.5GHz" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 8 hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be5"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Space Grey", + "price" : "518", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-128-GB-Space-Grey-491379701-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzkzN3xpbWFnZS9qcGVnfGltYWdlcy9oNTkvaDExLzg5MzQxNTM2ODI5NzQuanBnfDhkN2RjOTc0M2U0NjQ1MDNlNTllNzYxOTAwODkyZjM2MjQ2Nzc5MzJlMDFkNTkwM2Y5YWVlOTUyYmFmMmU2NzM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be6"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Space Grey MUUJ2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Space Grey MUUJ2HN/A", + "price" : "651", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Space Grey MUUJ2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUJ2HN-A-Tablet-491551011-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTgxfGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oNzcvOTEyNTQzNjQ1Njk5MC5qcGd8YmFlMGYyNzNhYmFmYzQ5MjIxYTJiODBlZDc2MmJiNDI0YjQzZDJlYjYwOTA5ZTIzNWQ3OWY5NjYzMTdlZWQ2Yg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUJ2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be7"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "price" : "1448", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU102HN-A-Tablet-491503288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjAyMnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaGQ1LzkwNzA4OTYyODM2NzguanBnfDRlZDMyMjYyN2Q4OTg1MTI3ZjM3YTNmN2JhZDI5MGIyMDRlMzU2NDlmZDBjYjI3YjFkMDQ1MmMyOTk1Zjc3NjI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be8"), + "name" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, Black B07FRJTZ4T", + "description" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, Black B07FRJTZ4T", + "price" : "116", + "sku" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, Black B07FRJTZ4T", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-B07FRJTZ4T-eReaders-491551047-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzYyfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oYmQvOTEyMzA5MjUyOTE4Mi5qcGd8ZDM0Nzg5ODI0OTNlY2VhZWRiNzhhMGMxNTA5ZWFlNTRjNjQxZDI1YzJiMDU4MDcyMTljMjhlYTM3OTViMDA2YQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Model", + "attributeValue" : "B07FRJTZ4T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 weeks" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "manufacturer" : "Amazon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be9"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MV0D2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MV0D2HN/A", + "price" : "811", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MV0D2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0D2HN-A-Tablet-491551017-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDEzOHxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGJhLzkxMjU0NzkwNTUzOTAuanBnfGYzNmExN2ZiZGNlNjZkZmE2MjM1ZjQzNDMxMjAwOTA5NjU1Mjg2YWNjOWZhNGU4NjQzZTg5MjY0NDdjZjdjNmI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0D2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bea"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 256 GB, Space Grey", + "price" : "1245", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXQ2HN-A-Tablet-491503280-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDEyMjZ8aW1hZ2UvanBlZ3xpbWFnZXMvaDZhL2hkOC85MDcwODc5NjM3NTM0LmpwZ3wyMjFlM2U4ZDE3NmE4OWM1ZDY4ZmI3YWEyMjA2ZTA5NjViNGZmYzM0MDdmZTJlYWNmNjk2MGZmZWFkNTE0NDZj", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637beb"), + "name" : "Extramarks Toddler 17.78 cm (7 inch) Tablet 1 GB RAM, 8 GB, Yellow EW-200", + "description" : "Extramarks Toddler 17.78 cm (7 inch) Tablet 1 GB RAM, 8 GB, Yellow EW-200", + "price" : "174", + "sku" : "Extramarks Toddler 17.78 cm (7 inch) Tablet 1 GB RAM, 8 GB, Yellow EW-200", + "imageUrl" : "https://www.reliancedigital.in/medias/Extramarks-EW-200-Tablets-491419829-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjAyNXxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaGYwLzkwNDk2NzEwNzM4MjIuanBnfDQwZTQyNmU1MDU0NzU3YTZjZWY5NmU4NWE4YWEwYTFiMzJkMTgxNjBjYTJlM2ZlNzg4MGY4MzU2ZGNiYzIyOTI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EW-200" + }, + { + "attributeName" : "Brand", + "attributeValue" : "EXTRAMARKS" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour Reproduction", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.78 cm (7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "G-Sensor" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "5 V" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Age-appropriate" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + } + ], + "manufacturer" : "Extramarks", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bec"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + Free 4G E-Reader 32 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + Free 4G E-Reader 32 GB, Black", + "price" : "261", + "sku" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + Free 4G E-Reader 32 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-Kindle-New-Paperwhite-Wifi-eReader-32GB-491488490-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTgzNHxpbWFnZS9qcGVnfGltYWdlcy9oYzAvaDRkLzkwNTYxODE5NDQzNTAuanBnfDRiNDZhMzY1NjZiNTYwZTM5MDViZjcwMWU0OWI4NzAyOTg4YWE0NmMxNTRkZDE3MjE0NWRiM2VmMDVjYmJiY2M", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle " + }, + { + "attributeName" : "Model", + "attributeValue" : "B077498K1F" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "manufacturer" : "Amazon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bed"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "price" : "2231", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU1V2HN-A-Tablet-491503292-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjU2NXxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaGI3LzkwNzA5MDcyMjgxOTAuanBnfGQ2ZTFjZTA3MjhkZjM0Mjc1M2ZkMmIyMWNjZWRjZmUwMmRiMmQ1MDg1MmNhOGM4YWMxYWYzMDU1NTA5YjEyZTk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bee"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Silver", + "price" : "1506", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXU2HN-A-Tablet-491503283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDMxOTR8aW1hZ2UvanBlZ3xpbWFnZXMvaDMzL2g1OC85MDcwODg3MDQzMTAyLmpwZ3wwNTljNDdhMTc0YTc1NGFjYzliMTY4MDhlNDc4ZTg3M2YxMzI3MmY2ODRhYmZmNmY5ZjFiNmE2MzU4NWU5M2E1", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bef"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Space Grey", + "price" : "1506", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXT2HN-A-Tablet-491503282-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjgwOHxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaDUzLzkwNzA4ODkwMDkxODIuanBnfDMxMmMxNmVmYzY3NmE2MmY2ZmMzNGNjZDAwZmVjOTZmNDM5MTE5Y2Q1YzNlNjNlODlmMTQyZmM2YWU2M2E0MTI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf0"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Silver", + "price" : "2028", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXW2HN-A-Tablet-491503285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzA3OXxpbWFnZS9qcGVnfGltYWdlcy9oNWIvaDU2LzkwNzA4ODQ5NDU5NTAuanBnfDI2ZmYzYWFlY2VkNzA4NWQ4NGRlYzA0YjM3MGMxYTBiOGIwNzQ3ZGU4NTBjZWZmMjY1YTU1MmFlZDU0MjMzOTc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf1"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "price" : "1245", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU0U2HN-A-Tablet-491503287-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Njc5NHxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDAyLzkwNzA5MDM2MjM3MTAuanBnfDBiYWE4YzI2MjVjMDBjNzk2NGYxMjExMjgwZDk3ZWZhNDM2NzMwMzA0NjM3ZDYzODk4MmYxYjJjYmEwNjYyZjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf2"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "price" : "2231", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU222HN-A-Tablet-491503293-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM3NnxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaGVlLzkwNzA4OTY5MzkwMzguanBnfDFlZDMxNDJlYTQxZThjNmNmNWJhNjMzZTY1ZGQ3NDFiM2U1MzdhMDdlNTI2NzUzMjIxMmI5YzIyMzQ1YzVmZDQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf3"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "price" : "1448", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU172HN-A-Tablet-491503289-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTg1NnxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDgwLzkwNzA4OTQzMTc1OTguanBnfDQ5MmQwNTQ0YzE0YzkzOTI3MWI1OGVhOTYyNjljN2NmM2IwN2FhYjdmYWY3ZjdmMTZkNjA5Y2VkZDBjODEwNzc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf4"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "price" : "1709", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU1M2HN-A-Tablet-491503291-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjYyOXxpbWFnZS9qcGVnfGltYWdlcy9oYzcvaDA5LzkwNzA5MDg1Mzg5MTAuanBnfDAyMTVmMWFjZGVhNWE2ODQzODg5ODA2MjM3NmQxOTMyODFiYTIzZTJmZDZiOTllNmNjM2Y4NDQwMzk1MDdkNjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf5"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "price" : "1709", + "sku" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU1F2HN-A-Tablet-491503290-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDEyNjZ8aW1hZ2UvanBlZ3xpbWFnZXMvaGZmL2g1YS85MDcwOTA1NTg5NzkwLmpwZ3xkYmFjYjA1M2Q3ZDc1NDY3YTE0YTE4MmNhMzI1YTdjYjhlYWM5ODhhOGY3NDJmOTFlODcxOTEyN2I0YWZlNWU0", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf6"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "price" : "1970", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJJ2HN-A-Tablet-491503275-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTQyOHxpbWFnZS9qcGVnfGltYWdlcy9oODkvaGJmLzkwNzA4NjYzOTkyNjIuanBnfDUzOGVmYWYzZDE3ZmYyNTY0ZTMwODMzMDlkMjlhNzEyZDJkYzljNDUyNDM3MjE3MjhjYzU4YjI1YTkwNGE1YWI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf7"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "price" : "1506", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTHP2HN-A-Tablet-491503271-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTg4NnxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDdjLzkwNzA4NTcwMjc2MTQuanBnfDdjNDJmZDk1NjQxNDIyODA0ZTE2MjQ4NmNlODE3NDBmMGE0YzI4ZDZlYzMzYjg0YTdhYmNjNTk1NmYwOWZlNGU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf8"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "price" : "1709", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTHV2HN-A-Tablet-491503272-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTU0OXxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaGZiLzkwNzA4NjMxMjI0NjIuanBnfGVjYTRhNTZiNGUxNmI0ZTg5YzgzZWFkMDJkZDNmNjRkNTI2MjRiMWI2NWM1NTJjYWQxNjIzYzZiMTA0ZDhiMWE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf9"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "price" : "1506", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTHJ2HN-A-Tablet-491503270-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Mzg4N3xpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGUxLzkwNzA4NjA4Mjg3MDIuanBnfDI1ZGU4MjM5YmQ1NTg0MjM3MDA4ODc1ODM5YzVjZDljYzljZjcyMGUyMzBkOGEzYTc0NDM1MTM0NjI3YmU1MGU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfa"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "price" : "2492", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJP2HN-A-Tablet-491503276-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDk1N3xpbWFnZS9qcGVnfGltYWdlcy9oMzQvaDU2LzkwNzA4NzAzMzE0MjIuanBnfGY5MGJmODUzMzEwN2VmODk5OGNkYjI0ZDBiY2UyODg2OWU2ZTg2OGRmZDBjOTJjNmU0ODIzZGNiYjBkMTQxZDA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfb"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "price" : "2492", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJV2HN-A-Tablet-491503277-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzM3NHxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaDhiLzkwNzA4Njc3MDk5ODIuanBnfGYxMDAzOWJiMTBjMmQ2ODIxMWI1Y2NmZGExMzcxN2ZkNWNlNjBiNDZjMDJmNGJiZTRhZjg5ZmIzNjdjMzI1MzM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfc"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "price" : "1709", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJ62HN-A-Tablet-491503273-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDg2OXxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaGRjLzkwNzA4NTgwMTA2NTQuanBnfDA4YmRkNDIzMzRhMjU0ZWU1ZmY4YWFjMDg5Y2JhMjhmYjljYjNjNDJmNmI2OTkxMjIyODczYmNiOTlkYzEwYjE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfd"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "price" : "1970", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJD2HN-A-Tablet-491503274-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE2Njl8aW1hZ2UvanBlZ3xpbWFnZXMvaGY5L2hiMC85MDcwODcxNjQyMTQyLmpwZ3xjOTY1MTVjMzdmYmQwMTUxZTUzYmFjMWFmYjM1MWQzMmZkOWJmMTNkYmU5Zjc3ZGM2MzM4MGViMDFiNzQ0OWUx", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfe"), + "name" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, White B07FQ1B3TQ", + "description" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, White B07FQ1B3TQ", + "price" : "116", + "sku" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, White B07FQ1B3TQ", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-B07FQ1B3TQ-eReaders-491551048-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzAzfGltYWdlL2pwZWd8aW1hZ2VzL2g3Yi9oM2YvOTEyMzA5MjIwMTUwMi5qcGd8YWQzYTUwZWRjMmUwYTNlZDY4NDAyZWQ3ODU4NmIwYTFkNTNiNDhlNTNjNzBjZTFkYWVhYWZiOTc4NzE1ODkyYw", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Model", + "attributeValue" : "B07FQ1B3TQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 weeks" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "manufacturer" : "Amazon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bff"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Gold", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Gold", + "price" : "672", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-128-GB-Gold-491379706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY4OXxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDUwLzg5MzQxNjE1NDcyOTQuanBnfDY3ZjRiZTRjMDczMjQyNjc3Yjc5Y2I2M2I5M2E2Njk5YmRlNmQzOWQzOTEzMjc4N2I4MjI0NjhlMjYxMzE0NDk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c00"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Gold", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Gold", + "price" : "518", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-128-GB-Gold-491379703-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Mzc2MnxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDM3Lzg5MzQxNzAyNjM1ODIuanBnfDYzZTc4Mjg4NTM5ZmYyNGQ3Mjk0Mjc3OGI3NmZkMDZjNTdiMjBlY2FhYTkzNDdmMDUzNjM0YTMzNjljZjk5NDA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c01"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Silver", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Silver", + "price" : "518", + "sku" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-128-GB-Silver-491379702-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTU0N3xpbWFnZS9qcGVnfGltYWdlcy9oNTcvaDVlLzg5MzQxNjg5NTI4NjIuanBnfDQ0MGQyMDRlMjlmY2JkNTA1NGQxOWRmZjY4M2EyODA5MjgwNTI0ODU2YWU0NGI5NzEyNDAwNTI3M2I5YmFlM2I", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c02"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Silver", + "price" : "1303", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTEM2HN-A-Tablet-491503263-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzQ2M3xpbWFnZS9qcGVnfGltYWdlcy9oNWQvaDlmLzkwNzA4MzgyODQzMTguanBnfDVkNzkwNGZlMzA3MDI2NTUzYWUwODg5NGJiOGEyNjIyMWRkYmYyMGI2Njc3MjFjZjc4YzU4ZjAyN2U3ZjhkMTA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c03"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Space Grey", + "price" : "1303", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTEL2HN-A-Tablet-491503262-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjUwN3xpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDM5LzkwNzA4Mzk5MjI3MTguanBnfGIxNmUyOTAxNWI5MTY2NmQ5ODNkMjJlM2ZiYjE3NTAwNWQwNDFjYmMzNjNkYzRjMGNiYjgwMTI1MDU5MmJhZjQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c04"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 TB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 TB, Silver", + "price" : "1767", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 TB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFQ2HN-A-Tablet-491503267-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTE1NnxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDQ4LzkwNzA4NDc3ODcwMzguanBnfGE2MzE1ZjVkNjQ3NGM3ZDQxZjdhYmRlOGY1MGM4MDFmZTk5YTAyMzBiNDZkOTMzMWZkMTgwODEzYmNjNGMzMzI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c05"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Silver", + "price" : "2289", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFT2HN-A-Tablet-491503269-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTIyOHxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDQ2LzkwNzA4NDk3NTMxMTguanBnfGIzNjYyODJmZGZjYTU5ZmYyNGQxNDcxZjFlOWE1YmY0Zjg1YjFjNTRkN2JhYzY5OTMyNWFjZTA3ZjRmNGZiNmU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c06"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Space Grey", + "price" : "1506", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFL2HN-A-Tablet-491503264-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTY5NnxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaDQ0LzkwNzA4Mzk1OTUwMzguanBnfGI3MjU5OWEyMzExMWYzM2E3NmFlODI1YjE2MTEzMjdmNWZlY2Q1MmRjNjlhMDRhMTY2MjgzNjI1ZmMzMDdkYjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c07"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Silver", + "price" : "1506", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFN2HN-A-Tablet-491503265-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIzMzl8aW1hZ2UvanBlZ3xpbWFnZXMvaGZkL2gwYS85MDcwODM5MjY3MzU4LmpwZ3xjYTcyZDBkMDgyMTFlYmZmMGE4YzkyOGUyZDIyZWFlZmNiMzA2ODExMDlhNzk3NDUxMjU0YzlhZGUyYmZlYjhh", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c08"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Space Grey", + "price" : "2289", + "sku" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFR2HN-A-Tablet-491503268-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE3Njd8aW1hZ2UvanBlZ3xpbWFnZXMvaDVhL2hiYS85MDcwODUzMzU3NTk4LmpwZ3xlNTYzMzZkYmZkNjZlYzIzZmI0NGZlNTRmNmUxNjFkY2E3NGMzYTU5YzQ2NjBhOWUzNjg3NjU4MzgyNjNjMTlj", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c09"), + "name" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Black SM-T385NZKA", + "description" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Black SM-T385NZKA", + "price" : "289", + "sku" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Black SM-T385NZKA", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T385NZKA-Tablets-eReaders-491351058-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEwNXxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGNkLzg4ODIxNDk4MTgzOTguanBnfGNiYzlkNTg4ZjBiYTcxN2YyZGE5NDdiOGQ1MTM3NDlhYjk4OTIwMTg5NGVlMmUzMjFlYjFlY2MzYzRlZmZiNzE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Tab" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "21.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.32 cm (8 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : GSM850,GSM900,DCS1800,PCS1901" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS : B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B17(700),B20(800),B28(700)
  • \n
  • TDD LTE : B38(2600),B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.1" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Talk Time (3G WCDMA): Up to 36 Hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0a"), + "name" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Silver SM-T825NZSAINS", + "description" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Silver SM-T825NZSAINS", + "price" : "747", + "sku" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Silver SM-T825NZSAINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-Tab-S3-SM-T825N-Tablet-24.58-cm-9.7-32-GB-Silver-491297574-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzAzM3xpbWFnZS9qcGVnfGltYWdlcy9oZjkvaDkwLzg5NjMwOTA0NDg0MTQuanBnfGZjZmYxNjdlYzY2NzM3NDFhNDRkZWIyNTg5MjBlN2YxNTJjNTg3NmJiY2M1YzYyNmNlOTAwZGQ0ZDk5MTRhMGQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab S3 SM-T825N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "23.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.6" + }, + { + "attributeName" : "Weight", + "attributeValue" : "434" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.58 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • 4G FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B17(700), B20(800), B28(700)
  • \n
  • 4G TDD LTE: B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.15 GHz, 1.6 GHz Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "6000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 8 hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0b"), + "name" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Black SM-T825NZKAINS", + "description" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Black SM-T825NZKAINS", + "price" : "747", + "sku" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Black SM-T825NZKAINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T825NZKAINS-Tablets-eReaders-491297573-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTExNHxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaGQ5Lzg5MjE2NzY5MDY1MjYuanBnfDBmM2ZlYjQ3OTRkMTVmYWY2MTJhNDEzMzA1YmM1YmU4Y2U2ZjY2ODRlOWE0YmIwZWJjOWYzYzRhMmRkNzY2NWQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Tab" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "S3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "23.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.6" + }, + { + "attributeName" : "Weight", + "attributeValue" : "434" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.58 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS : B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE : B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B17(700), B20(800), B28(700)
  • \n
  • TDD LTE : B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "6000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 8 Hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0c"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Gold MUUT2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Gold MUUT2HN/A", + "price" : "854", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Gold MUUT2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUT2HN-A-Tablet-491551016-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTg4fGltYWdlL2pwZWd8aW1hZ2VzL2hmNy9oM2IvOTEyNTQ4MTA4NzAwNi5qcGd8OTFmMDQ0NWZmZmExOTQxMzE2OWI1MDM0MDFkZjNlZTU2NDdmNjYzZjA2MWZkMjQwY2U4MDRmNTBhYzdhNzUzZg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUT2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0d"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Gold MUUL2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Gold MUUL2HN/A", + "price" : "651", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Gold MUUL2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUL2HN-A-Tablet-491551013-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTEwfGltYWdlL2pwZWd8aW1hZ2VzL2g4YS9oMjEvOTEyNTQ0MjAyNzU1MC5qcGd8MzQ1NmY3YWM2MDRhNGYyZjA4MmE3NmQyZmQ1M2EyZDc5OTlhYWU0ZWJjMDZiN2U2MDk0NzZlODFmMzJkZDY3ZA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUL2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0e"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MV0Q2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MV0Q2HN/A", + "price" : "1014", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MV0Q2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0Q2HN-A-Tablet-491551022-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDAxfGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oNjYvOTEyNTQ4OTczNzc1OC5qcGd8ZWYzNzdiY2QxNzFmMmYyMTU1YThkZDBlOGMyOTc4ZWU5YmJhYTM2YzE0ZWQ2OWJkNGE1MTYzMjZhYjkwZWU4Nw", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0Q2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0f"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MV0F2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MV0F2HN/A", + "price" : "811", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MV0F2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0F2HN-A-Tablet-491551019-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTYyfGltYWdlL2pwZWd8aW1hZ2VzL2hjMy9oYTAvOTEyNTQ4NTQ3NzkxOC5qcGd8ZDI3MWNlNTE0MTU0MjZhYWM2M2RlM2JmNzE1YmIyZDEyYzRmYjI4ZmM3NDg5NGQ3M2IzOTcyY2JjZGE5MmFiMQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0F2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c10"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Silver MUUK2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Silver MUUK2HN/A", + "price" : "651", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Silver MUUK2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUK2HN-A-Tablet-491551012-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDI4NnxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDFkLzkxMjU0MzkwNzg0MzAuanBnfGVjY2FkMWYxZTUyMTY0ZTgzYmRhZThmYjk2ZTQ1Yjk2YzEzODk2OTE2ODFjMGVmNDcxNzU3YTdiMjM0OGJkMjU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUK2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c11"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Silver MUUR2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Silver MUUR2HN/A", + "price" : "854", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Silver MUUR2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUR2HN-A-Tablet-491551015-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDEzNXxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaDcwLzkxMjU0NzcwODkzMTAuanBnfGY1NzZmODBlNmNiNjNhMGNkNTVkZWQ2YTRmNmE5MzE4MTBmM2VhYmNmOTJiMDlmNDdjNzI0ZGZlNmZhNjU2ODE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUR2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c12"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MV0P2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MV0P2HN/A", + "price" : "1014", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MV0P2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0P2HN-A-Tablet-491551021-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTY1NXxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaGE2LzkxMjU0ODc3NzE2NzguanBnfDgzMTMxMDdmMzA1NmUxNjE4ZjA2MGNkNjMyYTE2NjJhYTlkNzc0ZDNhNjNlZjIyYjAwNTY0NjFiNDg1YzFkZjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0P2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c13"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MV0E2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MV0E2HN/A", + "price" : "811", + "sku" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MV0E2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0E2HN-A-Tablet-491551018-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDA0N3xpbWFnZS9qcGVnfGltYWdlcy9oYmEvaDg1LzkxMjU0ODMwNTMwODYuanBnfDFkYTM0YzQ2ODYzNTQxMTg3MmEyYjg1NGM4NmM1OTNjZDJiZmE1ZWJmNmZkMWIwYjE5Y2M1OWNiN2M0NGIwYWM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0E2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c14"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MUXE2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MUXE2HN/A", + "price" : "869", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MUXE2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUXE2HN-A-Tablets-491551034-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDU5MXxpbWFnZS9qcGVnfGltYWdlcy9oMWYvaDNkLzkxMzYzNDk3NzM4NTQuanBnfDAxNjU1MWE5ZWQ3NGMwOWNmZGQwN2Y0YzZjYTFhYzMwNTgyZmY4ZDk5M2I0Y2E5ZWJlODdmZGQ3ZDE4NzIyZDE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUXE2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c15"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Gold MUU62HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Gold MUU62HN/A", + "price" : "709", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Gold MUU62HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUU62HN-A-Tablets-491551028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI4NHxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDJjLzkxMzYzNDE1ODE4NTQuanBnfDM0NmRkYTk5ZTA4MjJlMmVkMGEzMDI4ZTkyYjM4ZDBmYjQ0MTBiY2M4MWUwMmYwZWFmMWI4NzFmMzVkMTg5NzQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUU62HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c16"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MUX62HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MUX62HN/A", + "price" : "666", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MUX62HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUX62HN-A-Tablets-491551030-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTQwN3xpbWFnZS9qcGVnfGltYWdlcy9oODMvaGNkLzkxMzYzNDY0OTcwNTQuanBnfDdmMDQxMjU2M2RmY2E5YThhM2U0MDcxZWI0NWExZmE1MTMzZjU0NGQ0YmRlYTMzM2E1NThhZWE0ODg5MjgzOGI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUX62HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c17"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Silver MUU52HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Silver MUU52HN/A", + "price" : "709", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Silver MUU52HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUU52HN-A-Tablets-491551027-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjczMHxpbWFnZS9qcGVnfGltYWdlcy9oYjMvaGMwLzkxMzYzMzY2NjY2NTQuanBnfDU4MjZkNDA2ZWQ5MjQ1YTA5YWViMjA5MDljMWQ1OThjMTMyYWExYjNmZWE4NzZhZTU2MDFiOWE4MWM3NmMwZTU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUU52HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c18"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MUX72HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MUX72HN/A", + "price" : "666", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MUX72HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUX72HN-A-Tablets-491551031-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjAyOXxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDNiLzkxMzYzNDE5MDk1MzQuanBnfDQ3MTQwOGZkNzRiMTE4Yzk1MzQ0NzQwYWQwYzZlOGQ3MGNmMzlmNzhmNzcxODJlNDMwMTJmOTljYWIyYzNiYmQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUX72HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c19"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MUXD2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MUXD2HN/A", + "price" : "869", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MUXD2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUXD2HN-A-Tablets-491551033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTE0NXxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDIxLzkxMzYzNDQyMDMyOTQuanBnfDViZTM4OGZjYzY5ZDM4MmE0MDdiN2U1NmFmYTY2Y2VkMDE0ZDNiYTg0NmY2ZDRmMDI2OTgxMmE0YzU5ZjQyZWU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUXD2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1a"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Gold MUQY2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Gold MUQY2HN/A", + "price" : "506", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Gold MUQY2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUQY2HN-A-Tablets-491551025-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTc2MnxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDI2LzkxMzYzMzIwNzkxMzQuanBnfDBiZjFjZDcxNmZhNzk5MGEyOWIzNDE5MTg3MDE2MjAzNTM1Y2I4NWIzNjAzYzM5ODBjMGY4YjA0YWU3ZGI2Yjk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUQY2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1b"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MUXC2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MUXC2HN/A", + "price" : "869", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MUXC2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUXC2HN-A-Tablets-491551032-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzg2M3xpbWFnZS9qcGVnfGltYWdlcy9oZDUvaDdiLzkxMzYzNDgxMzU0NTQuanBnfDA5MTQ3Nzc4NzVlZWY4MWY1MGIyMmNmMjIwNjk0YmI4MzMyMzI5MmNlOWUwZjVhMzMwZTgyNDkyMjNhMTMyZGQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUXC2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1c"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Silver MUQX2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Silver MUQX2HN/A", + "price" : "506", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Silver MUQX2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUQX2HN-A-Tablets-491551024-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTYxMHxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaDg2LzkxMzYzMzUwMjgyNTQuanBnfDU1NTg5YjgyMzk3OGE3MjliNTAxN2Y1YTNmOWFlMjRiYTBiMDQ4YTdiYWRhZDQzYzFjOTcxNmQ3NDJhY2E2ZWI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUQX2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1d"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Space Grey MUU32HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Space Grey MUU32HN/A", + "price" : "709", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Space Grey MUU32HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUU32HN-A-Tablets-491551026-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIyMXxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaDM4LzkxMzYzMzczMjIwMTQuanBnfDJhYTViNTI4ZWZiNTE3ZWQ1MTMyYzNkYzFjN2Q1ZTFlM2JmZTlkYjVlZjQ4NmRmYTdhNTEwODQ2ZjFmZGMwZjI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUU32HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1e"), + "name" : "iBall Slide 25.5 cm (10.1 inch) Tablet 3 GB RAM, 32 GB, Bronze Gold Brace-XJ", + "description" : "iBall Slide 25.5 cm (10.1 inch) Tablet 3 GB RAM, 32 GB, Bronze Gold Brace-XJ", + "price" : "290", + "sku" : "iBall Slide 25.5 cm (10.1 inch) Tablet 3 GB RAM, 32 GB, Bronze Gold Brace-XJ", + "imageUrl" : "https://www.reliancedigital.in/medias/iBall-SLIDE-BRACE-XJ-Tablets-491503498-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDMxfGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oZDIvOTA4NzU3NDcwNDE1OC5qcGd8YmJlNDYzYmU2MmEyMjZhZTY1ZGQ1YWI0ZjBhYTdjNjI5ZWZhMDEzOTMwMDI4MzkxOWY2YjI5ZTk0N2JjNjAyZA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Slide" + }, + { + "attributeName" : "Model", + "attributeValue" : "Brace-XJ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "iBall" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bronze Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.5 cm (10.1 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.0" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/B3/B5/B8
  • \n
  • TDD LTE: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Octa Core ARM Cortex A53 64 bit" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7800" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IPS HD Screen Resolution
  • \n
  • 7800 mAh Li- Polymer Battery
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "iBall", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1f"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Space Grey MUQW2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Space Grey MUQW2HN/A", + "price" : "506", + "sku" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Space Grey MUQW2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUQW2HN-A-Tablets-491551023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIxNnxpbWFnZS9qcGVnfGltYWdlcy9oNmEvaGNkLzkxMzYzMzE3NTE0NTQuanBnfDM0YjI5MmNkOTlhNmZjYmNhZDZhMWI4NGIyNDdkMGIxZTBmNWY4YTNjMmE3NDlkZGUyYjZiMjJlMTU3MWM5OTY", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUQW2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c20"), + "name" : "iBall 29.46 cm (11.6 inch) Convertible Laptop (Atom/2 GB/32 GB), i360", + "description" : "iBall 29.46 cm (11.6 inch) Convertible Laptop (Atom/2 GB/32 GB), i360", + "price" : "225", + "sku" : "iBall 29.46 cm (11.6 inch) Convertible Laptop (Atom/2 GB/32 GB), i360", + "imageUrl" : "https://www.reliancedigital.in/medias/iBall-IBALL-I360-FHD-Laptops-491420246-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDk2OXxpbWFnZS9qcGVnfGltYWdlcy9oMTMvaGU2LzkwMzE2NDMzNjU0MDYuanBnfDgzYTExY2JkM2VlMTg0NGIzMWU0MDUwYzY4MmViYzVlNjJhODhkMzMzYmY5ZDcxOGExYWMxNDgwODkxOWE3ZDQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Model", + "attributeValue" : "i360" + }, + { + "attributeName" : "Brand", + "attributeValue" : "iBall" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Atom x5-Z8350" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "10000" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Atom" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "Z8350" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 10" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "User Manual" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1350" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.5" + } + ], + "manufacturer" : "iBall", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c21"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (AMD A6/3 GHz/8 GB/1 TB), 81D60076IN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (AMD A6/3 GHz/8 GB/1 TB), 81D60076IN", + "price" : "510", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (AMD A6/3 GHz/8 GB/1 TB), 81D60076IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-330-81D60076IN-491420081-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjk4N3xpbWFnZS9qcGVnfGltYWdlcy9oYWEvaDE1LzkwNjQ2NzU2MzkzMjYuanBnfGE2NWY2ODc5NWU1NjMwNmVkZmRiZTkzZjQ2Y2QxMGZmNWJiODE0YmViZjQ5MjJkYmZhMjRkYmM3YTI2NzUyNjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81D60076IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9225 Processor" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9225" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • Lenovo App Explorer
  • \n
  • Lenovo Companion 3.0
  • \n
  • Lenovo ID
  • \n
  • Lenovo Settings
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c22"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0299tu", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0299tu", + "price" : "600", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0299tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-B560133WIN9-Laptops-491420078-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjE1NXxpbWFnZS9qcGVnfGltYWdlcy9oMDYvaGRhLzkwNzU2Njg5NDI4NzguanBnfGIyYzQ5OWIxYTA2Y2U3ZGRmZWE4YjgyMTkwMTliNjQzNmQ4YzY4N2IxOWU1MzUwNmY5MmVjNWI2MWI1YjQ5ZmY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0299tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c23"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD E2/1.8 GHz/4 GB/1 TB), A315-21-2109", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD E2/1.8 GHz/4 GB/1 TB), A315-21-2109", + "price" : "377", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD E2/1.8 GHz/4 GB/1 TB), A315-21-2109", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-UN.GNVSI.001-Laptops-491379641-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODA2MnxpbWFnZS9qcGVnfGltYWdlcy9oOWQvaDM3Lzg5NTYyNDUyNzg3NTAuanBnfDFmNjYxMzFkNmFkNThiMzdlNmQ4ZDRiMDhlMjk1Y2M5Yzk2ZDNmZTAyN2Y0ZmEwZTllYTY5OGNiYjhiMzVmZDk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-21-2109" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz AMD E2-9000 processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5.5 hrs" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9000" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Acer", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c24"), + "name" : "Dell 35.56 cm (14 inch) Inspiron 14 5000 Series Convertible Laptop (8th Gen Core i3/4 GB/1 TB), 5482", + "description" : "Dell 35.56 cm (14 inch) Inspiron 14 5000 Series Convertible Laptop (8th Gen Core i3/4 GB/1 TB), 5482", + "price" : "870", + "sku" : "Dell 35.56 cm (14 inch) Inspiron 14 5000 Series Convertible Laptop (8th Gen Core i3/4 GB/1 TB), 5482", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-5482S-8i3-4-1TB-W10T-MS-FHD-Pen-14-Laptop-491503259-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDE0fGltYWdlL2pwZWd8aW1hZ2VzL2g0ZS9oYjUvOTEwMjM1Mzk4OTY2Mi5qcGd8YjA1ZGU0OTM1ODA2MjY0ZTdlYzcwMWY3ZDA3MjhhNWNiYTc4OTE5MTgwODc2ODk4YzdjOWJlYzA0NTIyODk3Mg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5482" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "up to 3.9 GHz 8th Gen Intel Core i3-8145U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft® Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.28" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c25"), + "name" : "HP 35.56 cm (14 inch) Laptop (7th Gen Core i3/2.4 GHz/4 GB + 16 GB Optane/1 TB), 14-CF0054TU", + "description" : "HP 35.56 cm (14 inch) Laptop (7th Gen Core i3/2.4 GHz/4 GB + 16 GB Optane/1 TB), 14-CF0054TU", + "price" : "599", + "sku" : "HP 35.56 cm (14 inch) Laptop (7th Gen Core i3/2.4 GHz/4 GB + 16 GB Optane/1 TB), 14-CF0054TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5PN02PA-Laptops-491488433-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ5OXxpbWFnZS9qcGVnfGltYWdlcy9oNTQvaGNjLzkwOTI4NzIxNDI4NzguanBnfDEyMDdmOTM2MWVhOWE4NTdkYjQ5NWMyMmZkMTY2ZjA1ZWI1MDRkNTFkZGQ1YjZmYzkxNjEwNzg4NmUwMGU5MzM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-CF0054TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.4 GHz 7th Gen Intel Core i3-7100U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial Software" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1430" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.58" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c26"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0102tu", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0102tu", + "price" : "519", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0102tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-15-da0102TU-7i3-4GB-1TB-W10-FHD-491420124-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjE1NXxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDM3LzkwNzU3MDM2NzY5NTguanBnfDJjZjQ0N2RhYTk3MTE4ODg1MmYxZTY0MTY4OWM2OTc2YTRhZGQzNjEyMGM5ZjE3ZDIwYWFmOWJkODM0MjFjNTc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "RJ-45" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0102tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touchpad with multi-touch gesture support
  • Dual speakers
  • Webcam - HP TrueVision HD Camera with integrated digital microphone
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c27"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "price" : "1074", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560132WIN9-Laptop-491550892-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDI3fGltYWdlL2pwZWd8aW1hZ2VzL2hiMy9oOWQvOTEyMDYyMzgyMDgzMC5qcGd8YTUyOTQ4ZjFiZjQ1OGIxMjE3ZDhiODEyMjhmY2E4ZWYwMGRmZDBiNWYxMDgxMzZhZTcyZmZkYzllZjI1ZjhhMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers professionally tuned with MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device Security 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Licorice Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c28"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), A315-51-33TS", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), A315-51-33TS", + "price" : "653", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), A315-51-33TS", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-GNPSI-012-Laptops-491379571-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDIwOHxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDk0Lzg5OTc0MjA5OTA0OTQuanBnfDUyNjlkYjYwOTI5Y2E1ZDI3NDUyYjBlMWE4YmViY2IyY2Q1NTQ4YWI3MGI1ODE5YzVhM2VlYzliYmI4OWUyMTE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-51-33TS" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz 7th Gen Intel Dual-Core i3-7130U" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4810" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.7" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6.5 hours Battery Life
  • " + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.095" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Acer", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c29"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3567", + "price" : "581", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-15-3567-Laptops-491420009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDg1fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ny9oMzgvOTAzOTE1ODgwNDUxMC5qcGd8MTNjYmYyMzQzODg2NDNlZjQwZTgzMjAzODEzNjczNTFhYWVhZDA3N2Q2NWI3ZDRmYTkyZThjMGUyZGM1ZDhlMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Optimized Heat Dissipation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Core i3" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2246" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2a"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0077tu", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0077tu", + "price" : "743", + "sku" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0077tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4LR21PA-Laptops-491392236-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Njc4M3xpbWFnZS9qcGVnfGltYWdlcy9oYzkvaGJkLzkwMzE2MzQ0NTI1MTAuanBnfDNiODVhZGZjMDM5Y2VhZTdmMjk0YzczNWM4MGRjYzIxZjYxNWVjM2NmN2VhYjI3NzQyZmMxMzdlNDI3NjNlOTk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0077tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel i3-8130U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2b"), + "name" : "iBall 29.46 cm (11.6 inch) CompBook Laptop (Atom/2 GB/32 GB), Excelance-OHD", + "description" : "iBall 29.46 cm (11.6 inch) CompBook Laptop (Atom/2 GB/32 GB), Excelance-OHD", + "price" : "189", + "sku" : "iBall 29.46 cm (11.6 inch) CompBook Laptop (Atom/2 GB/32 GB), Excelance-OHD", + "imageUrl" : "https://www.reliancedigital.in/medias/iBall-OHD-IPS-Laptops-491420283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTg1MHxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDllLzkwNDI2OTE1MjI1OTAuanBnfGI2ZDJiOWI1ODE1MGI3Y2ZkYWQ0OGMwMTNiZDdjZjFiNTcxZTFiNzc5YzQwMTE5OGFlZDkzNzk3ZTA1NTgzZDk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "CompBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Excelance-OHD" + }, + { + "attributeName" : "Brand", + "attributeValue" : "iBall" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Atom x5-Z8350" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "10000" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Atom" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "Z8350" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1100" + }, + { + "attributeName" : "Width", + "attributeValue" : "30" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "iBall", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2c"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15-cs1000tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15-cs1000tx", + "price" : "984", + "sku" : "HP 39.62 cm (15.6 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15-cs1000tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5FP53PA-Laptops-491488119-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjg4OHxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGRkLzkwNzU4OTYwOTA2NTQuanBnfDZhMTcxYmFkMTg0YThiZTk0YmNjMDlkYmM3NjNhNTlmZGIzZjQwMDgzYjk3ZmI2MTBkNWU4MTkwOWQ3YjM2YWM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-cs1000tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1850" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.16" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2d"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15g-dr0006tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15g-dr0006tx", + "price" : "902", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15g-dr0006tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-B560133WIN9-Laptops-491420077-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDI2OTh8aW1hZ2UvanBlZ3xpbWFnZXMvaDE3L2hiNS85MDc1NjY3MjM4OTQyLmpwZ3w4NzZjMmUyM2FlZThmNWY5NmU4NDc4NWZmMDRiOWFlZWUwNzdiNWJlMWIzYzU1ZTRjNTBhOTBlOGU1ZTJhNTMx", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15g-dr0006tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz i5-8250U Intel Core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial Software" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX110" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2e"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.1 GHz/4 GB/1 TB), 15-da0098tu", + "description" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.1 GHz/4 GB/1 TB), 15-da0098tu", + "price" : "371", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.1 GHz/4 GB/1 TB), 15-da0098tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4ST41PA-ACJ-Laptops-491503337-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTc5N3xpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDUwLzkwODc1NjYxMTg5NDIuanBnfDlmZWQ2NWU5Zjg1OTZlYzI1NWM5MjRmMGM3ZDQ3OTU0YWJhNjgzNzA5Y2QyOWVhOWFkOTBmMmVkOWY4OTkxODQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0098tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Intel Celeron N4000" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Celeron" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N4000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "600" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2f"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i7/2.2 GHz/8 GB/1 TB + 256 GB), FX504GM-EN394T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i7/2.2 GHz/8 GB/1 TB + 256 GB), FX504GM-EN394T", + "price" : "1653", + "sku" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i7/2.2 GHz/8 GB/1 TB + 256 GB), FX504GM-EN394T", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-FX504GM-EN394T-Laptops-491488508-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzQ3fGltYWdlL2pwZWd8aW1hZ2VzL2g0YS9oZDgvOTA3NTg5NTQzNTI5NC5qcGd8MWI4NjdhYjNhODA4MTAxOTM1NjNlZTA1MTk1ZmVjNDk3MDA0NWFmYzZmYjZkMDRjMjAxMDJmZTUyN2IwMjM2Yw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GM-EN394T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB SATA + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Intel Core i7-8750H" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1060" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c30"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop (Core i5/1.8 GHz/8 GB/128 GB)", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop (Core i5/1.8 GHz/8 GB/128 GB)", + "price" : "1231", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop (Core i5/1.8 GHz/8 GB/128 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Air-Laptop-128-GB-33.78-cm-13.3-491297717-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzM4MXxpbWFnZS9qcGVnfGltYWdlcy9oNTEvaDU2Lzg5Mjg5MzA3NTg2ODYuanBnfDRhOTE0ZjE2YjhkZTY5ZGU4NDJmM2FjZmE1ZDNjNGM2Y2I4MTBkNzkxZjk3ZjZkNTIzNGZmOTY1ZGE4YjU2Nzc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS High Sierra" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Power adapter
  • AC wall plug
  • Power cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 12 hours wireless web" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "6000" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1350" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.7" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c31"), + "name" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "description" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "price" : "2463", + "sku" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9Q2HN-A-Laptops-491420041-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDkwMHxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaGYyLzkwNDI3MjM3MDA3NjYuanBnfDNlZTYyMTkwNTE0NTJkODAxMDU0ZTM0ODIwZGVkODlmNzc1ZjMzODhjMDk1MDNjNTVkZmM5OTQ5MzZjMWU1NmM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c32"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "price" : "962", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560133WIN9-Laptops-491420068-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDgxOHxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDkyLzkwNjk1Nzk1MDE1OTguanBnfDhmYTAwZWVjNTc5MmJlZTg5ZTU4MDYwMGM3ZGFhMzRiMGM3NzYxZDZkZGFlZjc0ZGQ5Y2JlNjExMWZiZjJkOTc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c33"), + "name" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i3/4 GB/1 TB), 81C800M7IN", + "description" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i3/4 GB/1 TB), 81C800M7IN", + "price" : "647", + "sku" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i3/4 GB/1 TB), 81C800M7IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81C800M7IN-Laptops-491420027-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDM3fGltYWdlL2pwZWd8aW1hZ2VzL2hlZi9oODYvOTA5MzQ0NjYzMTQ1NC5qcGd8NGMzYTg1ODg5NjExMTUxNjZhNzRmNjhkNDk1OTYzZThjZmMxNDNmZmQyNmVlMzAzNGIwMDAwYmU4M2E4OTY5NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10.4 hours" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Yoga" + }, + { + "attributeName" : "Model", + "attributeValue" : "520 81C800M7IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium metallic finish
  • \n
  • Harman Speakers with Dolby Audio Premium
  • \n
  • Faster data transfer with reversible port and secured login
  • \n
  • Visibly clear visual output from all angles
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c34"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.4 GHz/8 GB/1 TB), 15-da0435tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.4 GHz/8 GB/1 TB), 15-da0435tx", + "price" : "679", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.4 GHz/8 GB/1 TB), 15-da0435tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5CK37PA-Laptops-491488257-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc1MHxpbWFnZS9qcGVnfGltYWdlcy9oMDIvaDhlLzkwNzU3MzYzNDY2NTQuanBnfGJmYmM4MGZlODM2YjViMTNkZjE1NjU2NmQ0ZWQxNzhiZDIwMjBkZDU5ZmU5YWI5YTU1MDg5NGUzYTc4YjQ2NjA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0435tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.4 GHz 7th Generation Intel Core i3-7100U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX110" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2180" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c35"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i7/4.0 GHz/8 GB/2 TB + 128 GB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i7/4.0 GHz/8 GB/2 TB + 128 GB), 5570", + "price" : "1247", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i7/4.0 GHz/8 GB/2 TB + 128 GB), 5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560135WIN9-1-Laptops-491379694-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDAyN3xpbWFnZS9qcGVnfGltYWdlcy9oODkvaDBlLzg5Mzk2NDMyNDA0NzguanBnfGE4YzhiYTVkODFiOTEzNDkzYWQxYmU5OTdiOTllYzhmNjJlNmZkNGM2ZTVjYTI0NzVmMDZjMjQwMWY2ZTNjMzQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated widescreen HD 720 P webcam with dual digital microphone array
  • \n
  • Dual drives with 128GB Solid State Drive + 2TB 5400 rpm Hard Drive
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.0 GHz 8th Generation Intel Core i7-8550U processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "65" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers professionally tuned with MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c36"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Silver", + "price" : "1666", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREA2HN-A-Laptop-491503298-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Njg0NXxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaDA5LzkwNzA4MDM5MTA2ODYuanBnfGQ2ZjRhN2I0YzI4NTAxZWZkNjM2OTA5NjU0MTQ0N2FmNzlkM2FjMzIxY2E4MjBiMzhlNGU4MGZhNjcwM2RmMzE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c37"), + "name" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/16 GB/512 GB), 7386", + "description" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/16 GB/512 GB), 7386", + "price" : "1918", + "sku" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/16 GB/512 GB), 7386", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B565502WIN9-Laptops-491550710-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDIwfGltYWdlL2pwZWd8aW1hZ2VzL2g0ZS9oYjMvOTEwNTE2MzQxOTY3OC5qcGd8MWQwYmNhMWYzZGI2OTAyZDNjNGFjODYzZWU1OGJjNDc4YzIwYTQ1MTU1OGFkYTRhODM1N2Q1NGM2NmM0OGFhMA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7386" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i7-8565U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8565U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1450" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.77" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c38"), + "name" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i5/8 GB/256 GB), 7386", + "description" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i5/8 GB/256 GB), 7386", + "price" : "1534", + "sku" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i5/8 GB/256 GB), 7386", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B565501WIN9-Laptops-491550709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MzIwfGltYWdlL2pwZWd8aW1hZ2VzL2g5MC9oZTQvOTEwNTE2MzA5MTk5OC5qcGd8Njk0YjkyNTY0MGIxODU3ZmIzZGRkMTAwMDZlZGE5OTI5Njg0NjlmOTJhOTViYmExYWE4MGY4ZTFmODA3ZmQxZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7386" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1450" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.77" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c39"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (AMD/2 GHz/8 GB/1 TB), F570ZD-DM226T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (AMD/2 GHz/8 GB/1 TB), F570ZD-DM226T", + "price" : "1000", + "sku" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (AMD/2 GHz/8 GB/1 TB), F570ZD-DM226T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-F570ZD-DM226T-Laptop-491550902-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDk1fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oNjcvOTEyMjcwNzg2NTYzMC5qcGd8M2RkMzE4MGNkNWIwNWQwYmY2NjEwNmYyZmY5MWU2ZWFiOTFjZjg0MTAxYzBmNGI3NTExZDg1OTJmMDdkZWRhMA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "F570ZD-DM226T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz AMD Quad Core R5-2500U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "R5-2500U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3a"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 81DC00YEIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 81DC00YEIN", + "price" : "751", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 81DC00YEIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81DC00YEIN-Laptop-491550947-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzY4fGltYWdlL2pwZWd8aW1hZ2VzL2g4Yy9oMGYvOTEyMjcxNDgxMjQ0Ni5qcGd8NWM5ZWYxYzY3NjhhMzAwZjEzNTJiMDc3MDM2YjUxMDg3YzRkM2MwM2Q0YjZiY2NiOWYxYTM4N2U3ZTVlOGFkNA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "81DC00YEIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz 7th Gen Intel Dual Core i3-7130U" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.7" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i3-7130U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home & Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3b"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Space Grey", + "price" : "1956", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRE92HN-A-Laptop-491503297-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODU5MXxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaGJmLzkwNzA4MDQ4OTM3MjYuanBnfDA4ZmY4NzkwNDk0ZGVhMjhmNTcwMmEwN2IwNjc5N2RiNjA3YWY2MzAxMzQ5Y2QyNzgyMTdhODU0YWEzMDRiZWE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3c"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (8th Gen Core i5/3.4 GHz/4 GB/1 TB), 81DE011SIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (8th Gen Core i5/3.4 GHz/4 GB/1 TB), 81DE011SIN", + "price" : "750", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (8th Gen Core i5/3.4 GHz/4 GB/1 TB), 81DE011SIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81DE011SIN-Laptops-491419933-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODA1fGltYWdlL2pwZWd8aW1hZ2VzL2g4MS9oM2YvOTA0MjY3ODU0NjQ2Mi5qcGd8Mjk1M2VlMmUxYTJkNzM1OWUzZTdkYmJiNDhhYmYxOWY0M2YzZTRkZTFhZWU5NGJlYmFlM2Q0MTBiZTI3ZDU1Mg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81DE011SIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Prevents accidental hinge damages
  • \n
  • Sleek uni-body chassis with special protective finish
  • \n
  • Faster data transfer with reversible port for select series and faster Wi-Fi protocol
  • \n
  • Better sound quality
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3d"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 3000 Series Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3576", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 3000 Series Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3576", + "price" : "616", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 3000 Series Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3576", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B566534WIN9-Laptops-491488104-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODg5MXxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDlkLzkwNzU2NTQ5ODM3MTAuanBnfGE1NzgwNTM5NDU2MDg2Y2Q1MmM5YWQ0Yjc0NDAzNTRhMDRiZjM1N2JjYmU2NWU3M2MyM2UwNmI4NzIwMjQ5MWE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "3000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3576" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers with Waves MaxxAudio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2130" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3e"), + "name" : "HP 33.78 cm (13.3 inch) Spectre x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB/256 GB), 13-ap0121tu", + "description" : "HP 33.78 cm (13.3 inch) Spectre x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB/256 GB), 13-ap0121tu", + "price" : "2173", + "sku" : "HP 33.78 cm (13.3 inch) Spectre x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB/256 GB), 13-ap0121tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-6DA87PA-ACJ-Laptops-491550817-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oMzcvOTEyMDc1ODgyNDk5MC5qcGd8MjA1ZDEyY2JkZWUyZTZkMDAzMDY0M2VkNDU1NzY1YjI1OTlhZGZlNTc0ZmFkMjExNDA5ODVjOGEzZDAxYTVlZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spectre x360" + }, + { + "attributeName" : "Model", + "attributeValue" : "13-ap0121tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz 8th Generation Intel Core i5-8265U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "HP Audio Boost 2.0" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 12-month free trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Poseidon Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1320" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.88" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.79" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3f"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB), 15-cx0140tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB), 15-cx0140tx", + "price" : "1193", + "sku" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB), 15-cx0140tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4QM25PA-Laptops-491419997-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDAzM3xpbWFnZS9qcGVnfGltYWdlcy9oNzYvaDVhLzkwMDI4NDMzNzM1OTguanBnfDQxOWFkOGVkN2E0OGY2MjA2MzAxNGJmOTI2MTNlZmZhNDE1Y2NhZDgwMzNmN2I0Y2RlYjRmMDJmNjY3MTdiOGE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-cx0140tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 8th Gen Quad-Core i5-8300H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black, ultra violet logo" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2170" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.54" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.65" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c40"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0050tx", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0050tx", + "price" : "857", + "sku" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0050tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4LR35PA-Laptops-491420171-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzEyN3xpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDY3LzkwMTk5MzM0NTg0NjIuanBnfGQxNjA3OTk0NjZmNzYxNDI3MWViMTQxMWFhY2NlMDQyNGZkOTFjMGE1NzE1OTRhMzU4YTk4NDViYmM2NTU3YzI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0050tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Generation Intel Core i3-8130U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Windows 10 Home
  • \n
  • Wi-Fi and Bluetooth Compatible
  • " + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX 130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c41"), + "name" : "Dell 33.78 cm (13.3 inch) New Inspiron 13 5000 Series Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 5370", + "description" : "Dell 33.78 cm (13.3 inch) New Inspiron 13 5000 Series Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 5370", + "price" : "1021", + "sku" : "Dell 33.78 cm (13.3 inch) New Inspiron 13 5000 Series Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 5370", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-5370-8I5-Laptops-491362574-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDg2M3xpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGUyLzg5NjM4OTM1OTIwOTQuanBnfGRkYjBkNTgxMGExZThmNTg0YzcwOWM1MGM1ZmI5MzExZTYxZGJmMzQ5OThlNGNhN2JkNjJlZjFhMmMzODkyZDc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5370" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1396" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.39" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.99" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c42"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (AMD/2.5 GHz/4 GB/1 TB), 15-db0186au", + "description" : "HP 39.62 cm (15.6 inch) Laptop (AMD/2.5 GHz/4 GB/1 TB), 15-db0186au", + "price" : "545", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (AMD/2.5 GHz/4 GB/1 TB), 15-db0186au", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5KV06PA-Laptops-491503402-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDc4fGltYWdlL2pwZWd8aW1hZ2VzL2hiMS9oOWUvOTA4MDU0NDIzMTQ1NC5qcGd8MTI5Yzc2NDIyYjBiMjJmYTZmM2MzN2U0OWU0MjFkOWQ2YTg3ZjNkYjNhMjhkNDEzZWU2YmQyMzVhYmI1NDcwNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-db0186au" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz AMD Ryzen 3 2200U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Ryzen" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2200U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial offer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "Vega 3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c43"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GD-E4992T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GD-E4992T", + "price" : "1189", + "sku" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GD-E4992T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-FX504GD-E4992T-Laptops-491488510-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzQwfGltYWdlL2pwZWd8aW1hZ2VzL2hlNC9oN2QvOTA3NTkwMzQ5NjIyMi5qcGd8ZDE0OTcwYmRjOWIyMWJmYWVmODZiYjE1NjExYWM4ZDZhNWEyZmYwNTA5YWM1MDcyMzAxZmM2NGZlYTUzYWFmZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "Integrated Graphics: Intel UHD Graphics 630" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GD-E4992T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB SATA + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i5-8300H" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1050" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c44"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0053tx", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0053tx", + "price" : "1259", + "sku" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0053tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-x360-14-cd0053tx-Convertible-Laptop-35.56-cm-14-491392237-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDUwMXxpbWFnZS9qcGVnfGltYWdlcy9oODcvaDQ0LzkwOTI4NzE1ODU4MjIuanBnfDZmNjFmMDhlOTljYjI4ZDc3MmQ4YTAyMWJlM2ZlMWQ5NjNjZWJmODkxYmY5MjFkNWU0ZThhYTVmZTJiNjdjYWY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0053tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Core i5-8250U Processor (1.6 GHz base frequency" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pointing Device - HP Imagepad with multi-touch gesture support
  • Sensors - Accelerometer" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c45"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB), Silver", + "price" : "1738", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB), Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Pro-Laptop-33.78-cm-13.3-i5-2.3-GHz-128-GB-Silver-491297706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTc4MnxpbWFnZS9qcGVnfGltYWdlcy9oNDcvaDNhLzg4ODgxOTg3OTExOTguanBnfDMwZTc5NDAzYTYzNGQ0MzFmMjI1ZDNiODhiYjQxNGEwOWZlYTJiYjZjZjE3ZWU5NGU3MTJhNjg1MDg0OTdmMjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree Celsius" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 61W USB-C Power Adapter
  • USB-C Charge Cable (2m)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c46"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i7/1.8 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0055tx", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i7/1.8 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0055tx", + "price" : "1317", + "sku" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i7/1.8 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0055tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-x360-14-cd0055tx-Convertible-Laptop-35.56-cm-14-491392238-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQ0MHxpbWFnZS9qcGVnfGltYWdlcy9oNTYvaGU4LzkwOTM1MTM4MDU4NTQuanBnfDNkZDNiMTAyOThiNWY5NjkxNDc1MGI0ZTgxOGEyMTFhZTcyZWZhMTAyZjk0NGVkZTQzYmIxNmMyMWQzYWMyMmI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0055tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Core i7-8550U Processor (1.8 GHz base frequency" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors - Accelerometer; Gyroscope; eCompass
  • \r\n
  • Pointing device - HP Imagepad with multi-touch gesture support
  • \r\n
  • Security management - Kensington MicroSaver lock slot. Fingerprint reader
  • " + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • HP Active Pen
  • HP Trendsetter Bag
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "ENERGY STAR certified; EPEAT Silver registered" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c47"), + "name" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-G18:X19", + "description" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-G18:X19", + "price" : "1607", + "sku" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-G18:X19", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4RJ56PA-Laptops-491419998-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzIwN3xpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDdmLzkwMDI4NDA2ODY2MjIuanBnfDdmZmQzMzEyMDdiZTVmOGVkNzJiZjVmYzE1ZDAxM2Y4YWVkYmVmYThhMTZlMTYwODZiYjU1YjhiZGYzMTdhM2E", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Omen" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-dc0082tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2250" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "36" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c48"), + "name" : "Dell 39.62 cm (15.6 inch) G3 Series Gaming Laptop (8th Gen Core i7/8 GB/1 TB + 128 GB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) G3 Series Gaming Laptop (8th Gen Core i7/8 GB/1 TB + 128 GB), 3579", + "price" : "1396", + "sku" : "Dell 39.62 cm (15.6 inch) G3 Series Gaming Laptop (8th Gen Core i7/8 GB/1 TB + 128 GB), 3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-3000-SERIES-Laptops-491420040-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTg2fGltYWdlL2pwZWd8aW1hZ2VzL2gyYi9oMTkvOTA0MjY3OTIwMTgyMi5qcGd8MWRiMTE4OTlkMTllMWE1YThhYTVkNTljMTc1MGI0NjVmZTI4NzI4NTZjNzhhNTg4YTk2Y2MzY2IwMjIxMGI1NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7-8750H" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c49"), + "name" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-dc0084tx", + "description" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-dc0084tx", + "price" : "1955", + "sku" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-dc0084tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4RJ78PA-Laptops-491419999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDUzOXxpbWFnZS9qcGVnfGltYWdlcy9oMDYvaDdmLzkwMDI4NDYwNjA1NzQuanBnfDQ5ZjNkN2NiZmNmNmQ4ZmVhNmU0YmQ5MTI4MmUyYzYxNDU2YzhiNzM3NGJmN2JiNmRjZTJhODg4MmVhNzM0NTA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Omen" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-dc0084tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2250" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "36" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4a"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/128 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/128 GB), Space Grey", + "price" : "1738", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/128 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Pro-Laptop-33.78-cm-13.3-i5-2.3-GHz-128-GB-Space-Grey-491297705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzYyNHxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaDVhLzg5Mjg5MjI1NjY2ODYuanBnfGY4MjU0M2E4MjZkZDk2OTM4ZWZhMDVlNjU5MjdhN2YyNGU5YmI2NGFlNzJiMDkwMWI1Y2M1ODE3MDI1YzcwODA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS High Sierra" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 61W USB-C Power Adapter
  • USB-C Charge Cable (2m)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Iris Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours wireless web" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4b"), + "name" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Silver", + "description" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Silver", + "price" : "2463", + "sku" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9U2HN-A-Laptops-491420043-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTUyNHxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaGI0LzkwNDI3MDgxMDMxOTguanBnfDc0ZjE1M2RhYjg3MDVhYmE2NmZhMmMyOGI2MGQxMDcxZjZkOWQzMTkyZGYxODllOWY4Mzk1ZjdhNGVlNjVmYzE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4c"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Gold", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Gold", + "price" : "1666", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREE2HN-A-Laptop-491503300-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTc2OXxpbWFnZS9qcGVnfGltYWdlcy9oMzcvaDI0LzkwNzA4MTIxNjgyMjIuanBnfDI5MzA3OTQ2M2QxMGJjNDkzZTAyMDkwMWEzNWY0NDJlNTQyMjBlNDQ3NDU5MDFiMzQwNDJlZGVhOTkxZjE4OGU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4d"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "price" : "2028", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Pro-Laptop-33.78-cm-13.3-i5-2.3-GHz-256-GB-Space-Grey-491297707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzYyNHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaGUyLzg5Mjg5MTg2MzQ1MjYuanBnfGZhYzE5YjNhZTQwY2U5YjU1MWM4ZjhhOWVmODY3YjAyYWYxMjg2NmRkZDk1ZjBmNTQyMjViODQwODZmNWMyMTA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS High Sierra" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 61W USB-C Power Adapter
  • USB-C Charge Cable (2m)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Iris Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours wireless web" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4e"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/4 GB + 16 GB Optane/2 TB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/4 GB + 16 GB Optane/2 TB), 5570", + "price" : "979", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/4 GB + 16 GB Optane/2 TB), 5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-15-5570-Laptops-491420012-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjY0NXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDJjLzkwOTI4NzAyMDk1NjYuanBnfDc0MzM1NzU0NWEyOTJhOGJjYjQzNzAxMTY2ODU2ZmJhMmRiNWI4MTAxYzJiMjc2MDhlMDk5NGY5OGRhNDgzMjY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4f"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (8th Gen Core i5/8 GB/1 TB), 3576", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (8th Gen Core i5/8 GB/1 TB), 3576", + "price" : "902", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (8th Gen Core i5/8 GB/1 TB), 3576", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B566104WIN9-Laptops-491550715-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjEzfGltYWdlL2pwZWd8aW1hZ2VzL2gxYi9oZmQvOTEwNTE2Mzc0NzM1OC5qcGd8N2FlZTA3NjNlYTM2ZTFkYjlhZWU1OTdmZTM4ZTlhY2ViYjQ4ODQxNTVkYzAwM2I0YTI1ZmJiNDliMWIyNDA0Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3576" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2130" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c50"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i9/32 GB/1 TB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i9/32 GB/1 TB), 9570", + "price" : "3745", + "sku" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i9/32 GB/1 TB), 9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560012WIN9-Laptops-491392360-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMWMvaDY1LzkwMzE2MzM3OTcxNTAuanBnfGM2NWVlMjkwYjI3YzM5OGM5ZTc3OTBjZTQyMWFlYTFmYmU1NzMxNzEzMzU0YjA3ODBmYmE3Nzg4N2IwZGM3ZTg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6-Cell Lithium-Ion Battery
  • Widescreen HD (720p) Webcam Dual Array Digital Microphones
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Ultra HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "3840 x 2160 - Ultra HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i9-8950HK" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "6 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c51"), + "name" : "Lenovo 35.56 cm (14 inch) Yoga 530 Convertible Laptop (8th Gen Core i5/3.4 GHz/8 GB/512 GB), 81EK00ACIN", + "description" : "Lenovo 35.56 cm (14 inch) Yoga 530 Convertible Laptop (8th Gen Core i5/3.4 GHz/8 GB/512 GB), 81EK00ACIN", + "price" : "1390", + "sku" : "Lenovo 35.56 cm (14 inch) Yoga 530 Convertible Laptop (8th Gen Core i5/3.4 GHz/8 GB/512 GB), 81EK00ACIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81EK00ACIN-Laptops-491419972-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjMxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaDY5LzkwMzA2OTk1NDg3MDIuanBnfDNkMWJkZjNjYWQxYTM0YWU4NTFmMjQ0OTVmYzgyODAzMjU4ZjE5MzMzYTFiNGNjY2Q5ODViY2Y1NTUwNGRjZDI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Up to 10 Hours Battery Life
  • \n
  • 1 year ADP on Redemption
  • \n
  • Precise 4096 Point Sensitivity with Palm Rejection Technology
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Yoga 530" + }, + { + "attributeName" : "Model", + "attributeValue" : "81EK00ACIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1670" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c52"), + "name" : "Dell 39.62 cm (15.6 inch) New G7 15 Gaming Laptop (8th Gen Core i7/16 GB/1 TB + 128 GB), 7588", + "description" : "Dell 39.62 cm (15.6 inch) New G7 15 Gaming Laptop (8th Gen Core i7/16 GB/1 TB + 128 GB), 7588", + "price" : "1943", + "sku" : "Dell 39.62 cm (15.6 inch) New G7 15 Gaming Laptop (8th Gen Core i7/16 GB/1 TB + 128 GB), 7588", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-BLK-B568105WIN9-Laptops-491392358-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODE4N3xpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDg5LzkwMjY5MDExODA0NDYuanBnfDYzNjAxNWFkYzdiNjE3YjliZTI2Y2NlMTAyNTQ3NGQ4MmZiMTg3MDI4NDBkYmI4NmZjZGViZGRhZDFkZjNiNDY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "7588" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2630" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "27.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c53"), + "name" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/512 GB), Space Grey", + "description" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/512 GB), Space Grey", + "price" : "2753", + "sku" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/512 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9R2HN-A-Laptops-491420042-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDc3NnxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDhhLzkwNDI3MDk0MTM5MTguanBnfGE1OWM4OTAxMzE4YTVhZTBjNzA3Njk2ZjQ4YTI1MTEwNWM5ZmI5MzFmZjQwNTQ1ZDdjYzU2MTcyZDkxY2RjYjg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c54"), + "name" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 9370", + "description" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 9370", + "price" : "1682", + "sku" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 9370", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560022WIN9-1-Laptops-491433181-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTEyM3xpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDc4Lzg5OTk0NzIzMzI4MzAuanBnfDdlYTVkZjYzMDQ1N2ViNzgxNjkyNTQ1YWNlM2RkZmMyZmRjM2VlNzFkZWUzZDlkZTA0NmFlY2EyNzk0NWU0YjM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9370" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Stereo speakers professionally tuned with Waves MaxxAudio Pro
  • \n
  • 4 Digital Array Microphones
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c55"), + "name" : "Lenovo 33.78 cm (13.3 inch) Yoga 730 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/512 GB), 81CT003YIN", + "description" : "Lenovo 33.78 cm (13.3 inch) Yoga 730 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/512 GB), 81CT003YIN", + "price" : "1999", + "sku" : "Lenovo 33.78 cm (13.3 inch) Yoga 730 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/512 GB), 81CT003YIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81CT003YIN-Laptops-491419971-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDQ0LzkwNjQ3NzkxMjA2NzAuanBnfDdhZTgwNzAzNzc0MzdjZjhjY2RiY2Y3ZjgyNTMyM2M5ZjFmYzdmNmI3MTljMDhkNDljZWM1MTEwMzM0MTI0NjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Fingerprint Reader
  • \n
  • JBL Speakers
  • \n
  • 1 year ADP on Redemption
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Yoga 730" + }, + { + "attributeName" : "Model", + "attributeValue" : "81CT003YIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4 GHz 8th Gen Intel Core i7-8550U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "11.5 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "48" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Atmos" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1120" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.41" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "30.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c56"), + "name" : "Dell 39.62 cm (15.6 inch) New G7 Series 15 Gaming Laptop (8th Gen Core i9/16 GB/1 TB + 128 GB), 7588", + "description" : "Dell 39.62 cm (15.6 inch) New G7 Series 15 Gaming Laptop (8th Gen Core i9/16 GB/1 TB + 128 GB), 7588", + "price" : "2367", + "sku" : "Dell 39.62 cm (15.6 inch) New G7 Series 15 Gaming Laptop (8th Gen Core i9/16 GB/1 TB + 128 GB), 7588", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B568103WIN9-Laptops-491420057-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTc0MHxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaGZjLzkwMzE2MzIwOTMyMTQuanBnfDc4YzVhNjY5Y2QzMTk0YjBjNjRiNDI1MjI5OGE1N2I1ZTYzZDZhYzk1M2VhMjM2ZWY3YTMyMDRlNDdmMTkzZjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated Widescreen HD (720P) Webcam
  • Microsoft Office Home And Student 2016 DFO
  • 4-Cell Lithium-Ion Battery
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G7 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "7588 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i9-8950HK" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Licorice Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2630" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "27.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c57"), + "name" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i7/4.0 GHz/16 GB/512 GB), 9370", + "description" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i7/4.0 GHz/16 GB/512 GB), 9370", + "price" : "2450", + "sku" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i7/4.0 GHz/16 GB/512 GB), 9370", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560023WIN9-Laptops-491420197-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTI2NXxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDdkLzkwNDY5MDI5NjQyNTQuanBnfDBjYjVhMmU5NzY3OGRlYjRhNTk4ZDA3ZjAyOGU0MDg5OTZjNmY2MzdmN2FiNWM4NTI4ZjlhNGVhNTRlY2E5MDU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Stereo speakers professionally tuned with Waves MaxxAudio Pro
  • \n
  • Far field Cortana capable" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9370" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.0 GHz 8th Gen Intel Quad-Core i7-8550U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 19 hours and 46 minutes" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speaker" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 12 month Subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1210" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78 - 1.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c58"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 530S Laptop (Core i5/1.6 GHz/8 GB/512 GB), 81EV00BLIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 530S Laptop (Core i5/1.6 GHz/8 GB/512 GB), 81EV00BLIN", + "price" : "1318", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 530S Laptop (Core i5/1.6 GHz/8 GB/512 GB), 81EV00BLIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81EV00BLIN-Laptops-491550719-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTY2fGltYWdlL2pwZWd8aW1hZ2VzL2gwNS9oNzgvOTExMTU0MDMzNDYyMi5qcGd8NWIxOWE4ZjFkYTQ2YzBlMDVkMGVlZGZiZTNkNjQ5Y2RlZjQ5OWI0MzY0Nzc0NWZiYWI0ZDI2OTk3NjhmNThmYQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Series", + "attributeValue" : "530S" + }, + { + "attributeName" : "Model", + "attributeValue" : "81EV00BLIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8250U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Harman" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1690" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.89" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.49" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c59"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/256 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/256 GB), Platinum", + "price" : "1754", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/256 GB), Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-DAG-00105-Laptops-491420096-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEwMHxpbWFnZS9qcGVnfGltYWdlcy9oZmIvaDY1Lzg5OTcyNjY5MTUzNTguanBnfDkyNzE0ODU3N2U0YWE3NWI5MzY5ZDFhZTVmNTg1MGMwNzdjMDQzYmZkNTRhZGZjY2YzMmNhMzAzY2UzOTAzZTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "DAG-00105" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5a"), + "name" : "Dell 35.56 cm (14 inch) Convertible Laptop (8th Gen i3/8 GB/1 TB), 5482", + "description" : "Dell 35.56 cm (14 inch) Convertible Laptop (8th Gen i3/8 GB/1 TB), 5482", + "price" : "1037", + "sku" : "Dell 35.56 cm (14 inch) Convertible Laptop (8th Gen i3/8 GB/1 TB), 5482", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-5482-S-8i3-8-1-2-W10T-MS-FHD-Pen-14-491503260-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTY2fGltYWdlL2pwZWd8aW1hZ2VzL2g2Yi9oYTUvOTEwMTg2MzgxMzE1MC5qcGd8ODViYzdmOTAyMjE1M2Y0NzQ1OTU5NDNlNDI4YTk1M2MzMDFlNTg0ZjlmZDIyNGU4NGQ4NDc1MmMyYzMyMWJiMQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5482" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i3-8145U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.28" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5b"), + "name" : "Asus 39.62 cm (15.6 inch) Vivobook 15 Laptop (AMD/2.0 GHz/8 GB/1 TB), X505ZA-EJ274T", + "description" : "Asus 39.62 cm (15.6 inch) Vivobook 15 Laptop (AMD/2.0 GHz/8 GB/1 TB), X505ZA-EJ274T", + "price" : "638", + "sku" : "Asus 39.62 cm (15.6 inch) Vivobook 15 Laptop (AMD/2.0 GHz/8 GB/1 TB), X505ZA-EJ274T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X505ZA-EJ274T-Laptops-491550696-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTc2fGltYWdlL2pwZWd8aW1hZ2VzL2gzNi9oMzEvOTExNzQ1OTY0NDQ0Ni5qcGd8ZGEyZWFlYTI1NWMyOGIwNzgwNDU0NWY0ZjVmYTUyYTcyYWMzMzY2OGYzZTVmNzg3NDc5NjY0NmNiYWVlYmRhMw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Vivobook 15" + }, + { + "attributeName" : "Model", + "attributeValue" : "X505ZA-EJ274T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz AMD Quad Core R5-2500U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2500U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Grey" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5c"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/512 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/512 GB), Platinum", + "price" : "2986", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/512 GB), Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-DAL-00083-Laptops-491420098-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDMyMnxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaGMyLzg5OTcyNzI4NzkxMzQuanBnfDk5NmJjY2JkYTQwY2EyZmY4OGVjMjdkODAyNDI5YzRmYmQ0ZWJkODI2MTVjYjQxNWQxZDg2ZWQ0OGQwZmY0ZWM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "DAL-00083" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1280" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5d"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (8th Gen Core i3/3.40 GHz/4 GB/ 1 TB), 81F5010MIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (8th Gen Core i3/3.40 GHz/4 GB/ 1 TB), 81F5010MIN", + "price" : "729", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (8th Gen Core i3/3.40 GHz/4 GB/ 1 TB), 81F5010MIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo330S-81F5010MIN-Laptop-491503254-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDMzfGltYWdlL2pwZWd8aW1hZ2VzL2gwNi9oZmMvOTA5MjY5NTMyNjc1MC5qcGd8ZmY2ZTYwNmFmODgyNmY1YzYyNmNmMGRiMzFlOTNhZDliYzZkZGI0YWNkNDE3MzM5NTM5NjEyOTUzZmY1NmJmYw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "81F5010MIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.40 GHz 8th Gen Intel Core i3-8130U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Faster data transfer with reversible port and latest Wi-Fi protocol
  • \n
  • Visibly clear visual output from all angles
  • \n
  • A cover Material: AI Stamping(Anodized)
  • \n
  • C cover Material: PC-ABS
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 year free McAfee Live Safe support
  • \n
  • Lenovo App Explorer
  • \n
  • Lenovo Companion 3.0
  • \n
  • Lenovo ID
  • \n
  • Lenovo Settings
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1670" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5e"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB), 15-DA1030TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB), 15-DA1030TU", + "price" : "742", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB), 15-DA1030TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP15-DA1030TU-5KV06PA-ACJ-Laptop-491503535-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk3OHxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaGE2LzkwOTI2OTcyOTI4MzAuanBnfGY4ZGY5ZDRlMTk5Njc3NTg4N2YwMDliZThmMmVjMzZkMjI1NDk3YTlkZTIxNGYxOTMxZmU1MDNkNDRkYzUyNTc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "RJ-45" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-DA1030TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touchpad with multi-touch gesture support
  • \n
  • Dual Speakers
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe (30 Days Trial)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2180" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.59" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.61" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5f"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/1 TB + 128 GB), 7570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/1 TB + 128 GB), 7570", + "price" : "1336", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/1 TB + 128 GB), 7570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A569108WIN9-Laptops-491392361-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDgwNHxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGVhLzkwMDI4MTU1MjA3OTguanBnfGU5ZWQ2MjZjYWRiNDIzODQ0ZmM4MDc2MTIzM2U1ZGQ4MDJkMDQ2MjBhYmZhNzk4NDU3ZDZmNjE1NTFhYzM4Y2Q", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4 GHz 8th Gen Six-Core i7-8550U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo Speaker" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1995" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.14" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.45" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c60"), + "name" : "Dell 43.94 cm (17.3 inch) New Alienware 17 Gaming Laptop (8th Gen Core i9/5.0 GHz/32GB/1 TB + 1 TB), B569902WIN9", + "description" : "Dell 43.94 cm (17.3 inch) New Alienware 17 Gaming Laptop (8th Gen Core i9/5.0 GHz/32GB/1 TB + 1 TB), B569902WIN9", + "price" : "5653", + "sku" : "Dell 43.94 cm (17.3 inch) New Alienware 17 Gaming Laptop (8th Gen Core i9/5.0 GHz/32GB/1 TB + 1 TB), B569902WIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B569902WIN9-Laptops-491488284-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjgxNHxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDJlLzkwNzU2NTUzMTEzOTAuanBnfDQ1OGY0ZGMzN2U0NzExMThhNGU3NmQ5Nzc5MzNkM2NiYmNjMmIwNWU2OGVjMDJhN2ViZGQ3ZDRkOGU0MTUxYzg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Alienware" + }, + { + "attributeName" : "Model", + "attributeValue" : "B569902WIN9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "43.94 cm (17.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1440" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1TB PCIe SSD + 1TB HDD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "5.0 GHz 8th Gen Intel Core i9-8950HK" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "5" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 12 month Subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1080" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4420" + }, + { + "attributeName" : "Width", + "attributeValue" : "42.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "33.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c61"), + "name" : "Dell 39.62 cm (15.6 inch) New G3 Series Laptop (8th Gen Core i5/8 GB/128 GB + 1 TB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) New G3 Series Laptop (8th Gen Core i5/8 GB/128 GB + 1 TB), 3579", + "price" : "1276", + "sku" : "Dell 39.62 cm (15.6 inch) New G3 Series Laptop (8th Gen Core i5/8 GB/128 GB + 1 TB), 3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560107WIN9-Laptops-491550950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzgwfGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oZjEvOTEyMzA4OTkwNzc0Mi5qcGd8ZGM2YTg4Mjc4ZGJjMDA4ZTUxMDQzYTQxOWY4NWFhNjExODYxODQ3OGVhNjA0OWZmYTM0MzYwY2YwZjVkY2FlNw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Processor Speed: up to 4.0 GHz with Turbo Boost
  • \n
  • Dual Array Digital Microphone
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB SSD + 1 TB HDD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Upto 4.0 GHz 8th Gen Intel Quad-Core i5-8300H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device Security 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c62"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 3567", + "price" : "638", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-15-3567-Laptops-491420010-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDQ1NnxpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDYzLzkwMDI4NTE3NjIyMDYuanBnfGIyZGFjOTlmYWZjMTA2ZTVjYWE2N2RmZGMyZDBjMDZmMDY2MGNiNGVhMGEzZWJmNjRjZWVkMTNmMjEzOGY1ODQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz 6th Gen Core i3-6006U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2246" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c63"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 15-bs661tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 15-bs661tx", + "price" : "662", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 15-bs661tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3FH80PA-ACJ-Laptops-491379549-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzQzNnxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaDc4Lzg5MjIwNDYzOTg0OTQuanBnfDc0NTUwOGIwNjMzNWQ3YWM2ZmQzMjhhYTdmODI1YjJkNjI4NGNiNjk0MGQ5NjM0MGY0MWU4N2RkYmI1YTExM2U", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs661tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Intel Core i3-6006U" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sparkling black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1860" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c64"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/8 GB/128 GB), KJR-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/8 GB/128 GB), KJR-00015", + "price" : "1290", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/8 GB/128 GB), KJR-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJR-00015-Laptops-491419884-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2hkZC9oZTQvOTAzOTEzNjkxNTQ4Ni5qcGd8NjIyZWFjZGY5ZWMxNDI3N2IzZjI1MWZmZGQ4NmRmN2M5MmUxYTMxYzJjODNjYjNiM2UxY2M0YWE3ODBjYjRlYg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : " Quick Start Guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJR-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time: Up to 13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM chip for enterprise security" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Windows 10 Pro Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.06" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c65"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/4 GB/128 GB), FJT-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/4 GB/128 GB), FJT-00015", + "price" : "1160", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/4 GB/128 GB), FJT-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-FJT-00015-Laptops-491379596-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTQ2fGltYWdlL2pwZWd8aW1hZ2VzL2g0NS9oOGIvOTAzOTEyNjg4ODQ3OC5qcGd8MTJiMDRmNGQ5MDIzOThkNDA1ZmZiOTJiYTMyMjczYjk0MTRlZjZmMGM1ZjcyNDQwMTUwZTk2M2UyMDQ5ZWMxZA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : " Quick Start Guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "FJT-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time: Up to 13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM chip for enterprise security" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Windows 10 Pro Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.06" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c66"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/512 GB), FKH-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/512 GB), FKH-00015", + "price" : "2971", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/512 GB), FKH-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-FKH-00015-Laptops-491379599-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjQ4fGltYWdlL2pwZWd8aW1hZ2VzL2g4MC9oYjcvOTAzOTEzNzI0MzE2Ni5qcGd8Y2YwZjcwNjQxMGY1NjM0YWMwMzRhZWM0YWRhZWFmZmI5YzI4NjNhZjU4NmNkOTI1MjE4MDZjZTE2MjJiMGQ0Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "FKH-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time: Up to 13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i7" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM chip for enterprise security" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Windows 10 Pro Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.06" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c67"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD/1.80 GHz/4 GB/1 TB), A315-21-27XS", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD/1.80 GHz/4 GB/1 TB), A315-21-27XS", + "price" : "403", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD/1.80 GHz/4 GB/1 TB), A315-21-27XS", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-GNVSI-011-Laptops-491488363-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ5M3xpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDRlLzkwODc1NjY3NzQzMDIuanBnfGFjZTUzNWIxYzY4MGJmYWY5ZTcwZDVhZTJkMGUwMzUwZDhkYjY2MWYxYjViZDZhM2Q4ZjBhMzYzOWQ5ODJhNTE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-21-27XS" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.80 GHz E2-9000 Dual-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4810" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9000" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:09" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Obsidian Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lithium Polymer Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c68"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/4 GB/1 TB), 81DC00LCIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/4 GB/1 TB), 81DC00LCIN", + "price" : "651", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/4 GB/1 TB), 81DC00LCIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-332-81DC00LCIN-491488293-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzAxNnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaGIzLzkwNjQ2NzE3MDcxNjYuanBnfDk3MWU4Yzk3MDk4OTI2MTVhM2ZlNjU1ODQ5NWU3NzA3YmViOTA5MGU5MzQxNWQzODU2Y2ExNDlhMzhkZjU2NmM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81DC00HEIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Intel Core i3-7100U Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i3-7100U" + }, + { + "attributeName" : "Features", + "attributeValue" : "Webcam - HD 720P" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • MS Office H&S 2016
  • \n
  • Lenovo App Explorer
  • \n
  • Lenovo Companion 3.0
  • \n
  • Lenovo ID
  • \n
  • Lenovo Settings
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c69"), + "name" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 14-bf175tx", + "description" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 14-bf175tx", + "price" : "1005", + "sku" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 14-bf175tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3GJ93PA-ACJ-Laptops-491379557-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjM5MnxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaGU4Lzg5MDQxNjYxNzg4NDYuanBnfGJhZDRjNmVhYTI5ZWFmNjI5ODNkODlkZmFjMmNlMGUzOTEyZjE4MGJhNTM4ODdlN2E4MDhhYzUxMmMyZDg0ZGQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "On-site Warranty" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-bf175tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz 8th Generation Intel Core i5 processor" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1540" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.76" + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6a"), + "name" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), 5378", + "description" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), 5378", + "price" : "785", + "sku" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), 5378", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-13-5378-Convertible-Laptop-33.782-cm-13.3-491362572-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTM2fGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oYjAvODg4MzY5NTcxNDMzNC5qcGd8ZjMxZThiNDkyNGRmY2U4ZjJkNDM2OGFlYWI0ZThiZDYxODQwODZhZGNiMzgzNDQ5ODRjMDcxMzllZGVmMDdiNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "2.04" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6b"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51", + "description" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51", + "price" : "580", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Aspire-A515-51-Laptop-39.62-cm-15.6-491351118-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxNXxpbWFnZS9qcGVnfGltYWdlcy9oNWQvaGNmLzg4ODgyMDQyMzA2ODYuanBnfDJkMzMxMTRhN2RlMzhmNDExMzUxY2VhN2VmOTdmZTg2YWMwMDkxMDBkZGMzOWYwZDM0MTg1ODM1N2ZlMmJhYTM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3-pin 45 W AC adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6c"), + "name" : "Acer 29.46 cm (11.6 inch) Spin 1 Convertible Laptop (Pentium/4 GB/500 GB), SP111-31", + "description" : "Acer 29.46 cm (11.6 inch) Spin 1 Convertible Laptop (Pentium/4 GB/500 GB), SP111-31", + "price" : "508", + "sku" : "Acer 29.46 cm (11.6 inch) Spin 1 Convertible Laptop (Pentium/4 GB/500 GB), SP111-31", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Spin-1-SP111-31-Convertible-Laptop-29.46-cm-11.6-491351114-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjA2MnxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDMxLzg4ODgyMDgxNjI4NDYuanBnfGU2NDYxNjQ4Njk1NWVkYjg3Yzg2OTgzYzQzNDg3NTBlYTJhY2ZhYjY1NjNlOWM2ZmY0ODZmZjU1NDdmODdhNjg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "2.03" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N4200" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6d"), + "name" : "Acer 35.56 cm (14 inch) Swift 3 Laptop (7th Gen Core i3/4 GB/256 GB), SF314-52", + "description" : "Acer 35.56 cm (14 inch) Swift 3 Laptop (7th Gen Core i3/4 GB/256 GB), SF314-52", + "price" : "798", + "sku" : "Acer 35.56 cm (14 inch) Swift 3 Laptop (7th Gen Core i3/4 GB/256 GB), SF314-52", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Swift-3-SF314-52-Laptop-35.56-cm-14-491351112-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDAxMnxpbWFnZS9qcGVnfGltYWdlcy9oZmQvaGQzLzg4ODgyMTE0Mzk2NDYuanBnfGY1ZWY5ZTYyNjk2ZDdkZDYyYzlkMGNhNTNjYTYyZjRiMjFmN2YxZTMwZjBjYTMzMjRiZDE5YjlmMjM3N2ZiOTg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6e"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51G", + "description" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51G", + "price" : "653", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51G", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Aspire-A515-51G-Laptop-39.62-cm-15.6-491351119-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTkyM3xpbWFnZS9qcGVnfGltYWdlcy9oNGQvaDFmLzg4ODgyMDA2MjYyMDYuanBnfGRjOGIyNTdmMzk0YTI5YWNkNDExY2U2OTYyMzVlMDdmMzI3NjdhNWU1YzA3NzJmNTBmY2EwZDY0ZDEyOWNhYjg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3-pin 65 W AC adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6f"), + "name" : "Acer 39.62 cm (15.6 inch) Nitro 5 Gaming Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), AN515-31", + "description" : "Acer 39.62 cm (15.6 inch) Nitro 5 Gaming Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), AN515-31", + "price" : "928", + "sku" : "Acer 39.62 cm (15.6 inch) Nitro 5 Gaming Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), AN515-31", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Nitro-5-AN515-31-Gaming-Laptop-39.62-cm-15.6-491351122-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTg1NHxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaDA5Lzg4ODgyMTkwNDE4MjIuanBnfDk1YzVlNGMzYWEwOGMzNGFkY2I5ZDMyZjk2ZGJmOTY0ODg5MGYxNDYwOGM2OTI5YWM3NWI0NTJkZWRlMTM0NWU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c70"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Power Gaming Laptop (7th Gen Core i5/2.5 GHz/8 GB/1 TB), 15-cb518tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Power Gaming Laptop (7th Gen Core i5/2.5 GHz/8 GB/1 TB), 15-cb518tx", + "price" : "1183", + "sku" : "HP 39.62 cm (15.6 inch) Pavilion Power Gaming Laptop (7th Gen Core i5/2.5 GHz/8 GB/1 TB), 15-cb518tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-Power-15-cb518tx-Laptop-39.62-cm-15.6-491351133-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODI1OXxpbWFnZS9qcGVnfGltYWdlcy9oNDUvaGViLzg4ODgyMTc3MzExMDIuanBnfDRiOGE1NjhlNDcxMTA4MjljNDc3MjljMGM4YTQxM2Q4YTAzYWVkZjE1NzAzYmZhOTI5MzMwMzc2OTIxMmYyNjY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7300HQ" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c71"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i5/3.4 GHz/8 GB/1 TB + 128 GB), 7570", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i5/3.4 GHz/8 GB/1 TB + 128 GB), 7570", + "price" : "1225", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i5/3.4 GHz/8 GB/1 TB + 128 GB), 7570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-15-7570-Laptop-39.62-cms-15.6-8i5-8-GB-1-TB-128-GB-491351138-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTYzMHxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaGNiLzg5ODIyNjQ0NDcwMDYuanBnfDU3OTUxMGViMmYzYzZiZDJkOTM1MjMzY2Y3NjI3N2JhOTk5NzJjOTQ4YmQyMDhjZGY0ZDE0ZWE1MDZhYzUwMDE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "up to 3.4 GHz 8th Gen Intel Core i5-8250U Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 32 GB" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers professionally tuned with MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee(R) Multi Device Security 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "940MX" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.004" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.14" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.45" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c72"), + "name" : "Lenovo Ideapad 520 81BF00AQIN Laptop, 39.62 cm (15.6)", + "description" : "Lenovo Ideapad 520 81BF00AQIN Laptop, 39.62 cm (15.6)", + "price" : "1121", + "sku" : "Lenovo Ideapad 520 81BF00AQIN Laptop, 39.62 cm (15.6)", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-IdeaPad-520-81BF00AQIN-Laptops-491351125-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzExfGltYWdlL2pwZWd8aW1hZ2VzL2hjZi9oODIvOTA0NDc0NzE1NzUzNC5qcGd8NzlkNjE4MDNmNGM4MDA4ZmZjY2M0NTk5NDc0MzgxNjVjNzlmYzI4Nzc5ZWEzYTc0ZTZmNWVhMTUxYjRmODUxYg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "520 81BF00AQIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.40 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8250U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX150" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c73"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (Pentium/1.10 GHz/4 GB/500 GB), ES1-533", + "description" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (Pentium/1.10 GHz/4 GB/500 GB), ES1-533", + "price" : "377", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (Pentium/1.10 GHz/4 GB/500 GB), ES1-533", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Aspire-ES1-533-Laptop-39.62-cm-15.6-491297538-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjEzNnxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDYzLzg5NTQ4OTkyNjc2MTQuanBnfDE1MDkxYWYxMzEyZTMwOWNjNTVmOThhNTRlMWZiNGQxMzViN2MxNzcxMjUzZTdjNTcxYTU5ODU1MjM5ZGRiNzA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire" + }, + { + "attributeName" : "Model", + "attributeValue" : "ES1-533" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "500 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Pentium N4200 Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3220" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N4200" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "505" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2400" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.46" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.18" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c74"), + "name" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 3KW66PA", + "description" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 3KW66PA", + "price" : "1254", + "sku" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 3KW66PA", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3KW66PA-ACJ-Laptops-491379556-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzU4MXxpbWFnZS9qcGVnfGltYWdlcy9oNGYvaGQ3Lzg5MDQxNzY1MzM1MzQuanBnfDNlMTUzYWYxNTE1MmYyYjRlN2NhZTVkOWRmODhiMGIxZmVhOWFjMGRhYTg3YWFiYTk5NzJmMTQwODQ1NDVjOTg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-ba153tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz 8th Generation Intel Core i7 processor" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "On-site Warranty" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "33.48" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.69" + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c75"), + "name" : "HP 33.78 cm (13.3 inch) Spectre x360 Laptop (8th Gen Core i5/1.6 GHz/8 GB/360 GB), 13-ae502tu", + "description" : "HP 33.78 cm (13.3 inch) Spectre x360 Laptop (8th Gen Core i5/1.6 GHz/8 GB/360 GB), 13-ae502tu", + "price" : "1789", + "sku" : "HP 33.78 cm (13.3 inch) Spectre x360 Laptop (8th Gen Core i5/1.6 GHz/8 GB/360 GB), 13-ae502tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-13-ae502tu-Laptops-491379635-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTIzNXxpbWFnZS9qcGVnfGltYWdlcy9oZTYvaDBkLzg5NTYyNDIzOTUxNjYuanBnfGJlZDBmMjAwMmQ5YTEwYzA5MzEwYjJjMjEzOGMyYzEyMzAwODEyODQ4MDRiMDU3YTExMjkyN2VhN2YwMDY1Yjk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Accelerometer" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spectre x360" + }, + { + "attributeName" : "Model", + "attributeValue" : "13-ae502tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "360 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz 8th Generation Intel Core i5 processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark ash silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1260" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "
  • ENERGY STAR certified
  • \n
  • EPEAT Silver registered
  • " + }, + { + "attributeName" : "Width", + "attributeValue" : "30.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c76"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/1 TB), 1796", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/1 TB), 1796", + "price" : "3261", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/1 TB), 1796", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-FKK-00015-Laptops-491419866-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjgxMnxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDY2Lzg5OTc0MjIwMzkwNzAuanBnfDdiMTIzNTg3ZjBiODU5NTQ0MjdmMjBkMGUxMjQ2YjljYjk2ZTQxMzQ2Nzg4OGRkYjU4YjE5NDg2MjM0YWU4NWU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect/Mini DisplayPort/Cover port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dolby Audio Premium
  • \n
  • Windows Hello Face Authentication Camera
  • \n
  • Surface Connect
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "1796" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver " + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.142" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c77"), + "name" : "Asus 39.62 cm (15.6 inch) TUF Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), FX504GD-E4363T", + "description" : "Asus 39.62 cm (15.6 inch) TUF Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), FX504GD-E4363T", + "price" : "1073", + "sku" : "Asus 39.62 cm (15.6 inch) TUF Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), FX504GD-E4363T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-FX504GD-E4363T-Laptops-491419942-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTYwOXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDIzLzkwMDI4Mjg3NTkwNzAuanBnfDEyMDIyMTBkYjlmMjFjNjU1OWNhZWZhMzZkMTk5MmRkOGJjOWE4MDE3OWFiOWVkMjRjMzdjOGY4NGEwZDc0MzM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "TUF" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GD-E4363T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 8th Gen Core i5-8300H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black Metal" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c78"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/8 GB/1 TB), 15-bs674TX", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/8 GB/1 TB), 15-bs674TX", + "price" : "647", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/8 GB/1 TB), 15-bs674TX", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4LQ99PA-Laptops-491392285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM3fGltYWdlL2pwZWd8aW1hZ2VzL2g1ZC9oZmQvOTAzNjE3NDQ1ODkxMC5qcGd8NmFlOWE2ZTdmODA3NTM5YzEzODk1MzUwZDJhY2RhODI3OGEwZTE2ZmQyMzA5NTliM2FhODQyOGUwMmYxYmMxOQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs674TX" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • HP TrueVision HD Webcam – 1280 x 720 by 30 frames
  • Touchpad with Windows 10 Multi-touch gesture support
  • Full-size Textured Island Style Keyboard
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.37" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c79"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron G3 Series Gaming Laptop (8th Gen Core i5/8 GB + 16 GB Optane/1 TB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron G3 Series Gaming Laptop (8th Gen Core i5/8 GB + 16 GB Optane/1 TB), 3579", + "price" : "1170", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron G3 Series Gaming Laptop (8th Gen Core i5/8 GB + 16 GB Optane/1 TB), 3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560112WIN9-Laptops-491420195-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTA2fGltYWdlL2pwZWd8aW1hZ2VzL2gyYS9oNWMvOTA5MzUyOTA3NTc0Mi5qcGd8MGQwNjBjNTkyYTc2ZmI0YmYxMDhlOTMyZTliMmJhMjQyZjBhYTQ4ZDFlOGI1YjllYzk5OTBmZDIzNWYyODBmYg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i5 Quad-Core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7a"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/128 GB), LGP-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/128 GB), LGP-00015", + "price" : "1218", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/128 GB), LGP-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LGP-00015-Laptops-491550730-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjUwfGltYWdlL2pwZWd8aW1hZ2VzL2hhNS9oNjQvOTEzMDM0MDI1MzcyNi5qcGd8ZWJkMzI5N2JjMTE3ODYxOTE5YWVhZTU4NWVhNzY4Yzc1NjMzMjljZmEwZTA5YzE3MTgyYTdiNjNlNTU3MDVlMQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "LGP-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i5-8350U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8350U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7b"), + "name" : "Lenovo 39.62 cm (15.6 inch) Laptop (AMD A6/4 GB/500 GB), V110", + "description" : "Lenovo 39.62 cm (15.6 inch) Laptop (AMD A6/4 GB/500 GB), V110", + "price" : "653", + "sku" : "Lenovo 39.62 cm (15.6 inch) Laptop (AMD A6/4 GB/500 GB), V110", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-80TDA013IH-Laptops-491503406-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTE0NnxpbWFnZS9qcGVnfGltYWdlcy9oNjYvaDdiLzkwNzU3NjQ1MjcxMzQuanBnfGU1OGI2MGUyNTFmOWM3N2RjODNjODQwYjcyOWViZTliMzkyNzRmY2FlNjU2MGViN2JiYjgxYWQwYzE1YmYxYjk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "V110" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "500 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9210" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9210" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Mono" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R5 M430" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1900" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7c"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Space Grey", + "price" : "1666", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRE82HN-A-Laptop-491503296-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTYwNnxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGIwLzkwNzA4MDQyMzgzNjYuanBnfDA0YTJiMzc2ZTc0N2RiNTM1NGY2MTYwMmIzZTJiYzMyMjBjYWJjNTI1YWM5YTFiZmJlYjkyZWRmYmQzNDUzNzQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7d"), + "name" : "Dell 33.7 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/4 GHz/16 GB/512 GB), 7373", + "description" : "Dell 33.7 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/4 GHz/16 GB/512 GB), 7373", + "price" : "1522", + "sku" : "Dell 33.7 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/4 GHz/16 GB/512 GB), 7373", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-13-7373-Convertible-Laptop-33.7-cm-13.3-491351102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODI2MXxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGQyLzg5ODIyNTg3NDUzNzQuanBnfDQxN2MyNjdmN2U3OGU2ZTc1OGU1NWJmYzcyYmRmYTdkMGFlMjY4Y2MxOTFkZjc5Y2ZlMzNhYzgwYjgyNDQzNWI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7373" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.7 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8550U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Era Gray" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1450" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.551" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.96" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.57" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7e"), + "name" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 14-bf177tx", + "description" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 14-bf177tx", + "price" : "1254", + "sku" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 14-bf177tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3GJ95PA-ACJ-Laptops-491379558-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDY2N3xpbWFnZS9qcGVnfGltYWdlcy9oZjQvaDJjLzg5MDQxNzc1MTY1NzQuanBnfDAyMjVhOWE0MzI4MjA0NDI4Y2M0MmM5M2RmMmVmZTdjMTIyYTQ4MWYzNjA5MjZlNDJiZGJlM2ViMjY4NzU1MGI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "On-site Warranty" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-bf177tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz 8th Generation Intel Core i7 processor" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1540" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.76" + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7f"), + "name" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/8 GB/256 GB), 9360", + "description" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/8 GB/256 GB), 9360", + "price" : "1450", + "sku" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/8 GB/256 GB), 9360", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560034WIN9-1-Laptops-491351140-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzM2OXxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDI5Lzg5NjM4OTg1NzI4MzAuanBnfDFlM2E4ZDBkYmY3YzExMmFkYjliYWEzNjM0ZWE0MzlkNjJkYWRiNTZkMWQyYTQ5NTg3N2M1NzVjMWVmNDE4MzY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9360" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c80"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD/8 GB/1 TB), 5575", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD/8 GB/1 TB), 5575", + "price" : "777", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD/8 GB/1 TB), 5575", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560119WIN9-Laptops-491379691-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzExM3xpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDU1Lzg5Mzk2NDI5MTI3OTguanBnfDc5MTZjNjcxOTY0NDRkMDc5ZmE5ZDNhYmZlNDlkNGY5MzFlM2NkNmU2Mjk3YThjZDBkZDgzMjMwMDc5YjdjMjA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5575" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD Ryzen 5 2500U processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2500U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers" + }, + { + "attributeName" : "Features", + "attributeValue" : "Integrated widescreen HD 720 P webcam with dual digital microphone array" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "Vega8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2221" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c81"), + "name" : "Asus 39.62 cm (15.6 inch) VivoBook S15 Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), X510UA-EJ770T", + "description" : "Asus 39.62 cm (15.6 inch) VivoBook S15 Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), X510UA-EJ770T", + "price" : "566", + "sku" : "Asus 39.62 cm (15.6 inch) VivoBook S15 Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), X510UA-EJ770T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X510UA-EJ770T-Laptops-491379660-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODE0NnxpbWFnZS9qcGVnfGltYWdlcy9oOWYvaDVkLzg5NTYyMjU2ODM0ODYuanBnfDVjMzlhNjNmNTVhNmQzNjY4NjgxOWEyMDllYmEzMWYxZTJhYjYzMGQ3NjIyMWNlN2Y2YTU0NjAxYzQyZWNmNjc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "VivoBook S15" + }, + { + "attributeName" : "Model", + "attributeValue" : "X510UA-EJ770T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.4 GHz 7th Generation Intel Core i3-7100U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.1" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c82"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (AMD/4 GB/1 TB), 5575", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (AMD/4 GB/1 TB), 5575", + "price" : "600", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (AMD/4 GB/1 TB), 5575", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-5575-Laptops-491419930-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU4MXxpbWFnZS9qcGVnfGltYWdlcy9oNDYvaDJhLzkwMzkxNTc4MjE0NzAuanBnfGUxNWIwYzdjZjBkMTU4M2JkOTUzYjlhN2JjOTQ4ZmFhMDUzMDU1YjM3NzljZDE2MDJlNjMxODkzMTJlMDYyMGM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Optimized Heat Dissipation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD Ryzen 3" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5575 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2200U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "Vega 3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2221" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c83"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Netbook Laptop (Pentium/2.7 GHz/4 GB/1 TB), 81D100C7IN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Netbook Laptop (Pentium/2.7 GHz/4 GB/1 TB), 81D100C7IN", + "price" : "451", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Netbook Laptop (Pentium/2.7 GHz/4 GB/1 TB), 81D100C7IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81D100C7IN-Laptops-491419908-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODA1fGltYWdlL2pwZWd8aW1hZ2VzL2gzNi9oYzYvOTAzOTE1MjE4NTM3NC5qcGd8M2RjYTY0MDk0NjE3NTJkZDAxMzJjMTI2YWJjMDE1ZDhhMmRlYjM3Yjc0YjgyMDQ1NmE4NDdiZGFmOGI5YWFiMw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81D100C7IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Intel Pentium" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "30" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.7" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N5000" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c84"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81F500MSIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81F500MSIN", + "price" : "677", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81F500MSIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81F500MSIN-Laptops-491419949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Njg1fGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oM2QvOTA0MjY5MDUzOTU1MC5qcGd8NDllMTEzODZkNzZjNWEwZWI2YjY3ZDU3YmMyOWFkYjYwNzUzOWMyZGE1YjQxNmU3ZWJkNmU5ODcwYmJiOWVlOA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330S 81F500MSIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Thin & light laptop with wider display for life-like view
  • \n
  • Better Sound Quality
  • \n
  • Rapid charge offer 2 hours charge in 15 mins
  • \n
  • Visibly clear visual output from all angles
  • \n
  • Faster data transfer with reversible port and latest Wi-Fi protocol
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1870" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c85"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "price" : "441", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-3565-Laptops-491488102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzU1fGltYWdlL2pwZWd8aW1hZ2VzL2g2OC9oZmIvOTA2NDQ1NjY4MzU1MC5qcGd8NTE0NDcyYzRlNzI5NjcyY2I1NWYxYWE5Njc3M2NlZDgxMzgxOGZjOGRjYjAzNzc5NDVjMGQyNDllODEzZjUxOQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "RJ-45 Ethernet Port (10/100)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3565" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9225 Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9225" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated Widescreen HD 720P Webcam with Single digital microphone
  • \n
  • 2 tuned speakers with Waves MaxxAudio Pro
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • Microsoft Office trial
  • McAfee Multi Device 15 month subscription
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2041" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c86"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GM-E4392T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GM-E4392T", + "price" : "1464", + "sku" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GM-E4392T", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-FX504GM-E4392T-Laptops-491488509-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzcxfGltYWdlL2pwZWd8aW1hZ2VzL2gxYS9oN2EvOTA3NTg5NTc2Mjk3NC5qcGd8Y2E1YjI2ZjI4NzVmYjIzYmQyZmZlYmQ3ODJiNzA2MTM4YjkxNzQ5NmQxYWFjZWUxZTRjYWRmNTEyYTcwMjgwYQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64 bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GM-E4392T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB SATA + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i5-8300H" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1060" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c87"), + "name" : "Asus 35.56 cm (14 inch) Laptop (7th Gen Core i5/1.2 GHz/4 GB/128 GB), TP401CA-EC136T", + "description" : "Asus 35.56 cm (14 inch) Laptop (7th Gen Core i5/1.2 GHz/4 GB/128 GB), TP401CA-EC136T", + "price" : "1073", + "sku" : "Asus 35.56 cm (14 inch) Laptop (7th Gen Core i5/1.2 GHz/4 GB/128 GB), TP401CA-EC136T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-TP401CA-EC136T-Laptops-491431472-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTA5N3xpbWFnZS9qcGVnfGltYWdlcy9oMDIvaDBlLzkxNDIzMTYwNDAyMjIuanBnfDg0MDY5MmE1NmMwMmUxN2RmYThjYmI0YzhlMWE5NDVjNjIyYmE0ZjYxZTRiZGJkZWViZmIxZWVjMWVjMzkzNmE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4M Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "TP401CA-EC136T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz Intel Core i5-7Y54" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "33" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7Y54" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Light Grey Metal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "33 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1500" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.6" + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c88"), + "name" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), X512FL-EJ042T", + "description" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), X512FL-EJ042T", + "price" : "986", + "sku" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), X512FL-EJ042T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X512FL-EJ042T-Laptops-491431473-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzEzNHxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaGQyLzkxNDIzMTQ3Mjk1MDIuanBnfGY2MTU1OGRiYmRkODg0ODNjOWQyZGUxMjZkOTdlOTI1ZjEwYjhmNjJiYWFmN2YxNjgxNjgxN2MwNjk5YmU3Yjc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "GDDR5 2GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6 MB Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "X512FL-EJ042T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "65" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Transparent Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "65 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1750" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23" + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c89"), + "name" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6105T", + "description" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6105T", + "price" : "1218", + "sku" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6105T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-UX433FA-A6105T-Laptops-491431426-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzM4fGltYWdlL2pwZWd8aW1hZ2VzL2g5OC9oZTcvOTE0MjMwNzE5Mjg2Mi5qcGd8OGMyODVkNTVmZDExYzNkNDU0NDc4MDAzZDU0MGU0NjNjZTQ5MzZlNjBiNTRjZDMzODEyNWU3MmZiMWU2ZTk0Yw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6M Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ZenBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "UX433FA-A6105T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Royal Blue Metal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sleeve" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1190" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8a"), + "name" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB + 128 GB), FX570UD-DM138T", + "description" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB + 128 GB), FX570UD-DM138T", + "price" : "1102", + "sku" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB + 128 GB), FX570UD-DM138T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-FX570UD-DM138T-Laptops-491431471-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDc0MnxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaDczLzkxNDIzMDU1NTQ0NjIuanBnfDk1ZDFlNmYyMWIzOThiMGUxMDVjM2E2YjZlMmQ1MWRhZDFlYWEzMWUxZjEyZjE2N2UyZDM1NzU3MDFlMWMxOWM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "GDDR5 4GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Illuminated Chiclet Keyboard type
  • \n
  • TPM (Firmware TPM) security
  • \n
  • BIOS Booting User Password Protection
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX570UD-DM138T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "120" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Flame Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "120 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1960" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.6" + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8b"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "price" : "458", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A566102WIN9-Laptops-491379692-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTIxNnxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDc4Lzg5ODQ1NDU0OTMwMjIuanBnfGUxMjczMDFkYzNjY2NmOTZjNjVkNzRmYTU1ZWExZmI3MTI0Y2JmY2Y1NGE5ZGIzNzZmNjBkYzViNDA0ZGE0YmE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3565" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9200 Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 16 GB" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9200" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 Tuned speakers with Waves MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Features", + "attributeValue" : "Integrated widescreen HD (720p) Webcam" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "A6-9200" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2270" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8c"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.1 GHz/4 GB/256 GB), 14-dh0101tu", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.1 GHz/4 GB/256 GB), 14-dh0101tu", + "price" : "752", + "sku" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.1 GHz/4 GB/256 GB), 14-dh0101tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-6ZF27PA-ACJ-Laptops-491570775-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQ3NHxpbWFnZS9qcGVnfGltYWdlcy9oOGUvaGI2LzkxMzY3NjEyNzQzOTguanBnfGM3YTA0ZDdhN2ZmNzM2MzU2NTFkOTMyOGUwNDIzZjk1ZWE1YjMwNWJmOGQ2ZWJlYTY0NWVmNjBlM2RhNDJlYzE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-dh0101tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz 8th Gen Intel Core i3-8145U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 2.1 GHz processor base frequency" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "HP 3D DriveGuard" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "HP Active Pen" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1590" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "ENERGY STAR certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.29" + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8d"), + "name" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (7th Gen Core i7/8 GB/1 TB + 128 GB), 15-ce089tx", + "description" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (7th Gen Core i7/8 GB/1 TB + 128 GB), 15-ce089tx", + "price" : "1619", + "sku" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (7th Gen Core i7/8 GB/1 TB + 128 GB), 15-ce089tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Omen-15-ce089tx-Gaming-Laptop-39.62-cm-15.6-491351167-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTkwNHxpbWFnZS9qcGVnfGltYWdlcy9oZDcvaDY2Lzg4OTE5MjYxMTg0MzAuanBnfGRkNTY1NWJmMDc0ZTNlOGMyMDA4YTdhZWM0MGY5MTk3ZmNlNDc1ZGRjZmZiZjJlZDI0NDJjYjAxY2VjYjBiOGI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB HDD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7700HQ" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8e"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (6th Gen Core i3/4 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (6th Gen Core i3/4 GB/1 TB), 3567", + "price" : "632", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (6th Gen Core i3/4 GB/1 TB), 3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A566505HIN9-1-Laptops-491379541-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc5NnxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaDRkLzg5NjM4OTU4ODU4NTQuanBnfGQ0MTJkZmI1ZjRmMWZmMzE5ZDVmMDU2ODFlOTc1Mzg5ODZkNWU4MzM5M2JkYTlhOGE1MGEwYjA4NzNhOGY1YzQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "6th Generation Intel Core i3-6006U" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8f"), + "name" : "Dell 39.62 cm (15.6 inch) New G3 Series 15 Gaming Laptop (8th Gen Core i5/8 GB/1 TB + 128 GB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) New G3 Series 15 Gaming Laptop (8th Gen Core i5/8 GB/1 TB + 128 GB), 3579", + "price" : "1223", + "sku" : "Dell 39.62 cm (15.6 inch) New G3 Series 15 Gaming Laptop (8th Gen Core i5/8 GB/1 TB + 128 GB), 3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560107WIN9-Laptops-491420058-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzkzNHxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaGJmLzkwMzE2MzI0ODY0MzAuanBnfGViM2NjNmRiY2YwYmE4OGEyMGE0ZjhmYzAyOGMzOGVkMmFkMzQ1NzI1ZWY0OGMxZjljNzE1NWExMjdjYWQ1Y2U", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 15.6-inch FHD IPS Anti-Glare LED-Backlit Display
  • Integrated Widescreen HD (720p) Webcam With Dual Array Digital Microphone
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8300H" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c90"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (Pentium/1.6 GHz/4 GB/1 TB), 15q-bu002TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (Pentium/1.6 GHz/4 GB/1 TB), 15q-bu002TU", + "price" : "425", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (Pentium/1.6 GHz/4 GB/1 TB), 15q-bu002TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-2LS29PA-Laptops-491379548-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTk5MHxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDg3Lzg5OTk0NzUyODE5NTAuanBnfGY0MjhlMzJhNzYyY2FlMDliZmI4NTg3YmYzYzc4ZTg0NzI5ZjdjMWM3NjMzZGI3NWQzZTUwZGEzNTcwZmNhYTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15q-bu002TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Pentium N3710" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N3710" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual Speakers
  • \n
  • HP TrueVision HD Webcam
  • \n
  • Full-size Textured Island Style Keyboard
  • \n
  • Kensington Lock Slot
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "405" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.94" + }, + { + "attributeName" : "Depth", + "attributeValue" : "2.38" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c91"), + "name" : "Lenovo 39.62 (15.6 inch) Ideapad 330 Netbook Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81DE0125IN", + "description" : "Lenovo 39.62 (15.6 inch) Ideapad 330 Netbook Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81DE0125IN", + "price" : "599", + "sku" : "Lenovo 39.62 (15.6 inch) Ideapad 330 Netbook Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81DE0125IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81DE0125IN-Laptops-491419911-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODA1fGltYWdlL2pwZWd8aW1hZ2VzL2gyNC9oZWYvOTAzOTE1MTc5MjE1OC5qcGd8ZTZlY2U3MGY1N2I4ZTk2ZGQ0ZDcxZTJjOGUxYTRmZDdiNjFiY2I0ZDMyMWU5Yjk3NWNjMzJlYmZkMDM2NTMxZQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81DE0125IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Intel Core i3" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "30" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c92"), + "name" : "Lenovo 39.62 cm (15.6 inch) Legion Y530 Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 81FV00JKIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Legion Y530 Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 81FV00JKIN", + "price" : "1680", + "sku" : "Lenovo 39.62 cm (15.6 inch) Legion Y530 Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 81FV00JKIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81FV00JKIN-Laptops-491503494-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzMzfGltYWdlL2pwZWd8aW1hZ2VzL2g5OS9oMDAvOTA4NzU2NjQ0NjYyMi5qcGd8MTI3MTZkNjZjMTgwMjMzNDRhYjYwMzNlNDgwOTZjZGY5MTY3OTFlMjE1N2M1MmRkYmRiODI5MTg0NzM4YjgwMQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Legion" + }, + { + "attributeName" : "Series", + "attributeValue" : "Y530" + }, + { + "attributeName" : "Model", + "attributeValue" : "81FV00JKIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel i5-8300H" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "36" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.7" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c93"), + "name" : "Dell 39.62 cm (15.6 inch) G3 Series 15 Gaming Laptop (8th Gen Core i7/4.1 GHz/16 GB/1 TB + 256 GB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) G3 Series 15 Gaming Laptop (8th Gen Core i7/4.1 GHz/16 GB/1 TB + 256 GB), 3579", + "price" : "1604", + "sku" : "Dell 39.62 cm (15.6 inch) G3 Series 15 Gaming Laptop (8th Gen Core i7/4.1 GHz/16 GB/1 TB + 256 GB), 3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-G3-B560106WIN9-Laptop-491503258-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzM0fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ny9oNzQvOTA5MDQwMDM1NDMzNC5qcGd8ZDE3ZDczNGE1MDc1ZTcxY2FiZTIzNDMxNTJkOTVlMDc3MWM4ZGFkNzAxZjU4MDFkNDAzZmYzMzZmNjZlZDY5Yw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB DDR4 2666MHz" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "upto 4.1 GHz 8th Gen Intel Core i7-8750H Processor" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Hexa-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2x tuned speakers; audio processing by Waves MaxxAudio Pro 1" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • McAfee(R) Multi Device Security 15 month subscription
  • \n
  • Microsoft Office Home and Student 2016 DFO
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2590" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c94"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "price" : "3899", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-Surface-Book-2HNN-00033-Convertible-Laptop-13-5-491488125-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDIyOXxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDM1LzkwODUxMDA2ODczOTAuanBnfDI2NTg4ODU4OTJkMmY0NGNhMmQyMGVmY2IxYzNiNGRhOWYwNDYwZDk2YjgxOGM0ZDM2MjZiN2Q1NDc0ODE3NTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Surface Power Supply w/USB-A (5W) charging port" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8650U quad-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Front-facing stereo speakers with Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 5.0MP front-facing camera with 1080p HD video
  • \n
  • 8.0MP rear-facing autofocus camera with 1080p HD video
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1642" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c95"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Silver", + "price" : "1956", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREC2HN-A-Laptop-491503299-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzI5N3xpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDYxLzkwNzA4MDQ1NjYwNDYuanBnfGNkMGJhNzQ3OWNmMTUwM2VjN2M1MmFlMzYwNjViMDk1YjExZWU0YmI1MjNkMTkzNjg4Y2EzOWY0OThjNDVlM2Q", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c96"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB)", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB)", + "price" : "1738", + "sku" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRQN2HN-A-Laptops-491503294-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODg0fGltYWdlL2pwZWd8aW1hZ2VzL2gyYi9oMjYvOTA3NTkwMjg0MDg2Mi5qcGd8YjhkZTJmMDA5MDAxZDM0MzZiZjRkZDdlMDNjNzQ5OTIwOTA0ZTE4NzJkMTYzNDkwYzBjNjcyY2QxNTZhYTQwMA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • LED-backlit display with IPS technology
  • \n
  • Camera - 480p FaceTime camera
  • \n
  • Dual microphones
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz dual-core Intel Core m3 Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Wireless web: Up to 10 hours
  • \n
  • iTunes movie playback: Up to 12 hours
  • \n
  • Standby time: Up to 30 days
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "m3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 to 35 Degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 to 45 Degree C " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.31" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c97"), + "name" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "description" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "price" : "4450", + "sku" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-Surface-Book2-FVH-00029-Convertible-Laptop-15-491488126-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzM3NnxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaDNkLzkwODUxMDAzNTk3MTAuanBnfDE4NDIzYzI4MDJhOGI2MDRmM2E5ZTZlNmVkZTM4MzM0ZTY4OTRhMzYxNTE4YzU4MTEyZDExYThkN2MwMTUyMDE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "95W Surface Power Supply w/USB-A (5W) charging port" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8650U quad-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Front-facing stereo speakers with Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 5.0MP front-facing camera with 1080p HD video
  • \n
  • 8.0MP rear-facing autofocus camera with 1080p HD video
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1905" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.1" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c98"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (1.3 GHz/8 GB/512 GB)", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (1.3 GHz/8 GB/512 GB)", + "price" : "2173", + "sku" : "Apple 30.48 cm (12 inch) MacBook Laptop (1.3 GHz/8 GB/512 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRQP2HN-A-Laptops-491503295-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDExfGltYWdlL2pwZWd8aW1hZ2VzL2hlMy9oNmMvOTA3NTkwNDE1MTU4Mi5qcGd8MTE5OWE3NGExMzE0MzI2NzRmNDZkN2JhY2E3MWNlYzk2N2RkOTc2MDg0NTk3YjA3NGZmNmY4MDg0YmIyZmI1Ng", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • LED-backlit display with IPS technology
  • \n
  • Camera - 480p FaceTime camera
  • \n
  • Dual microphones
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz dual-core Intel Core i5 Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Wireless web: Up to 10 hours
  • \n
  • iTunes movie playback: Up to 12 hours
  • \n
  • Standby time: Up to 30 days
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 to 35 Degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 to 45 Degree C " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.31" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c99"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/8 GB/256 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/8 GB/256 GB), Platinum", + "price" : "2189", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/8 GB/256 GB), Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-DAJ-00083-Laptops-491420097-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDU4M3xpbWFnZS9qcGVnfGltYWdlcy9oNDYvaGU5Lzg5OTcyNjk1MzY3OTguanBnfDBmNTUzOTdiNDAzMmY5ZWVkMjJmYmY0NGNmOGRmMmRhNmUzNWIxOThlYTY4NDU2NTBkZDY3N2NmZTc5YTQwZjM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "DAJ-00083" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1280" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9a"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 15-cx0141tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 15-cx0141tx", + "price" : "1293", + "sku" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 15-cx0141tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4QM21PA-Laptops-491419996-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oYjYvaGVlLzkwMDI4Mzg0NTgzOTguanBnfDk3N2ZjOTA0NGEwN2Q3YTA2NjQ2OWJkZmY2NGEyZjA0MGU3NzFlY2EzMDEwMDFmY2MwNGE3NGYxNWY2MjcwNTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-cx0141tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 8th Gen Quad-Core i5-8300H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black, ultra violet logo" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2170" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.54" + }, + { + "attributeName" : "Width", + "attributeValue" : "39.62" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.65" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9b"), + "name" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Space Grey", + "description" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Space Grey", + "price" : "3260", + "sku" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR932HN-A-Laptops-491420045-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjA1fGltYWdlL2pwZWd8aW1hZ2VzL2hmZC9oNDAvOTA0MjcxMzczOTI5NC5qcGd8YWRjNjY5ZGU4MDhjYzQzNzAxNjEyZTAwNzgyMTM4OWM0MGNlMzliYmI4MDhiYWE2ZDQ2NGY3NmJkMWIyYjFlNA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.17 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9c"), + "name" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Space Grey", + "description" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Space Grey", + "price" : "3840", + "sku" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR942HN-A-Laptops-491420046-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDU2fGltYWdlL2pwZWd8aW1hZ2VzL2g3ZS9oNTkvOTA0MjcwMDc2MzE2Ni5qcGd8YTQyODhmYWE1YjViMTdmYzI3N2JkZGM2M2I4MTRiYTVhYTJkNTc2ODc4NDY2NmRkMjQzNzM4YzhmMTg0ZTQ5Mw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.17 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9d"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (7th Gen Core i5/3.5 GHz/8 GB/256 GB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (7th Gen Core i5/3.5 GHz/8 GB/256 GB)", + "price" : "2087", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (7th Gen Core i5/3.5 GHz/8 GB/256 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HMW-00033-Laptops-491420100-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaDNiLzg5OTcyNzc3OTQzMzQuanBnfDQ2YTY1MDkxY2Q4YjY0MTNiZDBiMDFmZDJmNGMyMGJiNDA0MGJmYTZiYWIwYmViOWUxMmZhMDVlMjQwYTkyMDc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HMW-00033" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.5" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7300U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1534" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9e"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/128 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/128 GB), Platinum", + "price" : "1305", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/128 GB), Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KSR-00020-Laptops-491420095-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDE0NnxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGM5Lzg5OTcyNjcyNDMwMzguanBnfGExYmRhMDc2YWI1ZWY4M2VhYmRjMDc3NjYxZmEzOGM2MWYyN2Q2OTE2ZmRmMGNjNzQ5ZWEyOWYxMGE5NGRjYmE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "KSR-00020" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9f"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/8 GB/256 GB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/8 GB/256 GB)", + "price" : "2812", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/8 GB/256 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HN4-00033-Laptops-491420101-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDQ2Lzg5OTcyNzYxNTU5MzQuanBnfGMwMDc2YjQ5YWI0ZWFiZjFjYmY3YzVkNGFhNjkxMTc2YTY3YzVlYTg4NTFhMWJiMTcxOWY2MGZjMGNlYjQ3ZmM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HN4-00033" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1642" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca0"), + "name" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/256 GB)", + "description" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/256 GB)", + "price" : "3348", + "sku" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/256 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HNR-00029-Laptops-491420103-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODg1MHxpbWFnZS9qcGVnfGltYWdlcy9oMTMvaGFkLzg5OTcyODMzNjQ4OTQuanBnfDRhODZiYmNlNDU4NGI3ZjBjZGZlMjA5NjcxNjM2ODBlMjIwYmUzYTk3OWExNDgyNDc4ODBkNWI0NjkyMDhiNTQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HNR-00029" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1905" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca1"), + "name" : "Asus 39.62 cm (15.6 inch) ROG Strix Scar II Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 256 GB), GL504GV-ES019T", + "description" : "Asus 39.62 cm (15.6 inch) ROG Strix Scar II Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 256 GB), GL504GV-ES019T", + "price" : "2870", + "sku" : "Asus 39.62 cm (15.6 inch) ROG Strix Scar II Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 256 GB), GL504GV-ES019T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-GL504GV-ES019T-Laptops-491550900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDA5MHxpbWFnZS9qcGVnfGltYWdlcy9oY2IvaDgwLzkxMTc0NTkzMTY3NjYuanBnfGYwMWUxMDQyZmZmNWM3YmQxMDE5MDdjOGMwZmM4N2QxYjdkZmY3OTVlMzBjNzQ5NjA3MjM1NDljNmJkYTFhNGE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ROG Strix Scar II" + }, + { + "attributeName" : "Model", + "attributeValue" : "GL504GV-ES019T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Intel Core i7-8750H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "RTX 2060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gun Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca2"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "price" : "3348", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HNL-00022-Laptops-491420102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDQ3Lzg5OTcyNzkxMDUwNTQuanBnfDk4YjBkZTk4OWZmZDAyNjRjNDU1Y2VjMTVjMTQxMTA5YTI1NTI3MmQwODdiNmRlZGJiOWVmZmQ3MGE2MTg2NDQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HNL-00022" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1642" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca3"), + "name" : "Apple 38.1 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Silver", + "description" : "Apple 38.1 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Silver", + "price" : "3260", + "sku" : "Apple 38.1 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR962HN-A-Laptops-491420047-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTY0fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oZDUvOTA0MjcxMjEwMDg5NC5qcGd8NTg4NjM0YzUwYjZkNGZhMGM5M2IzMzhjNWNiM2NlMTEyYzU0ODAwMzAwNTY4OGIwMzNkMmViMzU3Yzg2N2I4OA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca4"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/1 TB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/1 TB), Platinum", + "price" : "3551", + "sku" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/1 TB), Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-EUP-00023-Laptops-491420099-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTU1MnxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDVmLzg5OTcyODEwNzExMzQuanBnfGFlZTMwYzk5YTY0MmIzODE1ZGJkMmYwZDIyYTdiODFiMWM0NGFlN2FlODgxNWE2NjY1MjQ4NDZmOWNiOTMxMDU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "EUP-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1280" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca5"), + "name" : "Lenovo 25.65 cm (10.1 inch) MIIX 320 Convertible Laptop (Atom/1.92 GHz/2 GB/32 GB), 80XF00G1IN", + "description" : "Lenovo 25.65 cm (10.1 inch) MIIX 320 Convertible Laptop (Atom/1.92 GHz/2 GB/32 GB), 80XF00G1IN", + "price" : "303", + "sku" : "Lenovo 25.65 cm (10.1 inch) MIIX 320 Convertible Laptop (Atom/1.92 GHz/2 GB/32 GB), 80XF00G1IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-80XF00G1IN-Laptops-491379504-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE5OXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGRmLzg5OTc0MTkzNTIwOTQuanBnfGYyN2I3NzYzNGQ0ZjQ2Mzc2MjhiZjkyM2EyNThjOTE4M2JjNzU3ODBhNTQ4ZTJkNWUwNzIxZDc5Mjc2Yzk0ZDA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "MIIX 320" + }, + { + "attributeName" : "Model", + "attributeValue" : "80XF00G1IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.65 cm (10.1 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.92 GHz Intel X5-Z8350" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "33" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Atom" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.92" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "Z8350" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Advanced Audio" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1 year ADP on Redemption
  • \n
  • Up to 10 Hours Battery Life
  • " + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca6"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Gold", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Gold", + "price" : "1956", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREF2HN-A-Laptop-491503301-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODEyMHxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDIxLzkwNzA4MTI4MjM1ODIuanBnfDE4MmM2ZmM4NzlmNDBjZjUzODI3NGI0MzYyY2M4ODIxODA0ZGI2MmY0ZmI2NzhmNzJmZjA2YWMzMTBlNzkwMjA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca7"), + "name" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "description" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "price" : "3899", + "sku" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-Surface-Book2-FUX-00021-Convertible-Laptop-15-491488127-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDQwMnxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGQ0LzkwODUxMDAwMzIwMzAuanBnfGY0MWNhOWMwZmRlMWE5MDU1ZTg5NzhhYTQxYmJhYWZhNTNiZmZlNDE5MTNmM2Y0Nzk0NDk4ZTg5MjQzY2M0Y2I", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "95W Surface Power Supply w/USB-A (5W) charging port" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8650U quad-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Front-facing stereo speakers with Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 5.0MP front-facing camera with 1080p HD video
  • \n
  • 8.0MP rear-facing autofocus camera with 1080p HD video
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1905" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.1" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca8"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (8th Gen Core i5/2.3 GHz/8 GB/512 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (8th Gen Core i5/2.3 GHz/8 GB/512 GB), Silver", + "price" : "2753", + "sku" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (8th Gen Core i5/2.3 GHz/8 GB/512 GB), Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9V2HN-A-Laptops-491420044-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTkzMHxpbWFnZS9qcGVnfGltYWdlcy9oZjkvaGQ5LzkwNDI3MTkxNzg3ODIuanBnfDU1NjE2ZWM0ZDJjYzBlYTFiYzEwZmZlNTU2NTFiYTAxOTg0MDlmYmYzZDNiMDhiNmUwMWE4NjEwYjNmNTMwNDk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca9"), + "name" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Silver", + "description" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Silver", + "price" : "3840", + "sku" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR972HN-A-Laptops-491420048-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Mjg3fGltYWdlL2pwZWd8aW1hZ2VzL2hiYy9oMmYvOTA0MjcxNTc3MDkxMC5qcGd8OTE3Y2I2MGRmNDJlMjU5OWEwNWE3MTlhOGE0MGQ4ZGRmZjkwNDVlNGNjNDM2YTc5MDlhOWE1Y2Q3M2JlN2RlZA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.17 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637caa"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/4 GB/1 TB), 15-bs590TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/4 GB/1 TB), 15-bs590TU", + "price" : "518", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/4 GB/1 TB), 15-bs590TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-15-bs590TU-Laptop-39.62-cm-15.6-491350976-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDk3NnxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaGFiLzg5MjkwNzM3NTgyMzguanBnfDI4MzFiYWIxOTI4ZWJmY2Y5MDBmMmMwMzVkOWM0MmM4OGIwYzQ2OGNhZGNjYzVkMWQzOWVkNDhhYzJmMThlYzI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs590TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz 6th Gen Intel Core i3-6006U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upgradeable to 16 GB by discard" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.99" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.37" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cab"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB + 16 GB), 15g-dr1000tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB + 16 GB), 15g-dr1000tx", + "price" : "871", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB + 16 GB), 15g-dr1000tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5NZ82PA-Laptops-491488434-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTEyfGltYWdlL2pwZWd8aW1hZ2VzL2g1MS9oMDQvOTA3NDMxMjAxOTk5OC5qcGd8YjhiZjNmMGMzMTdiNmUwYWMyMTFkMmVlNTZhYjViZmIwMTI4M2ZhOTMxMWE1MDJlYTIxMTI2ZjQyMWY5YTdjOQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15g-dr1000tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 16 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "13 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual Speaker" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial Software" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2040" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.59" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.61" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cac"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 320 Laptop (6th Gen Core i3/2.0 GHz/8 GB/1 TB), 80XH01QGIH", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 320 Laptop (6th Gen Core i3/2.0 GHz/8 GB/1 TB), 80XH01QGIH", + "price" : "654", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 320 Laptop (6th Gen Core i3/2.0 GHz/8 GB/1 TB), 80XH01QGIH", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-80XH01QGIH-Laptops-491488288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTIxNXxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaGZlLzkwNjQ2MzU5MjQ1MTAuanBnfGY3ZmI3NjQ0NzEyYzllNWFhYWJhMDQyY2QyMGU3NGQ1ZDUyMTJlOWVjODk3NDA1OWI3YjUxMmFjMGEzYjFkOGU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "80XH01QGIH" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.00GHz Intel Core i3-6006U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i3-6006U" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "920MX" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Onyx Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cad"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 110 Laptop (Core i5/4 GB/1 TB), 80UD014RIH", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 110 Laptop (Core i5/4 GB/1 TB), 80UD014RIH", + "price" : "677", + "sku" : "Lenovo 39.62 cm (15.6 inch) Ideapad 110 Laptop (Core i5/4 GB/1 TB), 80UD014RIH", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-Ideapad-110-80UD014RIH-Laptop-15.6-inch-39.62-cm-491297505-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTM0NnxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaGY5Lzg5NTQ5ODMzNTAzMDIuanBnfGE1ZjRkNGJhN2RmNTZmNDYzNjI3NzAxYWI1YzVlYzBiMDIwMmJmY2M2MWY1M2ZkZGM5OWZhMjg4MGFiMDI1Y2M", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "110 80UD014RIH" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Upto 2.80 GHz Intel Core i5-6200U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-6200U" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R16M-M1-30" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver Painting" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cae"), + "name" : "Asus 43.94 cm (17.3 inch) ROG Gaming Laptop (8th Gen Core i9/2.9 GHz/64 GB/2 TB), G703GI-E5148T", + "description" : "Asus 43.94 cm (17.3 inch) ROG Gaming Laptop (8th Gen Core i9/2.9 GHz/64 GB/2 TB), G703GI-E5148T", + "price" : "8696", + "sku" : "Asus 43.94 cm (17.3 inch) ROG Gaming Laptop (8th Gen Core i9/2.9 GHz/64 GB/2 TB), G703GI-E5148T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-G703GI-E5148T-Laptop-491503261-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjcyfGltYWdlL2pwZWd8aW1hZ2VzL2hkMS9oZDUvOTEyNDU5ODg0MTM3NC5qcGd8ZTc1MGYwYjkxMGZiNjE5NmUyZDU4NDY0YzNlNjJlMjQ2MDFhNTIzMTYxMjczNDEyMzgxYzc0ZmQ5ZWM1M2I2Zg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ROG" + }, + { + "attributeName" : "Model", + "attributeValue" : "G703GI-E5148T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "43.94 cm (17.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "64 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.9 GHz 8th Gen Intel Core i9-8950Hk" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "8 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.9" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i9-8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1080" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637caf"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYJ2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYJ2HN/A", + "price" : "2173", + "sku" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYJ2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYJ2HN-A-Laptops-491297722-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDI4fGltYWdlL2pwZWd8aW1hZ2VzL2hjOS9oY2IvOTEzOTUwOTA2NzgwNi5qcGd8NWNkODNhZGRkNDA1YTMzYjg2MjRkNzMwMGI4ZWVjMjA4ZjI1ZWE1Y2NlMWI1OWIyZGM2MDUzOGJhN2ViN2Q5MQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYJ2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Intel Dual-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb0"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYG2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYG2HN/A", + "price" : "2173", + "sku" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYG2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYG2HN-A-Laptops-491297720-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDg1fGltYWdlL2pwZWd8aW1hZ2VzL2gxYy9oMWQvOTEzOTUxNzkxNTE2Ni5qcGd8NDlhOTg4OWYxZTAxZGM1YWNmMTkwMjdjM2Q5ODMyMGM1MTg4Y2E0NzE3MTVhMjQ1MzNjMTU5Y2EzMTBlYWQwNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYG2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Intel Dual-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb1"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYH2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYH2HN/A", + "price" : "1738", + "sku" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYH2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYH2HN-A-Laptops-491297721-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDgwfGltYWdlL2pwZWd8aW1hZ2VzL2g0Yi9oODkvOTEzOTUwODc0MDEyNi5qcGd8NzEyZjY0OTZmNmNjYTcxMzIzNWE3YmQ1ZjVkYzNjYTEwM2M0NDZlYTIyMDBjMWFhZjY0YmU4YTliOGExMDgyYQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYH2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz Intel Dual-Core m3" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core m3" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb2"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYF2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYF2HN/A", + "price" : "1738", + "sku" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYF2HN/A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYF2HN-A-Laptops-491297719-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODU4fGltYWdlL2pwZWd8aW1hZ2VzL2g0MC9oNjcvOTEzOTUxODI0Mjg0Ni5qcGd8ODc4MzM0OTI2YzUxZTI0MjVhMzAzYTE3NWZiMjIxN2NmYjU0YmZmZDIwMTRjYjRlZjIzZmRjNjc3NzIwMTRjMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYF2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz Intel Dual-Core m3" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core m3" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb3"), + "name" : "Lenovo 35.56 cm (14 inch) Ideapad 330S Convertible Laptop (8th Gen Core i5/3.4 GHz/4 GB + 16 GB Optane/1 TB), 81F400PFIN", + "description" : "Lenovo 35.56 cm (14 inch) Ideapad 330S Convertible Laptop (8th Gen Core i5/3.4 GHz/4 GB + 16 GB Optane/1 TB), 81F400PFIN", + "price" : "729", + "sku" : "Lenovo 35.56 cm (14 inch) Ideapad 330S Convertible Laptop (8th Gen Core i5/3.4 GHz/4 GB + 16 GB Optane/1 TB), 81F400PFIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81F400PFIN-Laptops-491419955-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIwMHxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaDBkLzkwOTI4NjkzMjQ4MzAuanBnfDQ3ZDkxNzlkMGE0MGI2NTAwOWRlYWM1YmNiMTI3NTUyMTkzODcxYzU1MGQ0MWQwZmNiNzY3MGQ0Y2UwZDc2YTQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB 3.1 Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330S 81F400PFIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "30" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 14.0 inch Full-HD IPS Display
  • \n
  • 1 year ADP on Redemption
  • \n
  • Up to 6 Hours Battery Life
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1670" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb4"), + "name" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 11-ad106tu", + "description" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 11-ad106tu", + "price" : "635", + "sku" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 11-ad106tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4QM23PA-Laptops-491419995-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDk0OHxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaGYzLzkwMDI4MzIxMDE0MDYuanBnfGI0ODM5YTYxN2IzZDExMTEzYmM0NjdlM2I2NTcyZTJjNmJmOWY3ZGY2Mjc3MDAxMGNmNmM4OTFkYmJkZDQ4MGQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "11-ad106tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Dual-Core i3-8130U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1390" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.49" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.14" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb5"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.6 GHz/4 GB/1 TB), 15-bs611TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.6 GHz/4 GB/1 TB), 15-bs611TU", + "price" : "625", + "sku" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.6 GHz/4 GB/1 TB), 15-bs611TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3DY18PA-Laptops-491392239-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU2OTN8aW1hZ2UvanBlZ3xpbWFnZXMvaDczL2g2ZS85MDIxNzg3OTk2MTkwLmpwZ3w3ZWI5NGNiZDQ2OTdhN2E2ZDBhZTA2ZWRhZjVmYjE1NjlhYWI3NGVkN2MxYzM0ZTFlZmQxN2Y4NTcwYTkxOTFm", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs611TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Celeron N3060" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Celeron" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N3060" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • HP TrueVision HD Webcam – 1280 x 720 by 30 frames
  • Touchpad with Windows 10 Multi-touch gesture support
  • Full-size Textured Island Style Keyboard
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "400" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.37" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb6"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "price" : "2451", + "sku" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560013PIN9-1-Laptops-491433180-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODcyNHxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaGZlLzkwMTQyNzcxMTE4MzguanBnfDBkZDhmOGM4NWE1MTBiODUwNWNlZGY4ODRmN2EzZjM1NjIwMjczNmY4YmIzYzAwMjM0Yjk4ODI2MGJjMWRiMWQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "6 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Dell PremierColor" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2000" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb7"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/128 GB), LQL-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/128 GB), LQL-00023", + "price" : "1332", + "sku" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/128 GB), LQL-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQL-00023-Laptops-491550735-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2g3OC9oYzIvOTEzOTQ5NDk3NzU2Ni5qcGd8YTJlN2IzM2M1YWI5MzM5NmU2MGMwMzg5ZDdmMzI0NjEyZGQzYmM4NjdhOWQzMTA5Zjg5NDA1MTFkMzU1YzdkZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQL-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1252" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb8"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/256 GB), KJT-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/256 GB), KJT-00015", + "price" : "1609", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/256 GB), KJT-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJT-00015-Laptops-491550731-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDI3fGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oNjQvOTEzMDMzNjEyNDk1OC5qcGd8MGU1ZjYwYTY0MjRlMzI2MDk0ODQ5MWFlMTk2OTU2M2JkMDdiZmFhZjM4ODhlZDEyMjkwOTk5MThiMTVjMTllNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJT-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i5-8350U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8350U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb9"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/8 GB/256 GB), KJU-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/8 GB/256 GB), KJU-00015", + "price" : "2029", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/8 GB/256 GB), KJU-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJU-00015-Laptops-491550732-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDQ2fGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oOTgvOTEzMDMzODE1NjU3NC5qcGd8YmU1ZmI0NzAzNjIxYjE4NDE3YTA3NTE5OThiMzk2ZmE4MTM3ZTcxMWU2ODBkMmY5YjQ3NWQwNGU2MjAyNGYyOA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJU-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i7-8650U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cba"), + "name" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (4 GB/64 GB), MHN-00015", + "description" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (4 GB/64 GB), MHN-00015", + "price" : "560", + "sku" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (4 GB/64 GB), MHN-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-MHN-00015-Laptops-491570679-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDM4fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oNTcvOTEzNzIzMTMzMTM1OC5qcGd8YzM3ZDRlZmVjMGU0OTcyMzdmYzhiYTAzMWJhZGUzYjdiZDUyMGQwY2UyOWRkNDk4ZmI3MGMyYTEyOTRiZTZhMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect Port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Go" + }, + { + "attributeName" : "Model", + "attributeValue" : "MHN-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.4 cm (10 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "64 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Pentium Gold 4415Y" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 Hours of Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "4415Y" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnesium casing" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 Home 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "522" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "17.5" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbb"), + "name" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (8 GB/128 GB), MCZ-00015", + "description" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (8 GB/128 GB), MCZ-00015", + "price" : "740", + "sku" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (8 GB/128 GB), MCZ-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-MCZ-00015-Laptops-491570680-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjcxfGltYWdlL2pwZWd8aW1hZ2VzL2hmYy9oYzQvOTEzNzIzMTc5MDExMC5qcGd8OGFmMjE0NDViNjdhNzc0YjBlYTczNmZmNzI0MjJiMmJmZTExNzAyODFiNzA2ZmIxYTkyMzU0M2JmODNjYzJlZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect Port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Go" + }, + { + "attributeName" : "Model", + "attributeValue" : "MCZ-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.4 cm (10 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Pentium Gold 4415Y" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 Hours of Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "4415Y" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnesium casing" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 Home 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "522" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "17.5" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbc"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD A4/4 GB/1 TB), A315-21", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD A4/4 GB/1 TB), A315-21", + "price" : "427", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD A4/4 GB/1 TB), A315-21", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-GNVSI-038-Laptops-491570770-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjM5MnxpbWFnZS9qcGVnfGltYWdlcy9oNTgvaDEwLzkxMzg4OTM1ODY0NjIuanBnfGQ3ZTZmOWY3Y2M1YzY3Yjg1N2YwMzRiOTcxMTZiMzg0ZThlYmVjMjE0NWI2NzA5ZjNhMjFmODNiODAxNzkxZWQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Expansion Slots", + "attributeValue" : "1 x SO-DIMM Slot" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-21" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A-Series Dual-Core A4-9120" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4810" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2-Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "A4-9120" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Super-slim design mercury free display
  • \n
  • Two built-in stereo speakers
  • \n
  • Built-in digital microphone
  • \n
  • 640 x 480 resolution Webcam
  • \n
  • Intel Dual Band Wireless-AC 802.11ac/a/b/g/n WLAN
  • \n
  • WLAN Operates at 2.4 GHz & 5 GHz
  • \n
  • BIOS User" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3-Pin 45 W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Microsoft Precision Touchpad Certification" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbd"), + "name" : "Dell 39.62 cm (15.6 inch) Alienware 15 Gaming Laptop (7th Gen Core i7/2.8 GHZ/16 GB/1 TB + 512 GB), A569952SIN9", + "description" : "Dell 39.62 cm (15.6 inch) Alienware 15 Gaming Laptop (7th Gen Core i7/2.8 GHZ/16 GB/1 TB + 512 GB), A569952SIN9", + "price" : "3044", + "sku" : "Dell 39.62 cm (15.6 inch) Alienware 15 Gaming Laptop (7th Gen Core i7/2.8 GHZ/16 GB/1 TB + 512 GB), A569952SIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A569952SIN9-Laptops-491297631-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTQ3M3xpbWFnZS9qcGVnfGltYWdlcy9oMzMvaDc4Lzg5MjE1NTAxNTk5MDIuanBnfDA5MDYwNjA1OTc3MmIxMzgzZjE2N2E3OTU1NTNiMTgyYjUzMmY1MzA5MzQ3ODY1YWRlNDI5YWI0MzExYzI0M2I", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Alienware" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Core i7-7700HQ Quad-Core" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7700HQ" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Epic Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3490" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "30.5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbe"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 5 Laptop (Intel Core i3/4 GB/1 TB), A515-51", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 5 Laptop (Intel Core i3/4 GB/1 TB), A515-51", + "price" : "653", + "sku" : "Acer 39.62 cm (15.6 inch) Aspire 5 Laptop (Intel Core i3/4 GB/1 TB), A515-51", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-H5HSI-003-Laptops-491570769-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIwN3xpbWFnZS9qcGVnfGltYWdlcy9oMWYvaGJhLzkxNDAyMTg4ODgyMjIuanBnfDBmMmI0NTJkMzVlYTRkNWFhNTEwYmUzZGNjODA0ZjgxN2RjYzNiM2VlMTUwNmE4NjMxYmQwMjAzNzM5MTRhOGI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Expansion Slots", + "attributeValue" : "2 x SO-DIMM Slots" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3-Pin 65 W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 5" + }, + { + "attributeName" : "Model", + "attributeValue" : "A515-51" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel 8th Gen Core i3-8145U" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3220" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 8 hours (based on web browsing test results)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High-Brightness Acer ComfyView LED-backlit TFT LCD
  • \n
  • Display: Ultra-Slim Design" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Microsoft Precision Touchpad Certification" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.34" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.75" + } + ], + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbf"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/8 GB/256 GB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/8 GB/256 GB), 9570", + "price" : "2119", + "sku" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/8 GB/256 GB), 9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560051WIN9-Laptops-491570741-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2hiNS9oZTMvOTEzOTQ5NzU5OTAwNi5qcGd8ZTg5YzhiNGQzNTJkYjVhMmYzZWEzZDIwOTIwNDJhMzdjY2Y5ZTZjYWRlNzc4NWE3MWQ5NGEwOTc1YTRiNDQ5Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare IPS InfinityEdge Display
  • \n
  • Dual Array Digital Microphone
  • \n
  • Stereo Speakers Professionally Tuned with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • 56WHr Lithium Battery Energy Content
  • \n
  • HD (720p) webcam dual array digital microphones
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Intel Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 21 1/2 hours when using Word or Excel" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "130 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Hexa-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "130W Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc0"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563102WIN9", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563102WIN9", + "price" : "609", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563102WIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-C563102WIN9-Laptops-491570739-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTM2fGltYWdlL2pwZWd8aW1hZ2VzL2hmMS9oOTkvOTEzOTQ5OTU2NTA4Ni5qcGd8YTc1Y2Y4Y2M3ZDYwNGEwZmU1N2IxMTVhNDFjMGIzMDkyYjZkMzdiNzZlMzIzYTc0ZWM3NmZmNTgwMjEzYjliMw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3584" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.30 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "45 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare LED-Backlit Display
  • \n
  • Single Digital Microphone
  • \n
  • 2 Tuned Speakers with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • HD (720p) Webcam with Single Digital Microphone
  • \n
  • 42WHr Battery Lithium Battery Energy Content
  • " + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "minus 40 degree C/F to up to 65 degree C/149 degree F" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2019" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "45W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2030" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc1"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563101WIN9", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563101WIN9", + "price" : "661", + "sku" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563101WIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-C563101WIN9-Laptops-491570740-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTQ5fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oM2IvOTEzOTQ5OTg5Mjc2Ni5qcGd8NmE5Yjc2NjFjODA5ZjljODMyNzVkYjE2ZGQ2ZTZhOTBjNmUxNjkwNTM0YTQ2MmFkMzIyOTM3MDFhNmE4Njc2MQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3584" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.30 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "65 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare LED-Backlit Display
  • \n
  • Single Digital Microphone
  • \n
  • 2 Tuned Speakers with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • HD (720p) Webcam with Single Digital Microphone
  • \n
  • 42WHr Battery Lithium Battery Energy Content
  • " + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "minus 40 degree C/F to up to 65 degree C/149 degree F" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2019" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "65W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2030" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc2"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "price" : "2576", + "sku" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560052WIN9-Laptops-491570602-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTMwMHxpbWFnZS9qcGVnfGltYWdlcy9oYWEvaDk4LzkxMzk1MDMxNjk1NjYuanBnfGU0ZjBjMzdkYjViYjg2NWQ5OGQxNjlhYTlkNTY5ZWQ4NGMwYTkzMWQ4MjY1YWUwNTcwOTBhNjFiOTI2N2NhZDM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare IPS InfinityEdge Display
  • \n
  • Dual Array Digital Microphone
  • \n
  • Stereo Speakers Professionally Tuned with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • 97WHr Lithium Battery Energy Content
  • \n
  • HD (720p) webcam dual array digital microphones
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Intel Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "6-Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 21 1/2 hours when using Word or Excel" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "130 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Hexa-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "130W Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc3"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2.0 GHz/4 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2.0 GHz/4 GB/1 TB), 3567", + "price" : "630", + "sku" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2.0 GHz/4 GB/1 TB), 3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-15-3567-Laptop-39.62-cms-15.6-6i3-4-GB-1-TB-491419868-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI4M3xpbWFnZS9qcGVnfGltYWdlcy9oMWIvaGQyLzg5ODQ1NjIxMzkxNjYuanBnfDYxNzRjZjg0ZjdmODlkNDZhMGJiNWI5YTEzMDdhNmI2NGM4NzViZWI3ZGM1MGNhMzIxYWZjMGRhYTliODQwNjU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz 6th Gen Intel Core i3-6006U Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers with Waves MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated Widescreen HD 720P Webcam with Single digital microphone
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R5 M430" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.515" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc4"), + "name" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6106T", + "description" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6106T", + "price" : "1218", + "sku" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6106T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-UX433FA-A6106T-Laptops-491431427-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDk4fGltYWdlL2pwZWd8aW1hZ2VzL2gzYy9oZGEvOTE0MjMwNjIwOTgyMi5qcGd8OWQzYmIwZjQ1MWVjZDI2NGFiNGJiOTQ3MWRmNzEyNzJjZjljMWExZjZhYzU5ZmY1OTAwZDRiY2E0NTI3OTQxNg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6M Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ZenBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "UX433FA-A6106T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Icicle Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sleeve" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1190" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc5"), + "name" : "Asus 35.56 cm (14 inch) Laptop (8th Gen Core i3/2.1 GHz/8 GB/1 TB), X412FJ-EK206T", + "description" : "Asus 35.56 cm (14 inch) Laptop (8th Gen Core i3/2.1 GHz/8 GB/1 TB), X412FJ-EK206T", + "price" : "710", + "sku" : "Asus 35.56 cm (14 inch) Laptop (8th Gen Core i3/2.1 GHz/8 GB/1 TB), X412FJ-EK206T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X412FJ-EK206T-Laptops-491431474-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzA4fGltYWdlL2pwZWd8aW1hZ2VzL2gyZC9oZDYvOTE0MjMwNjUzNzUwMi5qcGd8ZjAwYzc0OTc3MjJhMzVlODE1MzQ3NmE3ZDIxNTQ4ZDJiNjJkMGE4OWEwZDMyZDBmN2E5NTVkZTNkNjMxNTc2NA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "GDDR5 2GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "65 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "X412FJ-EK206T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Intel Core i3-8145U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "65" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM (Firmware TPM) security
  • \n
  • BIOS Booting User Password Protection
  • \n
  • Chiclet Keyboard type" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Transparent Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1500" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.90" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.2" + } + ], + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc6"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/8 GB/256 GB), LQQ-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/8 GB/256 GB), LQQ-00023", + "price" : "2160", + "sku" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/8 GB/256 GB), LQQ-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQQ-00023-Laptops-491550737-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2gwNy9oYTgvOTEzOTUxMTAzMzg4Ni5qcGd8NmU4ZTBjYjY1OWY4ZmZmNTU5MDNiYTIzNGUxZDI5NjQ3OGQ1ZDM1MmJmYWI4Y2MwNDBmMmQ4MzQ5ZTQxZjI4NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQQ-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1283" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc7"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/16 GB/512 GB), KJV-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/16 GB/512 GB), KJV-00015", + "price" : "2566", + "sku" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/16 GB/512 GB), KJV-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJV-00015-Laptops-491550733-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDY5fGltYWdlL2pwZWd8aW1hZ2VzL2g0OS9oNjIvOTEzMDMzNDE1ODg3OC5qcGd8ZTQwNTlkYzAzNzcwODdkMmJhYmY4NzJjYTU1MzQxZGIwMWMyODZhNGY3ZjVmZWQyOTdjYTY3ZTVhYjIyNzM3Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJV-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i7-8650U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc8"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/16 GB/512 GB), LQS-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/16 GB/512 GB), LQS-00023", + "price" : "2957", + "sku" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/16 GB/512 GB), LQS-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQS-00023-Laptops-491550738-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2gxMi9oYmYvOTEzOTUwNDE1MjYwNi5qcGd8NGQ2YjE1ZmUxOWIxMjRmMGYzNzhlYTE2OTEwMzhhOTI3NTA2ZGYwMWM1ZjIzODA0MjUwNWUwZjRmOTczOGE3Yg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQS-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1283" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc9"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/256 GB), LQN-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/256 GB), LQN-00023", + "price" : "1740", + "sku" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/256 GB), LQN-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQN-00023-Laptops-491550736-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2gzOC9oMTYvOTEzOTUxMDcwNjIwNi5qcGd8MDQ1NzVlYjBmMjI3ZGFkNzQ2YTcwZTcyZTdjYjBmNDA3NmVhYmMyYTUwMmRhNmU3N2M5MWVkN2Y2YTJmMjA4NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQN-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1252" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cca"), + "name" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i5/4 GB/1 TB), 80X800YMIN", + "description" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i5/4 GB/1 TB), 80X800YMIN", + "price" : "1086", + "sku" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i5/4 GB/1 TB), 80X800YMIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-Yoga-520-80X800YMIN-Convertible-Laptop-35.56-cm-14-491351180-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDgzOHxpbWFnZS9qcGVnfGltYWdlcy9oM2MvaGFjLzg4NzQ3MzMyNzMxMTguanBnfDlkY2Y4NzAwNGI4YTBjMWUzNjY4NWYyMGY5YjJkNDAzNWJhZGM4NmQ4ZGM5NTExMzY5OGM2NmU0YjI4OTZmY2I", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Generation core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "940MX" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + } + ], + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccb"), + "name" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 11-ad031tu", + "description" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 11-ad031tu", + "price" : "642", + "sku" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 11-ad031tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-x360-11-ad031tu-Convertible-Laptop-29.46-cm-11.6-491351179-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI1MXxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaGM0Lzg4ODgyMDQ4ODYwNDYuanBnfGY2ZmQwYzZmNzE4YjNjODE1NDIzOTM4ZDg0MjljMzI0YjdkZWIxN2I3YjEzOWE3NTJjNDRlZTBkMDE5YzY2NDY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "1.93" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + } + ], + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccc"), + "name" : "Nikon D3500 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "description" : "Nikon D3500 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "price" : "637", + "sku" : "Nikon D3500 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3500-DSLR-Camera-491431009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjUzfGltYWdlL2pwZWd8aW1hZ2VzL2gxNS9oMDEvOTA3MDM1NjI2NzAzOC5qcGd8NGFmZDk5NDM1MjA0NDFkY2Q0M2FmYzY0ZTlmYmUxZTU1MjJiZWE4ZDNkNTI5Mzg4M2NkOWNjZjdhY2MwZDFkZA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-1.7 to +0.5 m(*1)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "11" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering: 3D color matrix metering II Center-weighted metering: Weight of 75% given to 8-mm circle in center of frame Spot metering: Meters 3.5-mm circle" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in increments of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "15-45" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Picture Angle", + "attributeValue" : "170" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "10" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "14" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "f/22 to 32" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dust-reduction system
  • \n
  • Eye-level pentamirror single-lens reflex viewfinder
  • \n
  • Electronically-controlled vertical-travel focal-plane shutter
  • \n
  • Focus can be locked by pressing shutter
  • \n
  • Autofocus is available
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EN-EL14a rechargeable Li-ion battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "365" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccd"), + "name" : "Canon EOS 5D Mark IV DSLR Camera Body", + "description" : "Canon EOS 5D Mark IV DSLR Camera Body", + "price" : "3203", + "sku" : "Canon EOS 5D Mark IV DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-5D-20MARK-4-491005186-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDE0NHxpbWFnZS9qcGVnfGltYWdlcy9oODYvaDdhLzkwOTg5NTcyNTg3ODIuanBnfDYyNTBhMTgwMzFiNGUzN2NjMDlkMDM4MTcxNmQ3YzliZWI1MWI3N2RmNWZlYTgxMjEwY2JkZTJhMDE4NTA5Njg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "30.4" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (*Excluding EF-S and EF-M lenses) (The effective angle of view of a lens is approximately equivalent to that of the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "5D Mark IV" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 36.0 x 24.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.59" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.64" + }, + { + "attributeName" : "Width", + "attributeValue" : "15.07" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cce"), + "name" : "Canon EOS 200D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 200D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "808", + "sku" : "Canon EOS 200D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-200D-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit-491295955-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODMxNXxpbWFnZS9qcGVnfGltYWdlcy9oMDEvaDllLzg5Mjk0ODk0NTMwODYuanBnfDE4OWQxZWZmODViYzM0YjU4NGJkNTZhNGU3NTcwMzViMDdiYjg2MzA5NWM4NWJlOGI3OTNhOWRmYjA1ODdkMmU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) (*Excluding EF-M lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "200D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.87x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "Approx. 18mm lens angle of view" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD): 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,1280 x 720 (HD): 59.94p / 50.00p / 29.97p / 25.00p,640 x 480 (VGA): 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +-5* stops in 1/3- or 1/2-stop increments
    \n* +-3 stops with [Shooting screen: Guided] set
    \nAEB:+-2 stops in 1/3- or 1/2-stop increments (can be combined with manual exposure compensation)" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.98" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3x - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.24" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccf"), + "name" : "Nikon D5600 DSLR Camera with 18-55 mm Lens Kit, Black", + "description" : "Nikon D5600 DSLR Camera with 18-55 mm Lens Kit, Black", + "price" : "746", + "sku" : "Nikon D5600 DSLR Camera with 18-55 mm Lens Kit, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5600-DSLR-Camera-with-18-55-mm-Lens-Kit-Black-491297412-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM2MXxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDM2Lzg5Mjk2NDYyMTUxOTguanBnfGJiMGU0ZjM5YWY3MWE2NDFlZWI4MjFmMGFkYmU5NTIwYzNiODI0NjdjMDczNDkzOWFjNGUyMWMwMDJjODE2ZTI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12- or 14 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5600" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait " + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single-lens reflex digital camera
  • Effective angle of view - Nikon DX format; focal length equivalent to approx. 1.5x that of lenses with FX format angle of view
  • Picture Control system - Standard" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • AN-DC3 strap
  • MH-24 battery charger (plug adapter supplied in countries or regions where required; shape depends on country of sale)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd0"), + "name" : "Nikon D7500 DSLR Camera Body", + "description" : "Nikon D7500 DSLR Camera Body", + "price" : "1290", + "sku" : "Nikon D7500 DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7500-DSLR-Cameras-491295949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzgzMXxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaGNiLzg4ODMxMTA5NjkzNzQuanBnfDVhOGNjNWIwN2Q0NmJhNGU3NjU2OTRkMTFkNDM2ODk5MTQ0ZWU5ZWM2OTBlZDBlODVmYTRjZDBjZGUwMzFkMWI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.9" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m(*1)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.7 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-105" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "DK-28 Rubber Eyecup" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd1"), + "name" : "Nikon D850 DSLR Camera Body Only", + "description" : "Nikon D850 DSLR Camera Body Only", + "price" : "3406", + "sku" : "Nikon D850 DSLR Camera Body Only", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D850-DSLR-Cameras-491362270-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjMyMHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDU3LzkwNjExMTQ4MDYzMDIuanBnfGQ4YTk1Yzc1YmU3N2Q4ODZhOWRkNjA2OTBlYTMwODE3OTRmYmY2NDJlNGE0ZWQ1ODhjYmJiMzYzOGQzYTU2ZTE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "45.7" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D850" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-3 to +1 m(*1)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "153" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5 EV in increments of 1/3" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-120" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "BF-1B body cap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 3.0 Micro-B connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1005" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd2"), + "name" : "Nikon D7500 DSLR Camera with 18-105 mm Lens Kit", + "description" : "Nikon D7500 DSLR Camera with 18-105 mm Lens Kit", + "price" : "1540", + "sku" : "Nikon D7500 DSLR Camera with 18-105 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7500-DSLR-Cameras-491295948-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTk5NHxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaGViLzkwNjExMTc1NTg4MTQuanBnfGM0M2VlZWUyZTA0NmI0MDc2ODg1ZmNiNGQxNTkxYmQ2ZGQ3ODAyZjc3Y2U0NmVmNTAyOWE3ZTVhM2Y4MTk0MmM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.9" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m(*1)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.7 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-51200" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-105" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "DK-28 Rubber Eyecup" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "720" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd3"), + "name" : "Canon EOS 6D Mark II DSLR Camera Body", + "description" : "Canon EOS 6D Mark II DSLR Camera Body", + "price" : "1776", + "sku" : "Canon EOS 6D Mark II DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-6D-Mark-II-Body-DSLR-Cameras-491295951-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDc1MHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaGYyLzg4OTc3NDQ1MzU1ODIuanBnfGZmNDU5ZmJlMTZlY2Q1ZjU3OWFkZmNiZGNlMDg1NzJhMzU2YTQ2MjY3YTU3MjAzZjNjN2I2NjliOThhZjNiODI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (except EF-S and EF-M lenses) (35mm-equivalent lens focal length will be as indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D Mark II" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "Approx. -3.0 - +1.0m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.71x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 secs" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 sec" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "102400" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+ 3stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.48" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1800" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd4"), + "name" : "Canon EOS 80D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 80D DSLR Camera with 18-55 mm Lens Kit", + "price" : "1202", + "sku" : "Canon EOS 80D DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-80D-DSLR-Camera-with-18-55-mm-Lens-Kit-491277862-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTEwOXxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDBkLzg5Mjk2Mzk3OTI2NzAuanBnfGRiNDU4ZmRiZmE4MDE4MzVhZDk1ZDNlMTYyNWYzZGE2NTY4YzVlNGY1Yjc4YzQ2YzIyYTFmMjQ0NDJkYWI2MmQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)* Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "80D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.95x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "(MOV) Full HD (1920x1080): 29.97p / 25.00p / 23.98p,(MP4) Full HD (1920x1080): 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,HD (1280x720): 59.94p / 50.00p / 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual : +/-5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree Celsius" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3 - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.52" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.9" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "1hr. 50 min. at room temperature" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dust delete feature : Auto" + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd5"), + "name" : "Nikon D5300 DSLR Camera with 18-55 mm Lens Kit, Black", + "description" : "Nikon D5300 DSLR Camera with 18-55 mm Lens Kit, Black", + "price" : "606", + "sku" : "Nikon D5300 DSLR Camera with 18-55 mm Lens Kit, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5300-DSLR-Camera-with-18-55-mm-Lens-Kit-Black-491099064-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTMwNXxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGFkLzg5Mjk0OTYwMDY2ODYuanBnfGVmZDJhMWYwZjIyYTMzNzI2NWQ2NTFiYjFjZDVmOWY2MWY2N2E5M2U3OGMwNjI5YzlkY2ZlY2MzMWU2NjNkYTg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5300" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 - +5 EV in increments of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.5" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • BS-1 accessory shoe cover
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • MH-24 battery charger
  • AN-DC3 strap
  • UC-E17 USB cable
  • EG-CP16 audio/video cable
  • DK-5 eyepiece cap
  • ViewNX 2 CD
  • Reference CD (contains the Reference Manual)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd6"), + "name" : "Canon EOS 1500D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 1500D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "628", + "sku" : "Canon EOS 1500D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-1500D-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit-491362609-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTM3NXxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDcyLzg5MzUxODQyMDM4MDYuanBnfGFjYTkxZjgwZTdmYTc3NDc2NzYwNzU1NDM5MmVkYzFlZTQ0MzY3NWE2YzkwZjc1ZjczYTE0MDAyZmY0YTk4MDU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    * Excluding EF-M lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "1500D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "
  • 1920 x 1080: 30p / 25p / 24p
  • 1280 x 720: 60p / 50p
  • 640 x 480: 30p / 25p

  • (* 30p: 29.97fps, 25p: 25.00fps, 24p: 23.98fps, 60p: 59.94fps, 50p: 50.00fps)" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +/-5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree C" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SDHC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd7"), + "name" : "Canon EOS 77D DSLR Camera with 18-135 mm Lens Kit", + "description" : "Canon EOS 77D DSLR Camera with 18-135 mm Lens Kit", + "price" : "1254", + "sku" : "Canon EOS 77D DSLR Camera with 18-135 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-77D-DSLR-Camera-with-18-135-mm-Lens-Kit-491295788-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjkwNHxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaGNjLzg5Mjk0OTE4MTIzODIuanBnfGEyYTIxNjg0OWExMTUzODc1NWYyZWJjODZmMjI4ZGM0OGM0M2Y2MTQzYjhlM2FmM2UxZTg1M2I4YjJiNDNlOTU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    \n* Excluding EF-M lenses
    \n(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "77D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3-stop or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.62" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.1" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd8"), + "name" : "Canon EOS 77D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 77D DSLR Camera with 18-55 mm Lens Kit", + "price" : "964", + "sku" : "Canon EOS 77D DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-77D-DSLR-Camera-with-18-55-mm-Lens-Kit-491295787-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI3M3xpbWFnZS9qcGVnfGltYWdlcy9oODEvaGMwLzg5Mjk0ODY4MzE2NDYuanBnfDQxMTU4ZGMyMGU0Y2M1ODE3YmYzMzNhYzkyMzQ1NjI2ZDk2OGZlZWViOTdjNDMyODhkMWQ3YzMzYzY4ZjI1NTE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    \n* Excluding EF-M lenses
    \n(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "77D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.62" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.1" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd9"), + "name" : "Sony ILCE-6000Y DSLR Camera with 16-50 mm and 55-210 mm Dual Lens Kit", + "description" : "Sony ILCE-6000Y DSLR Camera with 16-50 mm and 55-210 mm Dual Lens Kit", + "price" : "829", + "sku" : "Sony ILCE-6000Y DSLR Camera with 16-50 mm and 55-210 mm Dual Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCE-6000Y-DSLR-Camera-with-16-50-mm-and-55-210-mm-Dual-Lens-Kit-491186291-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjY1MXxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGM0Lzg5Mjk2MjUzMDkyMTQuanBnfDQyYzEyYTI2Yzk5ZTQ5ZTU2NDBjZDllYTM0MDViOTk2MjliNjZlOWU4NzUzMDZiODFkNTExYzZjMGY3NTkxNDQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "6" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG (DCF Ver. 2.0" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6000Y" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "16 mm (focal length printed on the lens body)" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "11" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "With 3 frames in 1/3 EV" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/- 5.0 EV (1/3 EV" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "4.51" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "11 fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 degree Celsius" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - L: Approx. 4x, M: Approx. 5.7x, S: Approx. 8x,Movie - Approx. 4x" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Elements", + "attributeValue" : "9" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "40.5" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "16-50" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.215x" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "9" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "13" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "49" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "22 mm" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.225x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.28" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Telephoto Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 310 shots (viewfinder) / Approx. 360 shots (LCD screen) (CIPA standard)*9 (Still Images)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Focus Type - Fast Hybrid AF(phase-detection AF/contrast-detection AF)
  • Focus Point - 179 points (phase-detection AF)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lens SELP1650
  • Lens SEL55210
  • Lens hood
  • Lens cap
  • Lens rear cap
  • Power cord
  • Rechargeable Battery NP-FW50
  • AC Adaptor AC-UB10
  • Shoulder strap
  • Eyepiece cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cda"), + "name" : "Canon EOS 6D Mark II DSLR Camera with 24-105 mm Lens Kit", + "description" : "Canon EOS 6D Mark II DSLR Camera with 24-105 mm Lens Kit", + "price" : "2703", + "sku" : "Canon EOS 6D Mark II DSLR Camera with 24-105 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-6D-Mark-II-DSLR-Camera-with-24-105-mm-Lens-Kit-491295952-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODE5OXxpbWFnZS9qcGVnfGltYWdlcy9oMDAvaGYyLzg5Mjk0ODQ1Mzc4ODYuanBnfDA1OTk2ZTZkNWVmZDJlMTg0MTFhNmJiZWYyZTU1NjkxZDU4NzFiNDVhMDhhZjBjNjAzYzE3MjczMGE3M2MyMWU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (except EF-S and EF-M lenses)
    \n(35mm-equivalent lens focal length will be as indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D Mark II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.71x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 35.9 x 24.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering " + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.48" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "6.5 fps" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Elements", + "attributeValue" : "17" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-105" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.24" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1800" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdb"), + "name" : "Canon EOS 1500D DSLR Camera Body", + "description" : "Canon EOS 1500D DSLR Camera Body", + "price" : "450", + "sku" : "Canon EOS 1500D DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS1500D-DSLR-491362607-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzYzMXxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGQwLzkwOTg5ODYyMjU2OTQuanBnfGU0ZjQ3YmQ0Zjk5NmJhNThhYzg4OGRhMTE5NzZmYWU0ODQ4Y2QzNmZjNWY1YTZhYjY1MGM0N2ZhMDM5ZjQ4ODU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 1500D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3.0 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "Approx. 17mm" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "1/4000s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "30s" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "White balance" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "
  • Manual: +/-5 stops in 1/3- or 1/2-stop increments
  • AEB: +/-2 stops in 1/3- or 1/2-stop increments
  • " + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Scene Intelligent Auto" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9-point AF with 1 centre cross-type AF point
  • Wi-Fi / NFC supported
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "427" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdc"), + "name" : "Canon EOS 1300D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 1300D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "537", + "sku" : "Canon EOS 1300D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/652e982b-b9e3-4b75-8271-de44b7ed654d-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDAzOHxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaGFjLzg4MjI2OTE2OTI1NzQuanBnfDZlNzYwNGNiOTYyN2FjNDMyZmUzNjNjYjU2YTg3NWVlMGM1MmY0ZDkxYjY5NDU2YjEzZjk4MmFjMTdlZTZlOTg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "18" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) * Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "1300D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.8x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD): 30p / 25p / 24p,1280 x 720 (HD): 60p / 50p,640 x 480 (SD): 30p/25p" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% - 85%" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "1.5x - 10x" + }, + { + "attributeName" : "Elements", + "attributeValue" : "11" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "12" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "4" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.31x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.6" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Telephoto Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "860" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 500 shots at room temperature (with viewfinder shooting)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Shooting mode - Scene Intelligent Auto" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdd"), + "name" : "Nikon D750 DSLR Camera with Body", + "description" : "Nikon D750 DSLR Camera with Body", + "price" : "1761", + "sku" : "Nikon D750 DSLR Camera with Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D750-DSLR-Cameras-491185879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY4MnxpbWFnZS9qcGVnfGltYWdlcy9oYjYvaDJmLzg5MDU2NDc0MjM1MTguanBnfDg4M2ZmNjhkMjVhNjc2ZTEyMGM3MDkxN2Y2YzJmNzhmOTBmNWRjZTMwNDU3MWZhOWJhMDY1MWFhZTEwNjRkOTM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "
  • NEF (RAW): 12 or 14 bit" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "AF Nikkor lenses
    \n
  • Type G" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D750" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "–3 to +1m{sup(-1)}" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.7x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto modes (auto; auto (flash off))" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "1/200 s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "3D color matrix metering II" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.8" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree C–40 C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.7x (50 mm f/1.4 lens at infinity)" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SDHC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.05" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Rubber Eyecup DK-21" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cde"), + "name" : "Nikon D7200 DSLR Camera with 18-140 mm Lens Kit", + "description" : "Nikon D7200 DSLR Camera with 18-140 mm Lens Kit", + "price" : "1116", + "sku" : "Nikon D7200 DSLR Camera with 18-140 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7200-DSLR-Cameras-491213434-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjk4MHxpbWFnZS9qcGVnfGltYWdlcy9oODYvaGQyLzg5MDU2NDcwOTU4MzguanBnfGQyMzFkNDFlNjYwYWZmZjBhYTkyZjE3NmE0YjU4NjIzODFkNDlmNzA2OTIyZjY0MzJkMDRiODdhZjZiYmY5ZWY", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7200" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "\"-2 to +1 m{sup(-1)}" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.94 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "1/250 s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "3D color matrix metering II" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "12" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "17" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "18-140" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "490" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.55" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Charge MH-25a" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdf"), + "name" : "Sony Alpha ILCE-6400L DSLR Camera with 16-50 mm Lens Kit", + "description" : "Sony Alpha ILCE-6400L DSLR Camera with 16-50 mm Lens Kit", + "price" : "1247", + "sku" : "Sony Alpha ILCE-6400L DSLR Camera with 16-50 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-A6400L-DSLR-491431248-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTQyfGltYWdlL2pwZWd8aW1hZ2VzL2g0Ni9oM2YvOTEwODg0NjI4MDczNC5qcGd8YzE5NDY4MWM0NTEzYTk4OWEzYjRmOTI3Y2YxYzIyMmY2Mzk3YmEzYWFjNTU0NjllZTcwNzEyZDAwZTk4ODY0Mg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "1" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6400L" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4.0-+3.0 m-1" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "425" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 Seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/14000 Seconds" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 frames" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Continuous shooting: Hi+: 11fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degrees C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "8" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "9" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "16-50" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "40.5" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "116" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "22–36" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.215x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "1" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Still Image: Approx. 360 shots (Viewfinder)/Approx. 410 shots (LCD monitor) (CIPA standard)
  • \n
  • Movie" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DIGITAL ZOOM: Smart zoom (Still images): M: Approx. 1.4x" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AC Adaptor: AC-UUE12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "403" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce0"), + "name" : "Canon EOS 200D II DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 200D II DSLR Camera with 18-55 mm Lens Kit", + "price" : "769", + "sku" : "Canon EOS 200D II DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-200D-II-DSLR-Camera-491431412-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzUyfGltYWdlL2pwZWd8aW1hZ2VzL2hjMS9oYTkvOTEzODM4Mzg4MDIyMi5qcGd8Mjg1YjZlODNkZTg1OTkyNmEyY2M5OGM5NDZjODU1NGRhNjM3MzQ1YTZlMzdiMGY5YmE4ZTAwZGNiNDkxYTc3YQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 200D II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "APS-C" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +/-5* stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.98" + }, + { + "attributeName" : "Zoom Method", + "attributeValue" : "Rotary (internal)" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Upto OVF: 5fps (One-Shot AF & AI Servo AF) | Live View: 5fps (One-Shot AF)" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3x - 10x (movie only)" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "3x" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "215" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.25x" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "22-32" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.24" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "Dual Pixel CMOS AF" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "654" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce1"), + "name" : "Canon EOS 200D II DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 200D II DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "957", + "sku" : "Canon EOS 200D II DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-200D-II-DSLR-Camera-491431413-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTYxNnxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDBjLzkxMzgzODEyNTg3ODIuanBnfDAwNzkzZDk2MWNmNGNjMjE1Y2Q3OTc3MGI5Y2YxNDJkY2EyODNjNmYwNGE2NTY0MGY1MjRkOWM3NDdjYjAzOTM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 200D II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "APS-C" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +/-5* stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.98" + }, + { + "attributeName" : "Zoom Method", + "attributeValue" : "Rotary (internal)" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Upto OVF: 5fps (One-Shot AF & AI Servo AF) | Live View: 5fps (One-Shot AF)" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3x - 10x (movie only)" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "3x" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "215" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.25x" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "22-32" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "55-250" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "375" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "f/32" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.29x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "2.79" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.24" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "Dual Pixel CMOS AF" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "654" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce2"), + "name" : "Nikon D5300 DSLR Camera with 18-140 mm Lens Kit, Black", + "description" : "Nikon D5300 DSLR Camera with 18-140 mm Lens Kit, Black", + "price" : "779", + "sku" : "Nikon D5300 DSLR Camera with 18-140 mm Lens Kit, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5300-DSLR-Camera-with-18-140-mm-Lens-Kit-Black-491099065-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODY3NnxpbWFnZS9qcGVnfGltYWdlcy9oZmQvaDRiLzg5Mjk1ODYxODQyMjIuanBnfDQwN2Q2ZGJjNTgyZTIyM2RhYmRiZTA4Y2Y5OTkzNmRlODRjZGNmMjgwNmZkNWVhNDM1YTlhMzU3OWY5MGNmMmE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5300" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Pop-up" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "TTL exposure metering using 2016-pixel RGB sensor" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "7" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 shots in steps of 1/3 or 1/2 EV" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "NTSC 30p & 60p, PAL 25p & 50p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "5 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% - 85%" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18 - 140" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 24.2 MP Camera
  • Greater Resolution in any Light
  • Built-in GPS Function
  • D-Lighting
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Bs-1 Accessory Shoe Cover
  • Dk-25 Rubber Eyecup
  • Bf-1B Body Cap
  • En-El14A Rechargeable Li-Ion Battery (With Terminal Cover)
  • Mh-24 Battery Charger
  • An-Dc3 Strap
  • Uc-E17 UBS Cable
  • Eg-Cp16 Audio/Video Cable
  • Dk-5 Eyepiece Cap
  • Viewnx 2 Cod
  • Reference Cod (Contains The Reference Manual)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce3"), + "name" : "Canon EOS 3000D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 3000D DSLR Camera with 18-55 mm Lens Kit", + "price" : "428", + "sku" : "Canon EOS 3000D DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/canon-EOS-3000D-491362606-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDA0MHxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaGMxLzg5MzQxOTY0Nzc5ODIuanBnfDkzN2ViNjQ5OWIwZDMyMGY4ZjZhMjM1OWYxYWY5MzFhMTgzNDE2YTg2MWUzMDU0MjY1OWNjNjBkNDQ2MjEzNzI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "18" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    \r\n(* Excluding EF-M lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "3000D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "
  • 1920 x 1080 - 30p / 25p / 24p
  • \r\n
  • 1280 x 720 - 60p / 50p
  • \r\n
  • 640 x 480 - 30p / 25p

  • \r\n(* 30p: 29.97fps, 25p: 25.00fps, 24p: 23.98fps, 60p: 59.94fps, 50p: 50.00fps)" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual - +/-5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.71" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce4"), + "name" : "Sony ILCA-68K DSLR Camera with 18-55 mm Lens Kit", + "description" : "Sony ILCA-68K DSLR Camera with 18-55 mm Lens Kit", + "price" : "682", + "sku" : "Sony ILCA-68K DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCA-68K-DSLR-Camera-with-18-55-mm-Lens-Kit-491277868-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODE0NnxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaGZlLzg5Mjk2MTQ4ODg5OTAuanBnfDRiYzMxMzA3YWZlMmFkMzlkZTYzNTFhNjk4NDJjOGUwOGZlMTliYmU1ZjI1MDYyZmY5MWNjMWIyNTdjMGIxMmQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "6" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG (DCF Ver. 2.0" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "A-mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-68K" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.88x (35 mm camera equivalent: Approx. 0.57x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "10" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.28" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - L: Approx. 4x, M: Approx. 5.7x, S: Approx. 8x,Movie - Approx. 4x" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 580 shots (still images)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • APS-C type (23.5 x 15.6mm)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lens cap
  • Lens rear cap
  • Power cord
  • Rechargeable Battery NP-FM500H
  • Battery Charger BC-VM10A
  • Shoulder strap
  • Body cap
  • Eyepiece cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce5"), + "name" : "Nikon D5600 DSLR Camera with 18-140 mm Lens Kit, Black", + "description" : "Nikon D5600 DSLR Camera with 18-140 mm Lens Kit, Black", + "price" : "888", + "sku" : "Nikon D5600 DSLR Camera with 18-140 mm Lens Kit, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5600-DSLR-Camera-with-18-140-mm-Lens-Kit-Black-491297414-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDE1MXxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaGQxLzg5Mjk1MjY3NDMwNzAuanBnfDAxMTI3MWMyNDBkNzk2ZDdkNDZmM2ZlZDA0MmNmYzMwNjU1OGZmYTY5NzFkODlkNDgxOWZjYzcwOTIzMjFjMzU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12- or 14 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5600" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree C to 40 Degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-140" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single-lens reflex digital camera
  • Effective angle of view - Nikon DX format; focal length equivalent to approx. 1.5x that of lenses with FX format angle of view
  • Picture Control system - Standard" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • AN-DC3 strap
  • MH-24 battery charger (plug adapter supplied in countries or regions where required; shape depends on country of sale)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce6"), + "name" : "Nikon D850 DSLR Camera with 24-120 mm Lens Kit", + "description" : "Nikon D850 DSLR Camera with 24-120 mm Lens Kit", + "price" : "3942", + "sku" : "Nikon D850 DSLR Camera with 24-120 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D850-DSLR-Cameras-491362271-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTY0NXxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaGQ4LzkwNjExMTU4NTQ4NzguanBnfDdhYjVhNmMxMmVhMGFkMzMyYWU1YjU3NzU2ODQ1NGRiZWZjY2QyYzVmOWM4N2FlZjRhMDVlMjYyNWM4ZjNlNjc", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "45.7" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D850" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-3 to +1 m(*1)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "153" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5 EV in increments of 1/3" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-120" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "BF-1B body cap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 3.0 Micro-B connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1005" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce7"), + "name" : "Canon EOS 80D DSLR Camera with 18-135 mm Lens Kit", + "description" : "Canon EOS 80D DSLR Camera with 18-135 mm Lens Kit", + "price" : "1529", + "sku" : "Canon EOS 80D DSLR Camera with 18-135 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-80D-DSLR-Camera-with-18-135-mm-Lens-Kit-491277863-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzU2NnxpbWFnZS9qcGVnfGltYWdlcy9oZGQvaGEyLzg5Mjk2MTY1MjczOTAuanBnfDE0MTJjOWNiMTIwOTBlYzZiZWIwNTUxMWZkMGY0YWUzN2YwM2Q5OThkNWUyZjczMjg1ZjQ0MTFkNzVkZDVmMjI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)* Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "80D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.95x" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "(MOV) Full HD (1920x1080) : 29.97p / 25.00p / 23.98p,(MP4) Full HD (1920x1080) : 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,HD (1280x720) : 59.94p / 50.00p / 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/- 3 stops in 1/3-stop or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree Celcius" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3 - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.52" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.9" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "1hr. 50 min. at room temperature (Movie Shooting)" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Highlight tone priority
  • Noise reduction : Applicable to long exposures and high ISO speed shots
  • Automatic image brightness correction
  • Grid display
  • Electronic level
  • Depth-of-field preview
  • Anti-flicker
  • Auto image alignment
  • FE lock
  • Creative filters
  • Silent LV shooting
  • Touch shutter
  • HDR Movie Shooting
  • Interface languages : 25
  • Touch screen technology : Capacitive sensing
  • Image rotation
  • Image protection
  • Resize
  • Custom Functions : 26
  • NFC connection : For communication with smartphones or connection to Connect Station
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce8"), + "name" : "Nikon D5600 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit, Black", + "description" : "Nikon D5600 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit, Black", + "price" : "837", + "sku" : "Nikon D5600 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5600-20DZ-491297413-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM2MXxpbWFnZS9qcGVnfGltYWdlcy9oNjQvaDcyLzg5Mjk2NDIyODMwMzguanBnfGYzNzcyYmFiNmRkMzM0ZDJiOWYzNDIzZTY4MzkwYzhjNjg3NDhkYTMzMjIyMzBkNTQxNmY0MjU3Nzc2NjY1MTA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12- or 14 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5600" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait " + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "10" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "14" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.7" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single-lens reflex digital camera
  • Effective angle of view - Nikon DX format; focal length equivalent to approx. 1.5x that of lenses with FX format angle of view
  • Picture Control system - Standard" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • AN-DC3 strap
  • MH-24 battery charger (plug adapter supplied in countries or regions where required; shape depends on country of sale)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce9"), + "name" : "Canon EOS 1500D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 1500D DSLR Camera with 18-55 mm Lens Kit", + "price" : "508", + "sku" : "Canon EOS 1500D DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-1500D-DSLR-491362608-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDE4MnxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaDE3Lzg5OTM0MDQyNTYyODYuanBnfGEyMzMzZWI0YzAxMjE2MDY1MWM5MjQ3Yzk5NWQwMjk3MzVjYWNhYzYwMmRhNzg0NTAzYTVlZWZlODQ1NzNkZTY", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 1500D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "9" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "1/4000s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "30s" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "White balance" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "
  • Manual: +/-5 stops in 1/3- or 1/2-stop increments
  • AEB: +/-2 stops in 1/3- or 1/2-stop increments
  • " + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Scene Intelligent Auto" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "3x" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Lens-shift type" + }, + { + "attributeName" : "Groups", + "attributeValue" : "11" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18 - 55" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "22-38" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.34x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9-point AF with 1 centre cross-type AF point
  • Wi-Fi / NFC supported
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "475" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cea"), + "name" : "Canon EOS 5D Mark IV DSLR Camera with 24-105 mm Lens Kit", + "description" : "Canon EOS 5D Mark IV DSLR Camera with 24-105 mm Lens Kit", + "price" : "4153", + "sku" : "Canon EOS 5D Mark IV DSLR Camera with 24-105 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-5D-20MARK-4-491005187-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDY3MXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaDlkLzg5Mjk1MTI1ODcyOTQuanBnfGJmNTgxZDFkZjIxOWU2ODBiZTAxNzNkNGYxNjQ0YjJkZWI5OTZkZDUzMzMzN2Y1MjQ4ZGEyZWY4NDY4MTY0YzA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "30.4" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (*Excluding EF-S and EF-M lenses) (The effective angle of view of a lens is approximately equivalent to that of the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "5D Mark IV" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 36.0 x 24.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.59" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-105" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.64" + }, + { + "attributeName" : "Width", + "attributeValue" : "15.07" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ceb"), + "name" : "Nikon D810 DSLR Camera (Body), Black", + "description" : "Nikon D810 DSLR Camera (Body), Black", + "price" : "2985", + "sku" : "Nikon D810 DSLR Camera (Body), Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D810-DSLR-Camera-Body-Black-491173070-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjkzMXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDlmLzg5Mjk2MDExMjY0MzAuanBnfDFkMTAzZTMxMmE0ZWZiYWJkYjU4OGQ1YTM5ZWEwMmQ1NTcwY2RhY2EzYmJmYWM4YTcyOTk3OTI4MWZmMmNiZjk", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "36.3" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D810" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Pop-up" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "11" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "30 fps" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-5 - +5 EV (1/3 EV)" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Standard" + }, + { + "attributeName" : "Height", + "attributeValue" : "12.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Completely redesigned for peak image quality
  • The secret to superior imaging
  • All-new image sensor delivers the sharpest" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • HDMI Cable Clip
  • USB Cable Clip
  • Body Cap BF-1B
  • LCD Monitor Cover BM-12
  • ViewNX 2
  • Rechargeable Li-ion battery EN-EL15
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cec"), + "name" : "Canon EOS 6D DSLR Camera with Portrait Lens 24 - 105 mm Lens Kit, Black", + "description" : "Canon EOS 6D DSLR Camera with Portrait Lens 24 - 105 mm Lens Kit, Black", + "price" : "2348", + "sku" : "Canon EOS 6D DSLR Camera with Portrait Lens 24 - 105 mm Lens Kit, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491018447-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTU2M3xpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDdkLzg5Mjk2MDc5NDIxNzQuanBnfDg1ZWQ3Y2YzMzRjOTdmMDg5OGY4YmMwZDkxZGQ5ZTllOWMxN2FkMjdjMmY3ODdhNjc0OGEzNTAxNjIzOGE2YmI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.8 x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Pop-up" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "11" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "30 fps" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-3 - +3 EV (1/3 EV)" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Program AE (Scene Intelligent Auto" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24 - 105" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Portrait Lens" + }, + { + "attributeName" : "Height", + "attributeValue" : "11" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 20.2-megapixel full-frame sensor
  • ISO expandable to 102400
  • Built-in WiFi and GPS
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ced"), + "name" : "Nikon D3500 DSLR Camera Body", + "description" : "Nikon D3500 DSLR Camera Body", + "price" : "453", + "sku" : "Nikon D3500 DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3500-DSLR-Camera-491431007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE4N3xpbWFnZS9qcGVnfGltYWdlcy9oODAvaDU4LzkwNzIwOTYzMTMzNzQuanBnfDJlN2VlYzJjMjdiMDIyNTBlMTkyNmQ0NWExNTQzODhmYjE0ZGZjZDE1ZjU4MDE0MzA5NDU5YzkzMGNlNzc2YmI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-1.7 to +0.5 m(*1)" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "11" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in increments of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DX Image sensor format
  • Frame coverage: Approx. 95% horizontal and 95% vertical
  • Eyepoint: 18 mm (–1.0 m(*1); from center surface of viewfinder eyepiece lens)
  • Exposure lock: Luminosity locked at detected value with AE-L/AF-L button
  • Autofocus system: Nikon Multi-CAM 1000 autofocus sensor module with TTL phase detection" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AN-DC3 Strap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "365" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cee"), + "name" : "Nikon D3500 DSLR Camera with 18-55 mm Lens Kit", + "description" : "Nikon D3500 DSLR Camera with 18-55 mm Lens Kit", + "price" : "500", + "sku" : "Nikon D3500 DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3500-DSLR-Camera-491431008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MTI3fGltYWdlL2pwZWd8aW1hZ2VzL2gwYS9oYzEvOTA3MjA5Njk2ODczNC5qcGd8NmU4MmFlMzQ2ZTVmYWU3NGYxM2NkZWUxMWI3ZWIxYzk2MDQwMjhhNGNiYmZmODYyOWE1OWU1ZGE0MzlkODYzNA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-1.7 to +0.5 m(*1)" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "11" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in increments of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Elements", + "attributeValue" : "12" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "55" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Groups", + "attributeValue" : "9" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "205" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DX Image sensor format
  • Frame coverage: Approx. 95% horizontal and 95% vertical
  • Eyepoint: 18 mm (–1.0 m(*1); from center surface of viewfinder eyepiece lens)
  • Exposure lock: Luminosity locked at detected value with AE-L/AF-L button
  • Autofocus system: Nikon Multi-CAM 1000 autofocus sensor module with TTL phase detection" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AN-DC3 Strap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "365" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cef"), + "name" : "Canon EOS 750D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 750D DSLR Camera with 18-55 mm Lens Kit", + "price" : "812", + "sku" : "Canon EOS 750D DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-750D-DSLR-Camera-with-18-55-mm-Lens-Kit-491211706-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDgxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaDA0Lzg5Mjk2MzkwNzE3NzQuanBnfGMxYTE5MTAxNGJhZmFhMzZjZTU4ZTcyYWM0MWQzNzQ0ZTAwYTU4NWI3YTQ2Yjg0ZmJkOWEyZGZjMTA1M2Q2MDE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) *Excluding EF-M lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "750D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD) : 29.97p / 25.00p / 23.98p,1280 x 720 (HD) : 59.94p / 50.00p / 29.97p / 25.00p,640 x 480 (SD) : 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual : +/- 5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.78" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree Celsius" + }, + { + "attributeName" : "Elements", + "attributeValue" : "13" + }, + { + "attributeName" : "Groups", + "attributeValue" : "11" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.36x (at 55mm focal length)" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.07" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.19" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 440 shots at room temperature (With Viewfinder Shooting)" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Reduction\t\r\nApplicable to long exposures and high ISO speed shots
  • Automatic Image Brightness Correction
  • Highlight Tone Priority
  • Grid display
  • Depth-of-field Preview
  • Anti-flicker
  • Movie Servo AF
  • Miniature effect movie
  • Still Photo Shooting
  • Interface Languages : 25
  • Touch Screen Technology : Capacitive sensing
  • AF Point Display
  • Image Rotate
  • Image Protect
  • Resize
  • Cropping
  • Custom Functions : 13
  • My Menu Registration
  • NFC connection
  • Eye-Fi Card Compatible
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf0"), + "name" : "Nikon Z6 DSLR Camera with 24-70 mm Lens Kit", + "description" : "Nikon Z6 DSLR Camera with 24-70 mm Lens Kit", + "price" : "3029", + "sku" : "Nikon Z6 DSLR Camera with 24-70 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-Z6-DSLR-491431199-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkzMnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDc1LzkwODA5NDEyMTU3NzQuanBnfGQxNjc1ZjBhNjAzZTljNThiMDZmOGM1YzllZDFiNzNlYzI2Y2JjOTFhNTBhNDlhMGFiMTRlMDRhYWI4MjBkMDQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.5" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Z mount NIKKOR lenses F mount NIKKOR lenses with mount adapter" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon Z mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Z6" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4 to +2 m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "0.8x" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Ultra HD" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "273" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "P" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering Center-weighted metering: Weight of 75% given to 12 mm circle in center of frame; weighting can instead be based on average of entire frame Spot metering: Meters 4 mm circle (about 1.5% of frame) centered on selected focus point Highlight-weighted metering" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5 EV in increments of 1/3 or 1/2 EV available in modes P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.75" + }, + { + "attributeName" : "Zoom Method", + "attributeValue" : "Rotary (internal)" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-70" + }, + { + "attributeName" : "Lens Picture Angle", + "attributeValue" : "170" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Body Cap, Rubber Eyecup (comes attached to camera), EN-EL15b Rechargeable Li-ion, Battery with terminal cover, MH-25a Battery Charger , AN-DC19 Strap, HDMI/USB Cable Clip, UC-E24 USB Cable, BS-1 Accessory Shoe Cover" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "675" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf1"), + "name" : "Canon EOS 800D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 800D DSLR Camera with 18-55 mm Lens Kit", + "price" : "957", + "sku" : "Canon EOS 800D DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-800D-DSLR-Camera-with-18-55-mm-Lens-Kit-491295785-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzY1N3xpbWFnZS9qcGVnfGltYWdlcy9oZjQvaDAyLzg5Mjk0OTkyODM0ODYuanBnfDYyNmU4NDZhYjNjOGIzMjI2ZmQ3NjMxNWM3MTM5ZDUwNjk4M2M3YTdkMDk5Y2I5YWFkYzAwNTFmZGUzNTZlNDc", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) (*Excluding EF-M lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "800D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "Full HD (1920x1080): 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,HD (1280x720): \t59.94p / 50.00p / 29.97p / 25.00p,VGA (640x480): 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +-5* stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.62" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3 - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Group Photo" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "10x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.1" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Movie Shooting Time - Approx. 1 hour 55 min" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf2"), + "name" : "Nikon D3400 DSLR Camera with 18-55 mm Lens Kit", + "description" : "Nikon D3400 DSLR Camera with 18-55 mm Lens Kit", + "price" : "536", + "sku" : "Nikon D3400 DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3400-DSLR-Camera-with-18-55-mm-Lens-Kit-491295692-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjE0NXxpbWFnZS9qcGVnfGltYWdlcy9oMDkvaDJkLzg5Mjk2MDgyNjk4NTQuanBnfDIwYmMxYmViNjEyODA4ODNhYjczYmVhZGJhMzgwMDc0YzZmY2Y5NGU2ZjUyYjI1ODNiZWM1NGU4ZmRkMGJmOWQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3400" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.55" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree to 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Image sensor format : DX
  • Dust-reduction system : Image Dust Off reference data (Capture NX-D software required)
  • Eyepoint - 18 mm (-1.0 m; from center surface of viewfinder eyepiece lens)
  • Reflex mirror - Quick return
  • Focusing screen - Type B BriteView Clear Matte Mark VII screen
  • Lens aperture - Instant return" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • MH-24 battery charger (plug adapter supplied in countries or regions where required shape depends on country of sale)
  • DK-25 rubber eyecup
  • BF-1B body cap
  • AN-DC3 strap
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Type C HDMI connector" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf3"), + "name" : "Nikon D3400 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "description" : "Nikon D3400 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "price" : "688", + "sku" : "Nikon D3400 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3400-DSLR-Camera-with-18-55-mm-and-70-300-mm-Dual-Lens-Kit-491295693-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTM0OHxpbWFnZS9qcGVnfGltYWdlcy9oNmEvaDg4Lzg5NjMwNTYxMDc1NTAuanBnfDE2OWU3NWJmZjFjMWQ2MWM4OThiZjRjM2YzZDIzMWE5Y2VjZDkyMjkyMTM4NWRlZGQ4YjgzZjE4Mjc3ZTBiNWI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3400" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.55" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree to 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "10" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "14" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "f/22, to 32" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.7" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Telephoto Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Image sensor format : DX
  • Dust-reduction system : Image Dust Off reference data (Capture NX-D software required)
  • Eyepoint - 18 mm (-1.0 m; from center surface of viewfinder eyepiece lens)
  • Reflex mirror - Quick return
  • Focusing screen - Type B BriteView Clear Matte Mark VII screen
  • Lens aperture - Instant return" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • MH-24 battery charger (plug adapter supplied in countries or regions where required shape depends on country of sale)
  • DK-25 rubber eyecup
  • BF-1B body cap
  • AN-DC3 strap
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Type C HDMI connector" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf4"), + "name" : "Canon EOS 1300D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 1300D DSLR Camera with 18-55 mm Lens Kit", + "price" : "460", + "sku" : "Canon EOS 1300D DSLR Camera with 18-55 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-1300D-DSLR-Camera-with-18-55-mm-Lens-Kit-491277861-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjAwNnxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaGI1Lzg5Mjk2MTc4MzgxMTAuanBnfGY2MzY1MDRkZTkyN2FlZjIxZmRkZGM5MzliNWY5NGI0YzdiZWYxYTBiMDA3ODhjYzE0ZjQ4N2VhOTQ4NGRkMTQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "18" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) * Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "1300D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.8x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD): 30p / 25p / 24p,1280 x 720 (HD): 60p / 50p,640 x 480 (SD): 30p/25p" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% - 85%" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "Approx. 1.5x - 10x" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 1.5x - 10x (Playback)" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "860" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 500 shots at room temperature (with viewfinder shooting)" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Shooting mode - Scene Intelligent Auto" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf5"), + "name" : "Sony ILCA-99M2 DSLR Camera Body", + "description" : "Sony ILCA-99M2 DSLR Camera Body", + "price" : "3624", + "sku" : "Sony ILCA-99M2 DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCA-99M2-DSLR-Camera-Body-491295773-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODM4N3xpbWFnZS9qcGVnfGltYWdlcy9oNDAvaGMyLzg5Mjk1MDM4NzEwMDYuanBnfGQ5NzgzNmJhYjc0ZDBmMWU4NzZmOWJhZDcxOGYyZGU0ODZkMDNkZGU1OGE4NjJmYjdmZGYyZDc5YzYzOWM5NmI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "42.4" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Sony A-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-99M2" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "approx. 0.78 x (with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 Degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still images - 35 mm full frame: L: approx. 4x, M: approx. 6.2x, S: approx. 8x, APS-C: L: approx. 4x, M: approx. 5.2x, S: approx. 8x,Movie - 35 mm full frame: approx. 4x, APS-C: approx. 4x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Shoulder strap
  • Body cap
  • Accessory shoe cap
  • Eyepiece cup
  • Micro USB cable
  • Battery Charger BC-VM10A
  • Rechargeable Battery NP-FM500H
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf6"), + "name" : "Sony ILCE-7SM2 DSLR Camera Body", + "description" : "Sony ILCE-7SM2 DSLR Camera Body", + "price" : "3116", + "sku" : "Sony ILCE-7SM2 DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCE-7SM2-DSLR-Camera-Body-491216793-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTY2OHxpbWFnZS9qcGVnfGltYWdlcy9oMDgvaDljLzg5Mjk0ODA2MDU3MjYuanBnfGNhMGUyMTJjZjNmODQ0MTVkMDAyNzJhZTA2OWFiYTJmMWIyNTZkODI2NjVjYjM1ZjY4MDQ3NjRlMWIyYjU4OTc", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "RAW" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-7SM2" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.78 x (with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.6 x 23.8 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "Bracket: Single/Bracket: Cont." + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (in 1/3 EV or 1/2 EV steps)" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.03" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - 35mm full frame: L: approx 4x, M: approx 6.1x, S :approx 8x, APS-C: L: approx 4x, M: approx 5.2x, S: approx 8x,Movie - 35mm full frame: approx 4x, APS-C: approx 4x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.69" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Power cord
  • Rechargeable Battery NP-FW50
  • Cable Protector
  • AC Adaptor AC-UD10
  • Battery Charger BC-VW1
  • Shoulder strap
  • Body cap
  • Accessory shoe cap
  • Eyepiece cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf7"), + "name" : "Sony ILCA-68M DSLR Camera with 18-135 mm Lens Kit", + "description" : "Sony ILCA-68M DSLR Camera with 18-135 mm Lens Kit", + "price" : "1116", + "sku" : "Sony ILCA-68M DSLR Camera with 18-135 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCA-68M-DSLR-Camera-with-18-135-mm-Lens-Kit-491277869-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjE4M3xpbWFnZS9qcGVnfGltYWdlcy9oYTkvaDQyLzg5Mjk1MjM0MDA3MzQuanBnfGEwMzlhNjU4YTU0Y2RkZWQyMjgzYTc4MWFiMWE1ZGU0M2Y2YTYyOTZkODM2MGRkMmQwZGI3ZDgzODliODVlOTQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "A-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-68M" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.88x (35 mm camera equivalent: Approx. 0.57x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.28" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - L: Approx. 4x, M: Approx. 5.7x, S: Approx. 8,Movie - Yes (4x)" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery Charger BC-VM10A
  • Body cap
  • Eyepiece cup
  • Lens cap
  • Micro USB cable
  • Power cord
  • Rechargeable Battery NP-FM500
  • Shoulder strap
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf8"), + "name" : "Canon EOS 7D Mark II DSLR Camera with 18-135 mm Lens Kit", + "description" : "Canon EOS 7D Mark II DSLR Camera with 18-135 mm Lens Kit", + "price" : "1971", + "sku" : "Canon EOS 7D Mark II DSLR Camera with 18-135 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-7D-Mark-II-DSLR-Camera-with-18-135-mm-Lens-Kit-491186095-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc5M3xpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDA5Lzg5Mjk2MTM1NzgyNzAuanBnfDczOTY0ZGM2NDQ0NmYwN2JiZmRiZWNhZjMzOTg4OGY5NTEyMzdlYjA5Mzk1NjE0YTM0NTdmOTFmODNmOGZmNGQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) Excluding EF-M lenses (35mm-equivalent focal length is approx. 1.6 times the focal length indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "7D Mark II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.00x (-1 m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.4 x 15.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "Full HD (1920x1080): 59.94p / 50.00p / 29.97p / 25.00p / 24.00p / 23.98p,HD (1280x720): 59.94p / 50.00p / 29.97p / 25.00p,SD (640x480): 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+-3 stops in 1/3-stop or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.82" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "10 fps" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree Celsius" + }, + { + "attributeName" : "Elements", + "attributeValue" : "16" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "67" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.28x (at 135 mm focal length)" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.24" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.86" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 1hr. 40min movie shooting time with a fully-charged Battery Pack LP-E6N" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual DIGIC 6 image processor
  • Auto Lighting Optimizer
  • Highlight tone priority
  • Lens aberration correction
  • Anti-flicker
  • Depth-of-field preview
  • Picture Style - Auto" + }, + { + "attributeName" : "USB", + "attributeValue" : "SuperSpeed USB (v3.0)" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf9"), + "name" : "Sony Alpha ILCA-77M2 DSLR Camera Body", + "description" : "Sony Alpha ILCA-77M2 DSLR Camera Body", + "price" : "1232", + "sku" : "Sony Alpha ILCA-77M2 DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Alpha-ILCA-77M2-DSLR-Camera-Body-491161475-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc3NXxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaGYxLzg5Mjk2MTEyODQ1MTAuanBnfDc2YzJlNGZkYmMxYjA5ODk4NGRlMDdjZjFhYzliZmRmMDcyNWVkODk0NzYxZDdjYWVhNGIzOGU1NTM5ZTI1OWM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "6" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG (DCF Ver. 2.0" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses (also compatible with Konica and Minolta lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Sony A-mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-77M2" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.09x (35 mm camera equivalent: Approx. 0.71x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 X 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "1 m - 5 m" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "12 fps" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.09" + }, + { + "attributeName" : "Zoom Lock", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AC3" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "12 fps" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 480 shots (still images)" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Continuous Shooting Speed : Continuous Priority AE (12fps)" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "PMB (Picture Motion Browser) v5.2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery Charger (BC-VM10A)
  • Rechargable Battery (NP-FM500H)
  • Shoulder Strap
  • Accessory Shoe Cap
  • Body Cap
  • Eye Piece Cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfa"), + "name" : "Nikon D7200 DSLR Camera with 18-200 mm Lens Kit", + "description" : "Nikon D7200 DSLR Camera with 18-200 mm Lens Kit", + "price" : "1403", + "sku" : "Nikon D7200 DSLR Camera with 18-200 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7200-DSLR-Cameras-491362479-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDQ2MXxpbWFnZS9qcGVnfGltYWdlcy9oMWMvaDUwLzg4OTc3NDY4MjkzNDIuanBnfGNhOTk3MGY5YzU0M2VhMWE3NmM1NjdkNDBmYjQ5ODI1ZDM0YTU0MzU0MmFkYWU1NGIxMGJjMTdlOTk2ZDZmZDA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7200" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.94 x" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Scene Modes" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-200" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.55" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Rubber Eyecup DK-23" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfb"), + "name" : "Canon EOS 6D Mark II DSLR Camera with 24-70 mm Lens Kit", + "description" : "Canon EOS 6D Mark II DSLR Camera with 24-70 mm Lens Kit", + "price" : "2471", + "sku" : "Canon EOS 6D Mark II DSLR Camera with 24-70 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-6D-Mark-II-DSLR-Cameras-491295953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzYxNXxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaDJjLzg5MjE5ODQ0MDE0MzguanBnfGM0NzFlZDNiMDZjZDJlY2YzNmE4MjU5MzU2MDYyZjQ5M2U2MTViZjhjYzE5NGNkZGEwNjBmNGM3NzRkZjI5ODI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (except EF-S and EF-M lenses) (35mm-equivalent lens focal length will be as indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D Mark II" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "Approx. -3.0 - +1.0m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.71x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 secs" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 sec" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "102400" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.48" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG" + }, + { + "attributeName" : "Elements", + "attributeValue" : "15" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-70" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1800" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfc"), + "name" : "Sony Alpha ILCE-6400 DSLR Camera Body", + "description" : "Sony Alpha ILCE-6400 DSLR Camera Body", + "price" : "1102", + "sku" : "Sony Alpha ILCE-6400 DSLR Camera Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-A6400-DSLR-491431249-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjU3fGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oNzAvOTEwODg0MzAwMzkzNC5qcGd8ZDcyNzM2NjQxODQyYTU3NGE2YWJiZmRjOGM0MzllYTkzZTkyMDRhMzhiOWU2MDhhNGMyODRkNDI0NTFmNTEzZg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "1" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6400" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4.0-+3.0 m-1" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "425" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 Seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/14000 Seconds" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 frames" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Continuous shooting: Hi+: 11fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degrees C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 1.07x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Still Image: Approx. 360 shots (Viewfinder)/Approx. 410 shots (LCD monitor) (CIPA standard)
  • \n
  • Movie" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DIGITAL ZOOM: Smart zoom (Still images): M: Approx. 1.4x" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AC Adaptor: AC-UUE12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "403" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfd"), + "name" : "Sony Alpha ILCE-6400M DSLR Camera with 18-135 mm Lens Kit", + "description" : "Sony Alpha ILCE-6400M DSLR Camera with 18-135 mm Lens Kit", + "price" : "1595", + "sku" : "Sony Alpha ILCE-6400M DSLR Camera with 18-135 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-A6400M-DSLR-491431250-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTI1fGltYWdlL2pwZWd8aW1hZ2VzL2g1Zi9oZmIvOTEwODg0MTE2ODkyNi5qcGd8ZmM4ZWU4MTYyMTkwZjgyMWQ5OTkwNzExNWI1ODU3NjM2OTJhYTY0NTQxNDU0YjgzNTk0ZmU1ZDc5ZTFmZGE4Yw", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "1" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6400M" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4.0-+3.0 m-1" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "425" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 Seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/14000 Seconds" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 frames" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Continuous shooting: Hi+: 11fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degrees C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "12" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "16" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "55" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "325" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "22–36" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.29x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "1.48" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Still Image: Approx. 360 shots (Viewfinder)/Approx. 410 shots (LCD monitor) (CIPA standard)
  • \n
  • Movie" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DIGITAL ZOOM: Smart zoom (Still images): M: Approx. 1.4x" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AC Adaptor: AC-UUE12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "403" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfe"), + "name" : "Nikon D7500 DSLR Camera with 18-140 mm Lens Kit", + "description" : "Nikon D7500 DSLR Camera with 18-140 mm Lens Kit", + "price" : "1540", + "sku" : "Nikon D7500 DSLR Camera with 18-140 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-VBK510UN-DSLR-Cameras-491431245-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTQ5MnxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDFjLzkxMTcwMTgwNjI4NzguanBnfGFiNmIxMDdjOWEyZmQxM2ZjOGYyMGI3YTE3NTE3MzAyOWVhNGMwOWYyM2M3YTljMDQ4NDI1NjQwM2I3ZDVlNmM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.9" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m(*1)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.7 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix: 3D color matrix metering III (type G" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Elements", + "attributeValue" : "17" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "67" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "490" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-140" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22-38" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "1.48" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.55" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "DK-28 Rubber Eyecup" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-B connector; connection to built-in USB port is recommended" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "720" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cff"), + "name" : "Nikon D750 DSLR Camera with 24-120 mm Lens Kit", + "description" : "Nikon D750 DSLR Camera with 24-120 mm Lens Kit", + "price" : "2391", + "sku" : "Nikon D750 DSLR Camera with 24-120 mm Lens Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D750-DSLR-Camera-with-24-120-mm-Lens-Kit-491185880-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDE3NHxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaGMwLzg5Mjk2MjExMTQ5MTAuanBnfDcxZGJkMjY5ZjNlZjhjMjc4ZGYwYzY2YmNjZjY1OWIzZWY5NmYxMjkzZWIyMmIzNmZhNTRhNzY5MDM1MjkyZWE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D750" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 - +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.8" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree Celsius - 40 degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-120" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.7x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.05" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Image sensor cleaning
  • Image Dust Off reference data (Capture NX-D software required)
  • Reflex mirror : Quick-return type
  • Depth-of-field preview
  • Flash-Ready indicator
  • Authentication: Open system
  • Eyepoint - 21 mm (-1.0 m{sup(-1)}; from center surface of viewfinder eyepiece lens)
  • AF-area mode - Face-priority AF" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Rubber Eyecup DK-21
  • Body Cap BF-1B
  • Rechargeable Li-ion Battery EN-EL15 with terminal cover
  • Battery Charger MH-25a (comes with either an AC wall adapter or power cable of a type and shape that varies with the country or region of sale)
  • Eyepiece Cap DK-5
  • USB Cable UC-E17
  • Strap AN-DC14
  • ViewNX 2 installer
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes, Type C HDMI" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d00"), + "name" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Coral Red", + "description" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Coral Red", + "price" : "479", + "sku" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Coral Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15Pro-Red-6-128GB-12-8-5MP-32MP-SmartPhone-491550772-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjY0fGltYWdlL2pwZWd8aW1hZ2VzL2hhYi9oZDAvOTEwMzQwMzMxOTMyNi5qcGd8ZjM5MDk5YjMxNDVmZjAzYThiZWNmOGU1ZDg4ZjY3ODlhNzAwN2JjMjE5N2I1MGQ3NGVmOGJkODNiYzQ3ZDAxNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE - B1/3/5/8
  • TDD-LTE - B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.471" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.821" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pop Camera
  • Infiniti Screen
  • GoPop Signal projection
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone, Documentation, USB Cable, USB Power Adapter, SIM Ejector, Protective Case, Protective Film (applied)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d01"), + "name" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Blue", + "description" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Blue", + "price" : "450", + "sku" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488123-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MzA1fGltYWdlL2pwZWd8aW1hZ2VzL2hkZi9oNjMvOTA0OTY3NTk4OTAyMi5qcGd8MGUwMDJmODdkMjZiMjNkZTA1NjhjYzhkNTIyNDg4ZTYyZjE1MjhhM2QyM2Q5ZTE2ZDdkODQ4NjAyODE2MDRiNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d02"), + "name" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Steel", + "description" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Steel", + "price" : "356", + "sku" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-7-1-TA-1097-DS-4-64-IN-CM-STEEL-491503442-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDI4MXxpbWFnZS9qcGVnfGltYWdlcy9oMGUvaGM0LzkwNzQ2MDc2MjAxMjYuanBnfDk0MmZkNDIyZjM2MThjYTU1M2NlOTI1Y2MyYjkxNTQ5MTJhNzBmOGUzNGIwYTkwYjVlY2UyMzUyOWUyZjc2NWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Steel" + }, + { + "attributeName" : "Model", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.83 cm (5.84 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 636" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "160" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "Single speaker with smart amp" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 18W charger
  • \n
  • USB Type-C cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • \n
  • Headset
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (USB 2.0)" + } + ], + "manufacturer" : "Nokia", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d03"), + "name" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism Black", + "description" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism Black", + "price" : "856", + "sku" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10e-BLK-6-128-5-8-Smart-Phone-491550800-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTM4fGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oNjIvOTEwNDUzODg5NDM2Ni5qcGd8NDJlOTJkNzRjMmE0ZjYzNTY0ZWU1ZDE1NDI4ZDBkYThkYmE5Mjc2N2U0NjhiM2E3NjZmODhiNDA1ZGQxZWI5Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10e" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.61 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d04"), + "name" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism White", + "description" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism White", + "price" : "856", + "sku" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10e-WHT-6-128-5-8-Smart-Phone-491550801-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM2fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oYjIvOTEwNDUzODU2NjY4Ni5qcGd8Zjg4MDkxYTRkZjI1MjE0MDRiNmRlNzdkZWZmY2VmZjMyNDU0ZTA5MTkyOTNhMDhkMTk0MDY2MmE3NGMzNmUwNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10e" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.61 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d05"), + "name" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "description" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "price" : "1029", + "sku" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLU-8-128-6-1-Smart-Phone-491550802-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTU4fGltYWdlL2pwZWd8aW1hZ2VzL2hjMy9oZTUvOTEwNDUzOTM1MzExOC5qcGd8OWFhZmRmNmY5YjMzZDVmYTVjODI2NjNlMTAxYjkzZWI0MDM4ZWFkYjQxZDM4MTdhNTBlNDNkYTk1ZmZjYWVkZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d06"), + "name" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Black", + "description" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Black", + "price" : "1029", + "sku" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLK-8-128-6-1-Smart-Phone-491550803-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzkwfGltYWdlL2pwZWd8aW1hZ2VzL2hkNC9oMWUvOTEwNDU0ODg1NTgzOC5qcGd8YTVjMzVmM2E3N2JjODA1YzJlMTQxMDg2MGI0NzgzZmE1MTc4NDBiZWFmZmE5M2VkYTU4NjJkMWIyM2JlZGVlOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d07"), + "name" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism White", + "description" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism White", + "price" : "1029", + "sku" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-8-128-6-1-Smart-Phone-491550804-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTAzfGltYWdlL2pwZWd8aW1hZ2VzL2g1Yi9oM2YvOTEwNDU0ODUyODE1OC5qcGd8MTU1NWExMWJhY2YxMTYwYTdjYmIyMjc2NzVlNDBkYjBmMTA3Mzk3NjhjZjc1ZDU1MTM2ZDgwMTI0OGVmYjdkYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d08"), + "name" : "Samsung Galaxy S10 Smart Phone 512 GB, 8 GB RAM, Prism White", + "description" : "Samsung Galaxy S10 Smart Phone 512 GB, 8 GB RAM, Prism White", + "price" : "1334", + "sku" : "Samsung Galaxy S10 Smart Phone 512 GB, 8 GB RAM, Prism White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-8-512-6-1-Smart-Phone-491550805-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTEyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oYTIvOTEwNDU1MTE0OTU5OC5qcGd8NmZhZTdiZjU1OWFiNzUyOTY2NGVlZjJhM2E4NmFjMmU2ZDQ5NDYzNDM3OGI3Mzc0M2Y0ZDgyZmExNjJlMWU2Mg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d09"), + "name" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "description" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "price" : "1145", + "sku" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLU-8-128-6-4-Smart-Phone-491550806-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDU0fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oNWQvOTEwNDU1MTgwNDk1OC5qcGd8YmU1OTZiNjExZDQ1NjZmZjg2ZjUyZTg2NmY2N2Q1MDFjYTFlOGRjYjYzNDRjNWU4ZGQ3NTM5MDE2ZTg4ZTcxNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0a"), + "name" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism White", + "description" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism White", + "price" : "1145", + "sku" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-P-8-128-6-4-Smart-Phone-491550808-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjgzfGltYWdlL2pwZWd8aW1hZ2VzL2g2Yy9oNjcvOTEwNDU2MjQ4NzMyNi5qcGd8NTZkYTRhYjY0OTc4MWI4ZjQxNDNjN2JkMjlmZmI1ODE2Mjk5ODFmYjY1NzczOWFlNzAxOGZhZWZkNWYxMjQ2OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0b"), + "name" : "Samsung Galaxy S10+ Smart Phone 512 GB, 8 GB RAM, Ceramic Black", + "description" : "Samsung Galaxy S10+ Smart Phone 512 GB, 8 GB RAM, Ceramic Black", + "price" : "1435", + "sku" : "Samsung Galaxy S10+ Smart Phone 512 GB, 8 GB RAM, Ceramic Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLK-C-8-512-6-4-Smart-Phone-491550809-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzAyOHxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaGNiLzkxMDQ1NzE2NjIzNjYuanBnfDg3MzBkMWI3ZDEyZmQ0MGU2YmVlMWVhMzAzOTIyODkxYWMyNjhhZThjN2JmMzMyZjc1ZGI3ZGQxNWExMmM3Njk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0c"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Black", + "description" : "Apple iPhone XR Smart Phone 64 GB, Black", + "price" : "1115", + "sku" : "Apple iPhone XR Smart Phone 64 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Black-491488441-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIzfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oYmEvOTA1MTcxNDQ1MzUzNC5qcGd8MDczNjc4ZWYzODg2NWU4YzNhYzcxNGRlMTUyNjIyYmYzYTRkOGE5ZTAwOWU2MTQ2OThlYTUzYmZiOTU4MjM0Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0d"), + "name" : "Apple iPhone XR Smart Phone 64 GB, White", + "description" : "Apple iPhone XR Smart Phone 64 GB, White", + "price" : "1115", + "sku" : "Apple iPhone XR Smart Phone 64 GB, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-White-491488442-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTIyMHxpbWFnZS9qcGVnfGltYWdlcy9oOWQvaGFlLzkwNTE3MjYxODQ0NzguanBnfGRiZjA3ZWExYWU2MTRlZTc4ZmVkNGJlMTRmZjc4ODUwYjBhZjE1MjcyZGIwZmEzNWZkY2Q4NTc4ZjMzNTYyNjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0e"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Coral", + "description" : "Apple iPhone XR Smart Phone 64 GB, Coral", + "price" : "1115", + "sku" : "Apple iPhone XR Smart Phone 64 GB, Coral", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Coral-491488445-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjk5MHxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDBlLzkwNTE3MTc0MDI2NTQuanBnfGEwZDQ0YTk2MDVhNGY4YTc5YmRkNDQzODZmOGEyMjBkNmE5ZDlhMzlkM2QwOGNlZmY0OWMwMjczZWRiNjQ2YTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0f"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Black", + "description" : "Apple iPhone XR Smart Phone 128 GB, Black", + "price" : "1187", + "sku" : "Apple iPhone XR Smart Phone 128 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Black-491488446-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDE5fGltYWdlL2pwZWd8aW1hZ2VzL2hlZS9oOTMvOTA1MTcyODQ3ODIzOC5qcGd8NDUxNGE3MGJmM2QxMzE0NmRiYjBjZTA2N2U3OGZlODhlYjlmZDQ2NTkzODE0ODlkZjRhYjlmOGViYjIyN2Y1OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d10"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Blue", + "description" : "Apple iPhone XR Smart Phone 64 GB, Blue", + "price" : "1115", + "sku" : "Apple iPhone XR Smart Phone 64 GB, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Blue-491488447-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjI0MnxpbWFnZS9qcGVnfGltYWdlcy9oOTAvaGY5LzkwNTE3MTIwOTQyMzguanBnfDFmZjkxYTQyNWE1MGYzMGQ5YWFiOWJiNjA4ZGI0N2NkOGQ5NjIyN2M2NDYzZDk4ZjNjZTgxNWQzOTI2MjMxNmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d11"), + "name" : "Apple iPhone XR Smart Phone 128 GB, White", + "description" : "Apple iPhone XR Smart Phone 128 GB, White", + "price" : "1187", + "sku" : "Apple iPhone XR Smart Phone 128 GB, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-White-491488448-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTIzOHxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaDk0LzkwNTE3MzEwMzQxNDIuanBnfDU5OTg1ODMyNmZmYmI0MDQ0MjY1YzQ3ZTkxN2E3ODY2ZGQ5NTRmMzFjOTc3ZGVlY2Q3ODA2ZDZkYWMzMzIxN2I", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d12"), + "name" : "Apple iPhone XR Smart Phone 128 GB, (PRODUCT)RED", + "description" : "Apple iPhone XR Smart Phone 128 GB, (PRODUCT)RED", + "price" : "1187", + "sku" : "Apple iPhone XR Smart Phone 128 GB, (PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-RED-491488449-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjAxN3xpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDQ1LzkwNTE3MjE0MDAzNTAuanBnfDExNjU4ZmU1ZjUwOTQ3NGY3MDA2NjBkYzBlN2Y1NTk3MzRlNzRkMjk4ZmVjMTQ1N2EzYmQ5YzRhMzE0YTM3Yjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d13"), + "name" : "Apple iPhone XR Smart Phone 256 GB, Coral", + "description" : "Apple iPhone XR Smart Phone 256 GB, Coral", + "price" : "1332", + "sku" : "Apple iPhone XR Smart Phone 256 GB, Coral", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-Coral-491488457-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjk5MHxpbWFnZS9qcGVnfGltYWdlcy9oMDcvaDQwLzkwNTE3NDUwNTg4NDYuanBnfGM0NjA5YzM0ZmEyZmUwZWI3MTEzMmRhNmFkMTEzNWUwMDA0ZGZkYWJiMjY4MTQxNjhkYWQ5YTQ1NTZiZWY0OTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d14"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Gold", + "price" : "580", + "sku" : "Apple iPhone 6s Smart Phone 32 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Gold-491282843-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTI5OHxpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDhkLzg5MjczNzM4ODU0NzAuanBnfDdiZmYyNDhlOTU0NGQyOTYwYmZhY2ZiYTljZDRkODIyYmY4NGNiZDI4OTk1NGJjOGZhYzNjNDU4OTE1MzZiM2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d15"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "price" : "580", + "sku" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Silver-491282846-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTIyN3xpbWFnZS9qcGVnfGltYWdlcy9oMzcvaGE4Lzg5MjczODA5NjMzNTguanBnfGU2OTk0OWZhODRjOWUzMDgzMDg0MDk0YjAzODY2YWUwMThhZDdhZDNiMjVmYTBmNDMzZDhiMGE5YTlmNTEwMTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d16"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Silver", + "price" : "759", + "sku" : "Apple iPhone 7 Smart Phone 32 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Silver-491282716-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDY2NHxpbWFnZS9qcGVnfGltYWdlcy9oNTYvaDc3Lzg5MjcxNDE5NTM1NjYuanBnfGI0MjNlMDkzN2JjMzZiN2IzZGJhOTc1YTFlNzhkZTA2ZTk2ZDhmY2Q1MGVhYWQ5MjI2ZjYyZDFiYWVmOWJkY2I", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d17"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Black", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Black", + "price" : "911", + "sku" : "Apple iPhone 7 Plus Smart Phone 32 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Black-491282726-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTkwMnxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaDAyLzg5MjcwOTczMjM1NTAuanBnfGM3NmEwYzYxZjAwODQ2M2M4NGRlZWQyNzlkN2M4MGRjZGYxZDU1Nzc3ZDBlZjhhZDRjMWZmNTI4MDFmMDFmYjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d18"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Gold", + "price" : "911", + "sku" : "Apple iPhone 7 Plus Smart Phone 32 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Gold-491282728-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjE5OHxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDY1Lzg5MjcxMDM4NzcxNTAuanBnfDUyOTlkMzk4NDQzMGIwNTc5NDU1ZjY0NDJmNTc4ZTUzNWJmZTUwNDE4NTVkOTE5YTc4ZWE5YmExYjRmMDc1Y2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d19"), + "name" : "Apple iPhone X Smart Phone 64 GB, Space Gray", + "description" : "Apple iPhone X Smart Phone 64 GB, Space Gray", + "price" : "1332", + "sku" : "Apple iPhone X Smart Phone 64 GB, Space Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-64-GB-Space-Gray-491350994-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDM1M3xpbWFnZS9qcGVnfGltYWdlcy9oOTIvaDY0Lzg5NjMzODMwNjY2NTQuanBnfGRiMjkyNTkwMGVlODQzZWNjMDJlOWE2OGY1MTQ3MTM4ZTdjN2FmOTRmMmUxY2I3YTliMGIyMjc3MTA3MTI2MmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1a"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone 8 Smart Phone 64 GB, Space Grey", + "price" : "869", + "sku" : "Apple iPhone 8 Smart Phone 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-64-GB-Space-Grey-491351007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oZTQvaDBjLzg5NjM0NzUyMTAyNzAuanBnfDUwY2FhOWQwN2Q3MWQ0MmJhM2ZmNzFkZDdiYTk3MzlhM2Y4NmMxNThlNjJjMGU2NTQzNTFhN2ExYTcxZWVlMWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1b"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, Gold", + "description" : "Apple iPhone 8 Smart Phone 64 GB, Gold", + "price" : "869", + "sku" : "Apple iPhone 8 Smart Phone 64 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-64-GB-Gold-491351009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDY2OXxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGIxLzg5NjM0NzQ1NTQ5MTAuanBnfDU1MGVmMTdkOTBmYTk3NmJkZmQzYTM4ZjgwODU2MjA5Njg0YzZkMmY3NzdiYjlkZjgzYThiYTA3ODg5N2E4ZmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1c"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, Space Grey", + "price" : "1014", + "sku" : "Apple iPhone 8 Plus Smart Phone 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-64-GB-Space-Grey-491351002-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDE2Lzg5MjcwNDgzNjgxNTguanBnfGQ0OGQ0YWRjZGU1NDNlMzBjNjZmY2ZhYjFkMjk0ZTdkYzU2OTc1YTYzMWYzZThkNDVmZWU2NTMyNDgzOGIxNmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1d"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Space Grey", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Space Grey", + "price" : "580", + "sku" : "Apple iPhone 6s Smart Phone 32 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Space-Grey-491282844-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjEyOXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaDg5Lzg5NjM1ODkyNDI5MTAuanBnfDY3NGE2MzQxMTkwNWIzMTY5YTA5ZTRmNWY2ZTBhYTg3Y2ZhYjA2ZjhkNTNjMWU5OWNhOTI4NmNkNzU5ODBmMzA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1e"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Black", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Black", + "price" : "759", + "sku" : "Apple iPhone 7 Smart Phone 32 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Black-491282715-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjUyOXxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGZiLzg5MjcxMDE5MTEwNzAuanBnfDdhMDhiN2MyMzY0Y2YyZDg4MzRlZjE2N2FmYTVkMzFkNzUzYzhiMjc4YjRlZjFjNjA5ZTQxZjU2MDQ2MDdiZDY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1f"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, Gold", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, Gold", + "price" : "1014", + "sku" : "Apple iPhone 8 Plus Smart Phone 64 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-64-GB-Gold-491351004-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM2MXxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaDQ5Lzg5MjcwNzU3NjIyMDYuanBnfDUxZTA0ZDUyODRhMDYxZWUyYjViOTNhZDAwNWY2YmM2NWQ0MDZiZDI3NGI3YjIzYWRhM2FjMTliMjg3MjFiNWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d20"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, (PRODUCT)RED", + "price" : "1058", + "sku" : "Apple iPhone 8 Plus Smart Phone 64 GB, (PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRT72HN-A-Smart-Phones-491379784-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzcwOXxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDFlLzg5ODE2Njc0MTQwNDYuanBnfGJjMTQ4MTk3OGJhZGRlY2Y0YjkwYWMxZjQ2OWRmOWY5YWQ0NTI2NjFhMDhmNDA0NTRjMjE5MzJiMmU0ZWM3YWQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 14 hours
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d21"), + "name" : "Apple iPhone X Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone X Smart Phone 256 GB, Space Grey", + "price" : "1533", + "sku" : "Apple iPhone X Smart Phone 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-256-GB-Space-Grey-491350992-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDM1M3xpbWFnZS9qcGVnfGltYWdlcy9oNjkvaGQ0Lzg5MjY5MDEyMzk4MzguanBnfGY1YTE3MjNhYzAwNzQ2MWJmYzY1MmE1YTEzN2NlOTJmOWEyMjA4MWI3MDY3ODUwYmEwOWMwYTU2MzRiNmMyMjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d22"), + "name" : "Apple iPhone X Smart Phone 256 GB, Silver", + "description" : "Apple iPhone X Smart Phone 256 GB, Silver", + "price" : "1533", + "sku" : "Apple iPhone X Smart Phone 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-256-GB-Silver-491350993-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTAzNHxpbWFnZS9qcGVnfGltYWdlcy9oNDIvaDY5Lzg5NjMzOTY2OTgxNDIuanBnfDc2YjBiMGE2YTk3NDE0Y2E0NGFiMDRjOTViMzM0OGI2ZTc4YWU3MjNhZWYzNDI4NTlmN2VjMjE5ZTU2M2M0Zjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d23"), + "name" : "Apple iPhone 7 Plus Smart Phone 128 GB, Gold", + "description" : "Apple iPhone 7 Plus Smart Phone 128 GB, Gold", + "price" : "986", + "sku" : "Apple iPhone 7 Plus Smart Phone 128 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-128-GB-Gold-491282730-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjE4OXxpbWFnZS9qcGVnfGltYWdlcy9oNjUvaGViLzg5MjcxMTgxNjM5OTguanBnfDk0NGM3YjUyNDRjMWQ3MzM5MjliYmNhYmM2N2RjODQ5MjMzMGFjM2I4ODhjMTU1MTZiNDk0NDI3MWIyY2Y1MjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d24"), + "name" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, White", + "description" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, White", + "price" : "114", + "sku" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5016-Mobile-Phones-581107909-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDg5fGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oODcvOTAzODg2MTA3NDQ2Mi5qcGd8MjliNzhiY2QyNDZkNjRmNGQ1MGZlMWZmOTFhMDdkMjQxNWU5ZjczYzhiNDg2ZjI2MDcwYWZmZmJiZDE4MDliZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Wind" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Lollipop 5.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2250" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 5 hours
  • \n
  • Audio Playback Time: 32 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 180 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/ BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD BAND3(1800)/ BAND5(850)
  • \n
  • TDD BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MSM8909 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 " + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d25"), + "name" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Just Black", + "price" : "1160", + "sku" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488298-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIyfGltYWdlL2pwZWd8aW1hZ2VzL2g1NC9oYWIvOTA2NDYzOTg1NjY3MC5qcGd8NGI4MDM3NWZmYjgyNjU2OWZlMzRjYjZjOTNhZDY1NjZmNDdlN2YyNjBhMTZkM2IyOTA2NWY4Nzk4NjRlMmIyYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d26"), + "name" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "1203", + "sku" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488301-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODQ5fGltYWdlL2pwZWd8aW1hZ2VzL2g1YS9oNmMvOTA2NDY1MDIxMTM1OC5qcGd8YzlmOGE0MzE1ZDM3ZTM1ZTQxYmUwMDhmYzQ5ZTQ1M2QwMDQxNjU3NjYyZDFjZTE2MzAxZjQ0NTQ2ZmQzNzA0OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d27"), + "name" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Just Black", + "price" : "1334", + "sku" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488304-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODQ5fGltYWdlL2pwZWd8aW1hZ2VzL2gyOC9oYjUvOTA2NDY2MTU0OTA4Ni5qcGd8NjkxODA0ODgyYzRiZDVlNGRlM2Y4OThiYmZmODhhYTI3MmI5NmEyYTFlMzk3NDI4MWU1M2NmNTUyN2ZkMDI3YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d28"), + "name" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "1203", + "sku" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488302-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzEyfGltYWdlL2pwZWd8aW1hZ2VzL2g0My9oNmYvOTA2NDY0OTg4MzY3OC5qcGd8ODQ1NGM4YjYxY2NkYWYwNTVmMzEyZDQ3OWFlMGQxOTMxMmI1MzFjYzNkZjM5N2UxMTNjOWIyNzdiY2M3OTNhYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d29"), + "name" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "1029", + "sku" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Clearly White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488296-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjUyfGltYWdlL2pwZWd8aW1hZ2VzL2hkMy9oMjUvOTA2NDY0MDE4NDM1MC5qcGd8NzAwZmFiMDBjZWVmZmIxN2EyZWM0OTZiOWE5MjA5ZjhjOTA5MWQwNGFlOWJjMTNiMTdhMTJmMGI3Y2E1MjMzYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2a"), + "name" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Not Pink", + "price" : "1160", + "sku" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Not Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488300-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODMwfGltYWdlL2pwZWd8aW1hZ2VzL2g0OS9oZDgvOTA2NDY1MDUzOTAzOC5qcGd8MzUzNGYzYzI2ZjIwZWQ3OTg5MzkxNTQ5NzJhNmNkZTE5NjY3ZDJlZTFkNjY3ODY3ODlkY2RmMjU0NGI3ZjNlYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2b"), + "name" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Not Pink", + "price" : "1203", + "sku" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Not Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488303-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzgwfGltYWdlL2pwZWd8aW1hZ2VzL2g1NC9oNDgvOTA2NDY2MTAyNDc5OC5qcGd8ZGY0YTZhMjZmZTJhMjg2MTYxNzhiYzQyYmVmYTJlZWUyN2VlN2MzNDU4OGVjYjk5NWJlOGZlOGIyNGE4ODA5ZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2c"), + "name" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Not Pink", + "price" : "1029", + "sku" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Not Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488297-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODMwfGltYWdlL2pwZWd8aW1hZ2VzL2hlYS9oZmEvOTA2NDYzOTUyODk5MC5qcGd8YzA3YzkxZDQ3MjAyYWY3OGI0NTFhMWMxMWY1YjIzNjM2ZGVhMjdjOWY2YjVjMmZiYjM4YjFkMzRmZDAzYjM5YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2d"), + "name" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Red", + "description" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Red", + "price" : "247", + "sku" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Plus-Red-Smart-Phone-491488079-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2hhMC9oNjgvOTAzMzQ0OTYwMzEwMi5qcGd8YjQ3ZmEzNzFmMDI5NTQwYWU1MzRkMTQ4MWE5MTVmYzc2N2IzZTAxZjM5NTNhYWNlZGQ0MTVmNDI1NGExNjhhYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "178" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "True HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2e"), + "name" : "LYF Water F1S Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "LYF Water F1S Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "294", + "sku" : "LYF Water F1S Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5201-Mobile-Phones-581107888-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDczfGltYWdlL2pwZWd8aW1hZ2VzL2gyZC9oNDkvOTAzODg1MjIyNzEwMi5qcGd8N2IxMjI0ODBjZTk4NDVlMDBiMTIwMjc2YTNmOTc2YTM4MTI2NGNjNGVmNGI2ZjliZGU0OTJiYWYyMWM0ZGI4ZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F1S" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Water" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback : Up to 8 hours
  • \n
  • Audio Playback : Up to 21 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 320 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 11.5 Hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 1900, 1800, 850, 900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA: BAND1 ( 2100 ) / BAND8 ( 900 )" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: BAND3 (1800) / BAND5 (850)
  • \n
  • LTE TDD: BAND40 (2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1 LE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz + 1.4 GHz Qualcomm Snapdragon 652 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.31" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "146" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C + v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2f"), + "name" : "Vivo V11 Smart Phone 64 GB, 6 GB RAM, Nebula Purple", + "description" : "Vivo V11 Smart Phone 64 GB, 6 GB RAM, Nebula Purple", + "price" : "363", + "sku" : "Vivo V11 Smart Phone 64 GB, 6 GB RAM, Nebula Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V11-Nebula-Purple-Smart-Phones-491473040-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjI0fGltYWdlL2pwZWd8aW1hZ2VzL2gxZS9oYjcvOTAzMzQ1OTgyNjcxOC5qcGd8MzcwMzZlMTNmNWE1Njk4M2Y2MWY2YTRlMjM2ZjgzOTBmNTBmZmFlMWIwZWEwN2E5ODVjMDY3M2VmN2VmN2MzZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Nebula Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3315" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.7" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, 2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d30"), + "name" : "LG Q7 Smart Phone 32 GB, 3 GB RAM, Aurora Black", + "description" : "LG Q7 Smart Phone 32 GB, 3 GB RAM, Aurora Black", + "price" : "247", + "sku" : "LG Q7 Smart Phone 32 GB, 3 GB RAM, Aurora Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMQ610YN-AINDBK-Smart-Phones-491420288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDYyfGltYWdlL2pwZWd8aW1hZ2VzL2g3MC9oZTYvOTA0Njg2Njk4NDk5MC5qcGd8YTMwM2MyYjY3ZDQ5M2JhMDgzN2YwMjlkOWFlMmMyMGE5MDM4NTBlZmJjZmM2YTM4ODBmZjNjYTcyZTEyYjc4Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: 850/900/1900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE : B1/B3/B5/B40/B7/B8/B38/B28/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz MT6750S Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "145" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d31"), + "name" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Clearly White", + "price" : "1334", + "sku" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Clearly White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488305-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzEyfGltYWdlL2pwZWd8aW1hZ2VzL2g1My9oMzcvOTA2NDY2MDM2OTQzOC5qcGd8ZDAwNDU2ZmIzY2U0ZDE2YmJlNTlkZGU5MmVjMjk5NzI2NGU2NmRmNDRhNjgyMTMwYzQzYjdjMTZlOGNlZmMxYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d32"), + "name" : "Oppo F9 Pro Smart Phone 64 GB, 6 GB RAM, Starry Purple", + "description" : "Oppo F9 Pro Smart Phone 64 GB, 6 GB RAM, Starry Purple", + "price" : "377", + "sku" : "Oppo F9 Pro Smart Phone 64 GB, 6 GB RAM, Starry Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-CPH1823-Smart-Phones-491488060-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjAxNnxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaGI1LzkwNTQ5MTEyNjY4NDYuanBnfDM4ZWIwZDE4ODYzNDhkNzJiZmRkNDY1NzIyMDVmOTExZjc2NTg5YTVjOGU1MGM4OWRkNTg2NGEzNjdkODAxODM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "BT2.1(+EDR)/BT4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d33"), + "name" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Clearly White", + "price" : "1160", + "sku" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Clearly White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488299-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjUyfGltYWdlL2pwZWd8aW1hZ2VzL2gxMC9oOTYvOTA2NDY1MTE5NDM5OC5qcGd8N2FmNWFhYzE1NDAwZDQ0MWQ1OGY4YWVmZGE0MTQxNzgyNjMxODUxZmYwMmNkN2M4YzFhMTU4YzhhNjJmZjZlNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d34"), + "name" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Black", + "description" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Black", + "price" : "450", + "sku" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488124-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTExfGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oMGUvOTA0OTY4NjYwNTg1NC5qcGd8OTUxNmQyMTk1ZjAxZmRjZmMyYzJhYWJjY2JkMjBmZjU2MGQ4ZjM2Y2Y4MDQwNjBjMmY1NjhlYmU4Y2E2MWRjNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d35"), + "name" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "377", + "sku" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488120-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MzA1fGltYWdlL2pwZWd8aW1hZ2VzL2hhZS9oZWYvOTA0OTY3ODkzODE0Mi5qcGd8NmJkYjBkYTVjOGViYWQ5N2NlM2QzNmY4YzIzOGNlOWRkYmI4ZmU2MzhmNzc4MzNjYzNhNzYyNjAxZmVkYTAzYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2220 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d36"), + "name" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "377", + "sku" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488121-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTkzfGltYWdlL2pwZWd8aW1hZ2VzL2hjOC9oNWEvOTA0OTY3NjMxNjcwMi5qcGd8MGM2YTc3ZjIxNzJhN2VmOTY2NDY1ZGYwYzEyZDk4Y2FmNzY2NzI0ZTBkMjg3OWNkYTkyOWY1MGEzZjU4YjcwYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d37"), + "name" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "377", + "sku" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488122-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTExfGltYWdlL2pwZWd8aW1hZ2VzL2hkZS9oNTIvOTA0OTY3NjY0NDM4Mi5qcGd8MTA2MGY5MWFlZTlhOGQ5ZjdiOGEwMWEzN2U0YmIxZmQzMjc5MzM5OWY4OTk1NGViOGJlZjViMWI1N2FmZWEyZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d38"), + "name" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "186", + "sku" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-12ROOL21A01-Smart-Phones-491488396-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjcwfGltYWdlL2pwZWd8aW1hZ2VzL2hiYi9oYWMvOTA2OTQ1MTU0MjU1OC5qcGd8MmNjMWYzZTBjZjhiNjRkZjBhZjkyZWQ1YjlkYzg3MjBmYmE2ZTFjMmRkYWQxOWJkMTQ0MjRiM2M5ZTY1MDU0MQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P22" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d39"), + "name" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Baltic", + "description" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Baltic", + "price" : "186", + "sku" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Baltic", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-12ROOD21A01-Smart-Phones-491488397-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjI0fGltYWdlL2pwZWd8aW1hZ2VzL2gyNS9oNWQvOTA2OTQ1MTIxNDg3OC5qcGd8ZjI3N2MyMzdiNmE4ZDFjOTRjYzM5YjY4NzI5MDU4MDcxZTU0MmQ2MDBhYmI1ZDI0MDgyMTJlYjAwNWY2NDRmMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Baltic" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P22" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3a"), + "name" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Champagne", + "description" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Champagne", + "price" : "85", + "sku" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Smart-Phones-491419887-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2gzMy9oMDQvODk5MzQwNTU2NzAwNi5qcGd8ODM1Y2Q3YTFhOTUzZTkyZTk0OGY3ZjQ1YzdlNGY0NDA4MzEzN2I5ZGE1OTczZWE1YjI5ZDQ4MTkyMTY3MzEwMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.05" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3b"), + "name" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Black/Chrome", + "description" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Black/Chrome", + "price" : "202", + "sku" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Black/Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-3.1-Smart-Phones-491420136-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzE3OHxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDc1LzkwMTg5MTk4NDU5MTguanBnfGIxOGI2MzM3NGRjNWNjY2Q4N2EzNjBjZmU4MTFmOTQ1MTIzMjFjZTAzMWE1ZjZiNmVmZmI4MzliODAzMmE2Mzk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6750N Octa-Core 1.5 Ghz" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curved & Sculpted Display
  • Gyroscope for AR Gaming
  • Resolution 18:9
  • Corning Gorilla Glass
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3c"), + "name" : "Samsung Galaxy J4 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Samsung Galaxy J4 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "196", + "sku" : "Samsung Galaxy J4 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J4-Smart-Phones-491419915-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTM1MXxpbWFnZS9qcGVnfGltYWdlcy9oN2EvaGFiLzkwMDI4NjUxMzE1NTAuanBnfDdiZmI5ZWY2NGYzNWExYjZjNzdkNWE0ODliMjJlZWMwOTUwMGRmNzhkMjAyNjIwNzVhYjJhYTk2NDAyMzhiYTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J4" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 11 hours
  • Internet Usage Time(LTE): Up to 13 hours
  • Internet Usage Time(Wi-Fi): Up to 13 hours
  • Video Playback Time: Up to 18 hours
  • Audio Playback Time: Up to 80 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3d"), + "name" : "Intex Aqua Lions 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "description" : "Intex Aqua Lions 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "price" : "99", + "sku" : "Intex Aqua Lions 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Lions-4G-Smart-Phone-Grey-491297442-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjk2NHxpbWFnZS9qcGVnfGltYWdlcy9oZDcvaGMzLzg5Mjc1OTM4ODk4MjIuanBnfGJlYTdiMTQ0MGZjOTkzMDFhODBjMmEyZmE1ZWZlNzY5OTUxYmViOWY5ZjBjYmZhYjVjNmJlODc5ZGM5MDA5NGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "Lions 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Upto 350 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: Upto 8 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900Mhz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA(900/2100)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD(B3/5), TDD(B40), FDD-LTE/WCDMA/GPRS/EDGE/GSM" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "146.7" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Android Native" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Handset
  • Battery
  • Screen Guard
  • Protection Cover
  • Flip Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TN" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3e"), + "name" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Blue/Copper", + "description" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Blue/Copper", + "price" : "202", + "sku" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Blue/Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-3.1-Smart-Phones-491420137-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODU0NHxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaDUxLzkwMTg5MTkxOTA1NTguanBnfDg4Y2JiMTNiNjkyZGI4YzcwOTNkMTk3NDBhZWFhYjUxZjcyNzVjMTY0YmVlNTkzNGExNTJmY2RiNmZlOTBlZTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6750N Octa-Core 1.5 Ghz" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curved & Sculpted Display
  • \n
  • Gyroscope for AR Gaming
  • \n
  • Resolution 18:9
  • \n
  • Corning Gorilla Glass
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3f"), + "name" : "Centric G1 Smart Phone 16 GB, 3 GB RAM, Sandstone Black", + "description" : "Centric G1 Smart Phone 16 GB, 3 GB RAM, Sandstone Black", + "price" : "131", + "sku" : "Centric G1 Smart Phone 16 GB, 3 GB RAM, Sandstone Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Centric-G1-Smart-Phone-Sandstone-Black-491297658-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzgzN3xpbWFnZS9qcGVnfGltYWdlcy9oZTQvaGI2Lzg5NjM1ODI1NTgyMzguanBnfDllMjJmYTNkMDc4YjFkZTMzMDlhYzE3MjI2YmUzNDk2NjM5OGRkYzViZDhmNWZiZDhmYjQ0ZGIyNGU2ODEyYzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sandstone Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "G1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Centric" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "15 hours" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B3|B5
  • \n
  • TDD LTE B40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Cortex A53 Quad Core 64 Bit MT6735 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.895" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Centric", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d40"), + "name" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Black", + "description" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Black", + "price" : "69", + "sku" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-C459-Smart-Phones-581109213-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODE5MHxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaGJmLzg4NzI1Njg2ODQ1NzQuanBnfDg5YTUyYjM4NTFlODQyMWMxOTlhYzljMTJjYWNjOGZkZmMxZTUzYjU2M2JhYjI0ZDI0NjFiNWJhNGU1Yjc3ZTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "C459" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 160 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 8 hours on 4G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA: BAND1 (2100)/ BAN00448(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: BAND3(1800)/ BAND5(850)
  • TDD: BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core Qualcomm Snapdragon 210 MSM8909" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "139" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Removable Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB, v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d41"), + "name" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gray", + "description" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gray", + "price" : "63", + "sku" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-AIR-Smart-Phones-491551049-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTk4fGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oYzUvOTEyODg2NDQxNTc3NC5qcGd8ZmZkZGRmMTNmYzJlNzkzMTU2NWM2YjRmZjc4ZjAyZGU3YjRjYjRmYTJlMzhiNjAwNWYzNmE3ZGI3NTg5MDcyNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 AIR" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1 (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz 64 bit Quad Core Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d42"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "price" : "725", + "sku" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6S-Smart-Phones-491297316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODE3NXxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaDZhLzg5OTM0MjQ5MDAxMjYuanBnfDNkMzI1ODRmODQ2NTFkNTMyY2I0ZTliZDljZThmZGJmYzE4ZWRmYmUyZTAyNjM1ZWYzNGY2NzY0N2Q3YTUzNTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 Days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip with 64-bit architecture Embedded M9 motion coprocessor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual-domain pixels for wide viewing angles
  • \n
  • Full sRGB standard
  • \n
  • Fingerprint-resistant oleophobic coating on front
  • \n
  • Siri
  • \n
  • 4K video recording
  • \n
  • Face detection
  • \n
  • Touch ID fingerprint sensor
  • \n
  • True Tone flash
  • \n
  • iBeacon micro-location
  • \n
  • Sapphire crystal lens cover
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with 3.5mm Headphone Plug" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d43"), + "name" : "LG K9 Smart Phone 16 GB, 2 GB RAM, Moroccan Blue", + "description" : "LG K9 Smart Phone 16 GB, 2 GB RAM, Moroccan Blue", + "price" : "116", + "sku" : "LG K9 Smart Phone 16 GB, 2 GB RAM, Moroccan Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMX210IMW-AINDBL-Smart-Phones-491503257-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzExfGltYWdlL2pwZWd8aW1hZ2VzL2hhNi9oNzcvOTA3MzE5MTI4ODg2Mi5qcGd8YmE5OGMwYjQ2NmYxZjAzMmYxZTJiMjM0YWU4NGI2ZjBjZTFjZjkxYTQ0YjkwZTViMzM5ZWMzOWNlZTZjNWY5ZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Moroccan Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "K9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: 900 /1900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 850/1800/2300" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.63" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.32" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d44"), + "name" : "Centric P1 Smart Phone 16 GB, 2 GB RAM, Grey", + "description" : "Centric P1 Smart Phone 16 GB, 2 GB RAM, Grey", + "price" : "116", + "sku" : "Centric P1 Smart Phone 16 GB, 2 GB RAM, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Centric-P1-Smart-Phone-Grey-491297661-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTM1N3xpbWFnZS9qcGVnfGltYWdlcy9oY2YvaGM3Lzg5NjM1ODU1NzI4OTQuanBnfDhjMGZlMmVkMWEyNjdkZjE5ODc4NmE3ZGRmMzZiMTM4YWY0NDVkMGFmOWI2OTFlYzRkZjAwNTA2ODljNDVkMWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "P1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Centric" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3950" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "500 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours (3G)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Cortex A53 MT6737 Quad Core 64Bit Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.963" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Centric", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d45"), + "name" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Red", + "description" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Red", + "price" : "160", + "sku" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-A1K-Smart-Phones-491570666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2hiOC9oZWYvOTEzNzIzNzAzMjk5MC5qcGd8N2YxNzg2NTBhYjdiYzIwNjg5YjRlYjAzYmNlYjYzM2NjYjFkMDgwMzliYzQ5NmJlNGIwM2IyMjY2ZjlkZTRhYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1K" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.5 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK MT6762R" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IMG GE8320 GPU" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d46"), + "name" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "218", + "sku" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-32-GB-Black-491419859-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzY3MHxpbWFnZS9qcGVnfGltYWdlcy9oMzcvaDc3Lzg5NjA2NzY0NjI2MjIuanBnfGZlZDRiYmVjMzMxYTk5YmRkYTk0Y2M0ZDc3N2MyYTZlMDUwYjlkMzNkNDg0NWI4MDhhZTc1NmZlNDkxNWJhODg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d47"), + "name" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "290", + "sku" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J8-Black-OC-4-64-6-Mobile-Phones-491420008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjYzOHxpbWFnZS9qcGVnfGltYWdlcy9oOGYvaGI1Lzg5NjA2NTQ0NDI1MjYuanBnfDZjMzc3ODExMDhmNWU3NWY4YTM3Y2YzODU2NTY5ZmUxMzBmNGE0ZGU2Y2Y1ZjUwOWQyZjg3Mjk0ZWQyYzcwYmU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.36 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core Qualcomm Snapdragon 450 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d48"), + "name" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "description" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "price" : "124", + "sku" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-KB2-Mobile-Phone-491550879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE1OHxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaGYwLzkxMjM1NDY5NTU4MDYuanBnfGM0MDFlZDJiNDg3NmQzNDhiM2U4ZWUxM2FjYmE0YjM5ZGJhOTJlZGFiZWE5YzNkOTE4ZWNhNjI2MjIzNjQyNDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "KB2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iAce 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HiOS 4.1 based on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d49"), + "name" : "Apple iPhone 7 Smart Phone 128 GB, Gold", + "description" : "Apple iPhone 7 Smart Phone 128 GB, Gold", + "price" : "841", + "sku" : "Apple iPhone 7 Smart Phone 128 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-128-GB-Gold-491282718-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM0MHxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaGFhLzg5MjcxMzA1NTAzMDIuanBnfGE2N2M1YjBjMWJkOTZhMjlmZDM2ZTJmNmY1NDRiYzQ5NjMzNTljNTQzOTY4ODJhYjNiZmU0MTNjMjRmN2JjNzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4a"), + "name" : "Samsung Galaxy S8+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S8+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "price" : "1160", + "sku" : "Samsung Galaxy S8+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S8-Smart-Phone-128-GB-Midnight-Black-491297594-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzE4OXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDk4Lzg5NjMzOTA3OTk5MDIuanBnfDQ4ODI4NGJhMTM1MmMzM2E2NzVmMzAzYzU1YzQzN2ZlZjIzZDAwYWM1OTVlN2I3OGEyODY1NTM3MTk1YmIyY2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S8+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad 2.35GHz + Quad 1.7GHz Exynos 8895 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.34" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Samsung Pay" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adaptor
  • AKG Earphones
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4b"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Midnight Black", + "price" : "1015", + "sku" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Midnight-Black-491379611-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2hlZS9oMDMvODg4MzU3NjM3MzI3OC5qcGd8NzJiMmQ3MjAyYTYxZTUyOTllOTc5MWJlZGMwNjE4YmM1Njk1NmM4NmQ2NmVmNDc2ZThhOWE4NmQ0YzEyMGFhOA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4c"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "price" : "1073", + "sku" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Midnight-Black-491379670-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2g4OC9oYTEvODkzNjIwNzIyMDc2Ni5qcGd8YTAyMTlmMjVjYTg2ZGU2NmIzODc2M2ZjZDNkZGM0YTIzNzEyOTk4MGY3NDY3MjEwMTlkYjZkODAxZWJjZDA0OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4d"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Coral Blue", + "price" : "1073", + "sku" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Coral Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Coral-Blue-491379669-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI5MHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDE5Lzg5MzYyMDc1NDg0NDYuanBnfDQzMjM1M2MzYmY1MTFjNzI0Y2Q2MjEzMGJiMmZiOGMxZTA2NzVlNmVmYzI4ODEyOGFjMjZkNDIwYmEwMDczNjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4e"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Lilac Purple", + "price" : "1073", + "sku" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Lilac Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Lilac-Purple-491379671-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjQ3fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oZTQvODkzNzIwNDUxNDg0Ni5qcGd8MmRmNDNhNWFjOWVmZDdkOWRlOTEzZGRjYWE3MWQ1N2ZiZjIwMjI1Y2Y1OTQwMTg0MWMyMmZhZTU4YTgxZWMyNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4f"), + "name" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "406", + "sku" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Plus-Smart-Phone-Gold-491419855-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDAzNXxpbWFnZS9qcGVnfGltYWdlcy9oMDEvaDlmLzg5NjA2OTA4MTUwMDYuanBnfDdmZTlhZDg3NzI1YWM0MzUwNDA5OTBkODMzMjg5NDg0YjFmNmJkZmU2N2I3OGM1YTRlMDcxMDk0ZDUwMTg0YjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 21 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Snapdragon Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.02" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d50"), + "name" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "406", + "sku" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Plus-Smart-Phone-Black-491419856-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI2NnxpbWFnZS9qcGVnfGltYWdlcy9oNzMvaDZlLzg5NjA2ODk1Njk4MjIuanBnfGMwNTRjYjIxODFlYzIzMWVjNDNmODMxNGFjNGE0ZjA3N2E4MzI5ZTE0NjFlOGE1M2M1ZjI3NjA5MmRjYjNjYWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 21 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Snapdragon Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.02" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d51"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Sunrise Gold", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Sunrise Gold", + "price" : "1073", + "sku" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Sunrise Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S9-Plus-Smart-Phones-491419959-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTM3OHxpbWFnZS9qcGVnfGltYWdlcy9oMmMvaDg5Lzg5OTM0MzA0NzA2ODYuanBnfDA2N2E1OTlkNmE3YmE3ZGM2NDI0ODJjNWNjNTM0MzlkZjk0ZjNlN2I1OTBhOGUxMjE1MzNiMmU1MGJkZmRiYjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sunrise Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 13 hours
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • Internet Usage Time(LTE): Up to 15 hours
  • Video Playback Time: Up to 18 hours
  • Audio Playback Time: Up to 54 hours
  • Audio Playback Time (Always On Display Off): Up to 94 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Talk Time (3G WCDMA): Up to 25 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA: B34(2010), B39(1880)
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38(2600), B39(1900), B40(2300), B41(2500)
  • FDD: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d52"), + "name" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Metallic Copper", + "description" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Metallic Copper", + "price" : "1067", + "sku" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Metallic Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Note-9-Smartphones-491420115-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTcwNHxpbWFnZS9qcGVnfGltYWdlcy9oODEvaDhjLzg5OTgyOTIyNTg4NDYuanBnfGU0ZGJkYWMyOTY0OGQ1MTdlZWZlYWQyNjZlZmFkOTI4MWM0OWE4ZTBkNGE5OGUwYjY5ZmNjMjkzNjVhMTljNDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Metallic Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d53"), + "name" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "price" : "1067", + "sku" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Note-9-Smartphones-491420114-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njk1N3xpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDJiLzg5OTgyOTMyNDE4ODYuanBnfDM2ZmU3ZGM2MDM0YjgzMzQxMDY4M2MzYjhiNWY2Y2IzZGRhYTEzNDNhMGZkMGQzN2Q4OTM0YzFlNzQ5MTc1ZGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d54"), + "name" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "189", + "sku" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-4-2-Black-TA-1152-Smart-Phones-491570749-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzY1NnxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDg3LzkxMzU0NDE3NzI1NzQuanBnfDZjODVmYmY1ZmUwZGYyNmYxMWYyYzM1YTVlNjljZjAwOGEwOGE2ZDk1MDQ3NzNjN2MwODZjZmVhNjVlYjAxMTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.5 cm (5.71 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Music playback time Up to 100 hours (with headset)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "4G: Up to 25 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1, 5, 8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 3, 5, 7, 8, 20, 28, 38, 40, 41 (120 MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 439" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.13" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 13 MP (AF/F2.2/1.12 micrometres) + 2 MP (FF/F2.2/1.75 micrometres) dual primary camera
  • \n
  • LTE Cat 4 - 150Mbps DL / 50Mbps UL" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d55"), + "name" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Pink Sand", + "description" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Pink Sand", + "price" : "189", + "sku" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Pink Sand", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-4-2-Pink-TA-1152-Smart-Phones-491570750-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTU2NHxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaDM3LzkxMzU0NDE0NDQ4OTQuanBnfDNkM2Q2MWY3ODU2NzdjMTVjNzViYWFlZGU2YzdhZWNiN2VlMTUyZTU5Njg0N2Q0ODRjOTVlZGZlZDY1MDliMzQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.5 cm (5.71 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Model", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Music playback time Up to 100 hours (with headset)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "4G: Up to 25 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1, 5, 8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 3, 5, 7, 8, 20, 28, 38, 40, 41 (120 MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 439" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.13" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 13 MP (AF/F2.2/1.12 micrometres) + 2 MP (FF/F2.2/1.75 micrometres) dual primary camera
  • \n
  • LTE Cat 4 - 150Mbps DL / 50Mbps UL" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d56"), + "name" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "269", + "sku" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-64-GB-Gold-491419878-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM2fGltYWdlL2pwZWd8aW1hZ2VzL2hkMy9oNDgvODk2MDY2MzE1ODgxNC5qcGd8Y2MwM2QyZmM1OGYxZDIwYjIzOGU0Zjg4NWZlZjI3ZWZkNTNmNTY4N2E3MTM3MmE5NWU1NWZhMmRmNDVmZDhmYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d57"), + "name" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "341", + "sku" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Smart-Phone-Gold-491419852-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Njc3fGltYWdlL2pwZWd8aW1hZ2VzL2hhYS9oYWQvODk2MDY3MDgyNjUyNi5qcGd8OGQ1M2MyZWZiYmYwYjUzNzc5NzJkZjc0ZTZlZWQ0N2Y3YzcyNTFiNTJlNDUyYzIyMGY4MjdiYjAyYWE0MDIzNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 10 hours, Internet Usage Time(LTE): Up to 12 hours, Internet Usage Time(Wi-Fi): Up to 13 hours, Video Playback Time: Up to 16 hours, Audio Playback Time: Up to 70 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 20 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM - GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS - B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d58"), + "name" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Matte Black", + "description" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Matte Black", + "price" : "95", + "sku" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Matte Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A22-PRO-Smart-Phone-491538900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyfGltYWdlL2pwZWd8aW1hZ2VzL2hlYS9oYzIvOTA5NTkzOTE2MjE0Mi5qcGd8MWE1ZGE4MjAyMmNjZTcyZjQ0NzhiNTgxNTkwNTk3MzAwMWM2ZjEzMTk0MmU3Njc1OWMwNjhiMjUwN2NiYWNkNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A22 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "9 Days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "28 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE TDD - 2300 MHz, B40
  • \n
  • LTE FDD-2100/1800/850 MHz B1/B3/B5
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.34" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d59"), + "name" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "232", + "sku" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-Smart-Phones-491420139-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjE0OXxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGI3LzkwMTg5MjA1MDEyNzguanBnfGE2NTg0MDNkMjJkZDY3N2UwNWY2NmEzMTRjYmU3MWNhNjNhMDBmMzBjNTJlOTg3ZTk3ODJmZTQ1ODkyMDZhZDM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2970" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 52.7 hours
  • Video playback time: Up to 9.4 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 24.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 19 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6755S Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.11" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.07" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music Playback Time: 52.7 hours
  • \n
  • Durable Aluminum Unibody Design
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5a"), + "name" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Midnight Black", + "description" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Midnight Black", + "price" : "87", + "sku" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A45-Smart-Phones-491420217-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTI5fGltYWdlL2pwZWd8aW1hZ2VzL2gxZS9oNjMvOTA1NDkxMjY0MzEwMi5qcGd8MDRkZjIwYTY2NDZkZmQ1OTYxMzRkY2ZiZWM3MzRkMDdkZDBkNDIwMTc3ZTEzNjZiODdiNGQ2NGFiNTQyMWI2Ng", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A45" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 2100/1800/850 MHz B1/B3/B5
  • \n
  • TD-LTE: 2300/2500 MHz B40/B41rn
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.08" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5b"), + "name" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Gold", + "description" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Gold", + "price" : "608", + "sku" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A8-Plus-Smart-Phones-491379675-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzc3M3xpbWFnZS9qcGVnfGltYWdlcy9oNmYvaDg3Lzg5ODE2NTkwOTA5NzQuanBnfDI2NzkxMGVjMWU2MjhhOWYyYjEzMDEwODEwN2I1NzkxZWZkOTY4MTdkZmY2NzcxNjE5NTI1ZTFjNzhjZDM3ZmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A8 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 19 hours
  • \n
  • Audio Playback Time: Up to 73 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 23 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B12(700),B13(700),B17(700),B18(800),B19(800),B20(800),B26(850),B28(700),B66(AWS-3)
  • \n
  • TDD LTE: B38(2600),B40(2300),B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2GHz Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.99" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5c"), + "name" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "218", + "sku" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-32-GB-Blue-491419857-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjcyfGltYWdlL2pwZWd8aW1hZ2VzL2gwOC9oMzkvODk2MDY4NDg1MTIzMC5qcGd8ZjAwMGE3MTkzZTkzZTk2YmQ0ZDVlNGJmYTE3MDhjN2M5ZDZkOGVjMDlkNTJkZmUyZTFjOTlhNDcwZWEwY2IwOA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5d"), + "name" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Tempered Blue", + "description" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Tempered Blue", + "price" : "232", + "sku" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Tempered Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-Smart-Phones-491420140-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjE2OXxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaDc0LzkwMTg5Mjk0MTQxNzQuanBnfDE4NmNlMGRmNzdhM2VkMDZhZWI5Y2YyZjJkMDhkODRmZGZiOTg3MWZkZDNiMjgwYzQ5MjY3NjA3ODZjZGMyNWI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Tempered Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2970" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 52.7 hours
  • Video playback time: Up to 9.4 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 24.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 19 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6755S Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.11" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.07" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music Playback Time: 52.7 hours
  • \n
  • Durable Aluminum Unibody Design
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5e"), + "name" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Copper", + "description" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Copper", + "price" : "232", + "sku" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-Smart-Phones-491420141-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDU4OXxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaGUxLzkwMTg5Mjg0MzExMzQuanBnfDZlZDNhOTQ3MGQ5ODY5MjE1YmFkZDg4OWIxY2I0ZTZmOWJlYmZmYTRjMWE4ZGRkMTU4NjNkNTZlMTJjMGUxMzE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2970" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 52.7 hours
  • Video playback time: Up to 9.4 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 24.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 19 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6755S Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.11" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.07" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music Playback Time: 52.7 hours
  • \n
  • Durable Aluminum Unibody Design
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5f"), + "name" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Black", + "description" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Black", + "price" : "608", + "sku" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A8-Plus-Smart-Phones-491379676-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTMzN3xpbWFnZS9qcGVnfGltYWdlcy9oNjIvaGIxLzg5ODE2NjIxMDU2MzAuanBnfGVlNDk2ODk5NjljOWU5MmEyNTE3MDk3YjY2ZmE0MGZkOTcxYTdmNTJiMjczYmRlNDBiOTYzNGU2MjFjY2U2YmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A8 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 19 hours
  • \n
  • Audio Playback Time: Up to 73 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 23 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B12(700),B13(700),B17(700),B18(800),B19(800),B20(800),B26(850),B28(700),B66(AWS-3)
  • \n
  • TDD LTE: B38(2600),B40(2300),B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.99" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d60"), + "name" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "269", + "sku" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-64-GB-Black-491419879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTA4OXxpbWFnZS9qcGVnfGltYWdlcy9oZTkvaDQwLzg5NjA2NjM0ODY0OTQuanBnfDFiZjZiNWEzOTY4YTc5NjZmNDZkZmQxYWQ5YmYyMGIzYmQ4YjhhNjcxZmUyMzQ0MmUyNjFlZmZiNTY3ZGFmMDE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d61"), + "name" : "Apple iPhone XS Smart Phone 512 GB, Space Grey", + "description" : "Apple iPhone XS Smart Phone 512 GB, Space Grey", + "price" : "1956", + "sku" : "Apple iPhone XS Smart Phone 512 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-512GB-Space-Grey-491488024-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjYzN3xpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDg0LzkwMjU5OTQ2NTM3MjYuanBnfGM4NTUxOTcxYjQ3OTJjZTIzYTM2ZWVkNTg4ZWUxYzQyYzE0YzQxZDc1MTdmZjFiZWI3ZjBmYzIzZmQ2Nzk1YTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d62"), + "name" : "Apple iPhone XS Max Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone XS Max Smart Phone 256 GB, Space Grey", + "price" : "1811", + "sku" : "Apple iPhone XS Max Smart Phone 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-256GB-Space-Grey-491488030-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaGJiLzkwMjU5NjkxNjAyMjIuanBnfDI1MWQ1NjFkNjFhMzE0OTlhM2I0NmI1YWNmM2JjOTgwY2Y3MzFjNjMxMWNiNWIxNjdhZDljNWNhMTEwYWMwZjU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d63"), + "name" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "218", + "sku" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-32-GB-Gold-491419858-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM2fGltYWdlL2pwZWd8aW1hZ2VzL2hkNS9oMzUvODk2MDY3ODgyMTkxOC5qcGd8OTQxZGZlYzI5MDJhNzdiNGY1Njk4Y2Y5ZmIwZTFkOWZlNzQzMDhkMmRkY2ZhYmJiMmYxNjAyYjYzNGE2NmY1NQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d64"), + "name" : "Apple iPhone XS Max Smart Phone 64 GB, Silver", + "description" : "Apple iPhone XS Max Smart Phone 64 GB, Silver", + "price" : "1593", + "sku" : "Apple iPhone XS Max Smart Phone 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-64GB-Silver-491488028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDM3NXxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaDM2LzkwMjU5Njk4MTU1ODIuanBnfGJkMWQ3NjRiNTM0MmEzOTA5OTg5MDYyOTc5MTYzZmZlMmZlODk1ZmQ4NzczNDMzYjRkYzU2MmNjYjM2OTk1ZWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d65"), + "name" : "Gionee X1s Smart Phone 16 GB, 3 GB RAM, Black", + "description" : "Gionee X1s Smart Phone 16 GB, 3 GB RAM, Black", + "price" : "208", + "sku" : "Gionee X1s Smart Phone 16 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-X1s-Smart-Phones-491351042-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjE1OXxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaGM1Lzg4ODY0NTk0NjU3NTguanBnfDBiYjA4MzFhMDBiMTJiOWFmZDgyMjBiNzBkODQ3MTQxYTY5MWVjZDViNDlhNDQwMDNhMTljODgxNjVhMDBjNjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "X1s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7. 0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4. 2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1. 5 GHz Mediatek Quad Core Processor" + }, + { + "attributeName" : "Weight", + "attributeValue" : "166" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d66"), + "name" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mystic Purple", + "description" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mystic Purple", + "price" : "276", + "sku" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mystic Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y17-Smart-Phones-491570588-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTA0fGltYWdlL2pwZWd8aW1hZ2VzL2gzMy9oZmEvOTEyODk5NTc4MjY4Ni5qcGd8ZTBhNDA3NTg5NmQyMDVhOThlOGVjY2M2MjdkNjZmMGM5NDQ4MWRjZWJiZjQxODVhOGRhOThjZDdlZjgwZWNjZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mystic Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.15 cm (6.35 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE B1/3/5/8
  • \n
  • TDD-LTE B40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Octa-Core Helio P35 (MT6765) Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.94" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rear flash + Front Screen Flash
  • \n
  • 89% Screen-To-Body Ratio
  • \n
  • 19.3 : 9 Aspect Ratio
  • \n
  • Mirror Finish
  • \n
  • AI Super Wide-Angle Camera
  • \n
  • 18W Dual Engine Fast Charging
  • \n
  • Ultra Game Mode
  • \n
  • Capacitive Multi-Touch
  • \n
  • 2.4G + 5G Wi-Fi
  • \n
  • Location: GPS" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d67"), + "name" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Gold", + "description" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Gold", + "price" : "102", + "sku" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-Core-Smart-Phones-491420210-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIyMHxpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDk2LzkwMTg5NDgwMjYzOTguanBnfDZkNzg0NDE1OGNkY2M4ZWU1YjY5ZWEyZGIxYjY5NDBlN2NjZjRiNzk1YTM4ZjlmZDk4YTJjNjNmODhhMmZjNzk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • \n
  • Internet Usage Time (LTE): Up to 17 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UTMS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d68"), + "name" : "Apple iPhone XS Smart Phone 256 GB, Silver", + "description" : "Apple iPhone XS Smart Phone 256 GB, Silver", + "price" : "1666", + "sku" : "Apple iPhone XS Smart Phone 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-256GB-Silver-491420322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzQ1M3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDUwLzkwMjU5OTY2ODUzNDIuanBnfGZjMGFhNTU3ODA4YTE4YmE4MjI2NWYwZDg4OTZjZGZiZjYyOTc4YTM0MWEwNzEyZGYzZWYzMWQwYTBhYTIyZmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d69"), + "name" : "Apple iPhone XS Max Smart Phone 512 GB, Silver", + "description" : "Apple iPhone XS Max Smart Phone 512 GB, Silver", + "price" : "2100", + "sku" : "Apple iPhone XS Max Smart Phone 512 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-512GB-Silver-491488034-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDM3NXxpbWFnZS9qcGVnfGltYWdlcy9oMDEvaDkzLzkwMjU5NzgwNzMxMTguanBnfDdjMzk0NDU3YmQwN2UxOGY5ODhhMGY3NzcyOGM1NDk5YTBiOTQ1MGUxZmMyYjhiNzE5NGVlMTFiMGU3ZWZhMzk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6a"), + "name" : "Apple iPhone XS Smart Phone 512 GB, Gold", + "description" : "Apple iPhone XS Smart Phone 512 GB, Gold", + "price" : "1956", + "sku" : "Apple iPhone XS Smart Phone 512 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-512GB-Gold-491488026-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDI2MnxpbWFnZS9qcGVnfGltYWdlcy9oN2IvaGJmLzkwMjYwMDMwNDIzMzQuanBnfDI0MWFhMzkzMjkwOGRlYmYzNzU1M2Y2NTg1YmY5N2Q0NjA1NTc2YjEzMjc3NDVlMGZjMGNiNzgyYTE5YTYxZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6b"), + "name" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "290", + "sku" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J8-Gold-OC-4-64-6-Mobile-Phones-491420007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzIwN3xpbWFnZS9qcGVnfGltYWdlcy9oZjkvaDZiLzg5NjA2NTc0NTcxODIuanBnfDA5ZWI3NTA0YzA5YWY0NTQxNTBlNmVkODM1MzE1NGRhYjc2ZjhkMTM2NTM2M2ZmMGJlNzAyZTAyMDY3NWIzZDY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.36 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core Qualcomm Snapdragon 450 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6c"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Gold", + "price" : "759", + "sku" : "Apple iPhone 7 Smart Phone 32 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Gold-491282714-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM0MHxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaDYzLzg5MjcxMTU1NDI1NTguanBnfGYyMGI1ODI2YmIyMWZkMWViMjE4MTUxYzZlMzc5MjJhZTNkMmI2YWIwOWNiNjFhMWRiMTY3YmJiYmM5ODc5YmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6d"), + "name" : "Apple iPhone XS Max Smart Phone 64 GB, Gold", + "description" : "Apple iPhone XS Max Smart Phone 64 GB, Gold", + "price" : "1593", + "sku" : "Apple iPhone XS Max Smart Phone 64 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-64GB-Gold-491488029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg4NnxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaDVhLzkwMjU5NzQwNzU0MjIuanBnfDFmYjEyNmVlOWIxMTQxMGVjOTQwMDZiYTY2ZDNiNTlhOTBkYWZmNWUyYjhjMWU5YzQ3NzhkYTdlYjJhNmVkMTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6e"), + "name" : "Apple iPhone XS Smart Phone 256 GB, Gold", + "description" : "Apple iPhone XS Smart Phone 256 GB, Gold", + "price" : "1666", + "sku" : "Apple iPhone XS Smart Phone 256 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-256GB-Gold-491488023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDE3MHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDczLzkwMjU5OTkzNzIzMTguanBnfDU0ODFjYWM2ODc1MjdlZTc1MGZkZTVjYzliOGZkNjU3Yjc5ZjU2ZGNhNjRhNDg2ODg3Yjc0MzQ4MjY1MDk3OTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6f"), + "name" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, White", + "description" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, White", + "price" : "314", + "sku" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-Earth-2-Smart-Phone-White-581108220-Package-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDkyMHxpbWFnZS9qcGVnfGltYWdlcy9oM2QvaDg1Lzg4OTAzNzYzNTU4NzAuanBnfGEyYmYyZTAwNWU3ZjNlMWM3MmQzMTMyZWQxYmJhNDgzOThhNzNiZTExZWVmNDZjZjc2OTIyYTEyMmE1OWQ4YWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 480 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 1800/1900/850/900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA Band 1(2100)/Band 8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD Band 3(1800)/Band 5(850)
  • TDD Band 40(2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Non Removable Battery
  • Earphone
  • SIM Card Removing Pin
  • Charger Adaptor
  • USB Cable
  • Quick Service Guide
  • Warranty Card
  • Protective Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d70"), + "name" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "314", + "sku" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-Earth-2-Smart-Phone-Gold-581108219-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzQ1MXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaGY2Lzg4OTAxNjA3MDk2NjIuanBnfDI5YThmZGY4YmM4YTA4YWM3MjA3ODIzYjAzYzIyZmFlZDQ4MDExN2I5ZDg1OWQ2ZjZjY2Q1NDlmYjc3YzNhYTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 480 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 1800/1900/850/900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA Band 1(2100)/Band 8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD Band 3(1800)/Band 5(850), TDD Band 40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IPS LCD display
  • Light Sensor
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Non Removable Battery
  • Earphone
  • SIM Card Removing Pin
  • Charger Adaptor
  • USB Cable
  • Quick Service Guide
  • Warranty Card
  • Protective Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d71"), + "name" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "314", + "sku" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-Earth-2-Smart-Phone-Black-581108217-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzA0OXxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaDY2Lzg4OTAxNTgwODgyMjIuanBnfDdlODJhOTVhZGJhNDdkYWMxMjQ2MWE0M2YxYTA0YWZhYjE0OTA3NzkzYmViMzI5ZmQ5NzA3NTU1YTE2OGFiODM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 480 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 1800/1900/850/900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA Band 1(2100)/Band 8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD Band 3(1800)/Band 5(850), TDD Band 40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IPS LCD display
  • Light Sensor
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Non Removable Battery
  • Earphone
  • SIM Card Removing Pin
  • Charger Adaptor
  • USB Cable
  • Quick Service Guide
  • Warranty Card
  • Protective Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d72"), + "name" : "LYF Earth 1 Smart Phone 32 GB, 3 GB RAM, White", + "description" : "LYF Earth 1 Smart Phone 32 GB, 3 GB RAM, White", + "price" : "374", + "sku" : "LYF Earth 1 Smart Phone 32 GB, 3 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/581107855-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTc1N3xpbWFnZS9wbmd8aW1hZ2VzL2hiMS9oZDUvODg3NTM3OTQ5MDg0Ni5wbmd8NTllZTdmZDMyMGZjNTA4MmRkYmQxMWNkOWEzMTE2NzdkY2Y3YWUxZmJhNWRlZDVhMzIyZmJmNTQxZDQ4ZjRlZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.79 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Upto 9 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 280 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 Hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD BAND3(1800)/BAND5(850), TDD BAND40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Qualcomm Snapdragon 615 MSM8939" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.66" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Jio chat" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Flash
  • 6x Digital Zoom
  • G-sensor
  • Refocus Mode
  • ChromaFlash
  • OptiZoom
  • Dual Rear Camera (13MP + 2MP)
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earphone
  • Ear Plug Charger Adaptor
  • Quick Service Guide
  • Flip Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d73"), + "name" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Frozen Black", + "description" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Frozen Black", + "price" : "392", + "sku" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Frozen Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15-Black-6GB-64GB-12-8-5MP-32MP-SmartPhone-491550985-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjcxfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oNzQvOTExNjkxNzgyNTU2Ni5qcGd8ZGFjNGZmNzlmMDM5MmRkN2JkMWI5ZDQ4YWQ0N2FkZjg4M2EyYTYzYmEwMzQ5NTgzNDY1NmU3OGNlZDM1ZGYyNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Frozen Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.59 cm (6.53 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (Based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa-core (4*A73 2.1GHz, 4*A53 2.0GHz) MTK P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.59" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earpieces" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d74"), + "name" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Glamour Red", + "description" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Glamour Red", + "price" : "392", + "sku" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Glamour Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15-Red-6GB-64GB-12-8-5MP-32MP-SmartPhone-491550986-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDY3MXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDM3LzkxMTY5MTQ4NzY0NDYuanBnfDUxNjU1YTk5NjNlYjRlZTBiNTg2YjllNzU3OGEzMzllZmM5NzUyNzI2MDdhMGZkOThmODAxNDQ1ZTIyMWY5YzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glamour Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.59 cm (6.53 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (Based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa-core (4*A73 2.1GHz, 4*A53 2.0GHz) MTK P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.59" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earpieces" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d75"), + "name" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "description" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "price" : "145", + "sku" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551056-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDQ4fGltYWdlL2pwZWd8aW1hZ2VzL2g0MC9oYjgvOTEyMzIxMjg1MzI3OC5qcGd8MGNmM2RjNmU5ZWIxZjQ1MzhkN2ZhZGQ4NzczYjJlMTVmZWZkMzM4NzU0NjgyNjUxNGI3NmNlYzZiZWJhNDRjMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation\nmicroUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d76"), + "name" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Starry Black", + "description" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Starry Black", + "price" : "189", + "sku" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Starry Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91-Smart-Phones-491503536-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODk0fGltYWdlL2pwZWd8aW1hZ2VzL2g4ZS9oOGUvOTEzODQxMDg0ODI4Ni5qcGd8NDZmNGY3MDJmYTczZDgzMDcyMjY2ZmJkZjgyZjk5Y2M5OTAyZWFmNjg5YTE2OTE1NTcyYTliMGJhMGRiZjI1YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Helio P22 (MTK6762R) octa-core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full-incell Display type" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d77"), + "name" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "description" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "price" : "189", + "sku" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91-Smart-Phones-491503537-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE2OXxpbWFnZS9qcGVnfGltYWdlcy9oMDgvaDc5LzkxMzg0MTM0Njk3MjYuanBnfDBkODFjYTAzNzkwMTdiMDk2NGJjYzIwZDMxMmMyZGYzMzk4Y2YyMTE4NDYzNzAyZjllZTJiNjhlZTFiMTBlYWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Helio P22 (MTK6762R) octa-core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full-incell Display type" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d78"), + "name" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Gold", + "description" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Gold", + "price" : "176", + "sku" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-F103-Pro-Smart-Phone-Gold-491216764-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjc1OHxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDVjLzg5MjczNTE2Njg3NjYuanBnfGEwNDljNzJhNWUyODY2OWY1ZjkzYmUxMWFlZTA4NzdiYzEyM2UzOWE1MDI5MDBhOGUwN2ZiYzFhNzgxZDgzMDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "F103 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android OS" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "369 Hrs (2G) " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "28.57 Hrs (2G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "900MHz/1800MHz/1900MHz/850MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "900MHz/1900MHz/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE(FDD): B3/B5, TDD:B40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "V4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad Core 1.3 GHz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Gesture (Pause Alarm)
  • Smart Vibration Reminder
  • Mood Wallpaper
  • Eco Mode
  • Child Mode
  • Child Mode
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Transceiver
  • Earphone
  • Travel Charger (2A)
  • Data Cable
  • User Manual
  • Warranty Card
  • Protective Film
  • Transparent Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d79"), + "name" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "312", + "sku" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Smart-Phone-Gold-491297543-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzE1M3xpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDViLzg5MjY4MTM0MjE1OTguanBnfDQ5ZmE0MTg3M2RlODYyZWFlYjIwMzQ5MDgxNzA2OGMzMjdhZDRiODEyMTQxN2YyYzUyMThiZGYwMDI0YTNkZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4010" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa Core MT6755" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7a"), + "name" : "Micromax Canvas 1 Smart Phone 16 GB, 2 GB RAM, Chrome Black", + "description" : "Micromax Canvas 1 Smart Phone 16 GB, 2 GB RAM, Chrome Black", + "price" : "131", + "sku" : "Micromax Canvas 1 Smart Phone 16 GB, 2 GB RAM, Chrome Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Micromax-Canvas-1-Smart-Phone-Chrome-Black-491350900-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzE2fGltYWdlL2pwZWd8aW1hZ2VzL2hkOC9oOTcvODkyNzA0MDgzMTUxOC5qcGd8MWIyNjdlNjRhNDU4Yzc0ZDg4YmZkY2RjNGI5ZDVkOThjNWRlYTJkZWUwZjhhMTNkOTQzOTZmNTFkNmFjZTAyNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Chrome Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Canvas" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Micromax" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "7 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "180 hours" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: 40
  • \n
  • FDD 3/5
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "HSPA" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz quad-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Micromax", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7b"), + "name" : "Nokia 5 Smart Phone, Matte Black", + "description" : "Nokia 5 Smart Phone, Matte Black", + "price" : "222", + "sku" : "Nokia 5 Smart Phone, Matte Black", + "imageUrl" : "https://www.reliancedigital.in/medias/8dbf8a3c-bf4d-48f2-b4b6-9a54f9797699-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODMwfGltYWdlL2pwZWd8aW1hZ2VzL2gzMy9oNWQvODg1MDk4MDYwMTg4Ni5qcGd8N2MxMWM4MGI2MzcxNmNlYjY3MmE0YjZiNGE3Yzc4OGM1MmNkNDYyMTk4MjRmNGJlZDYxNmVhMzRiMWYwZWI1Zg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Band 1, 2, 5, 8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Band 1, 3, 5, 7, 8, 20, 28, 38, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.805" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • Charging/data cable
  • Headset
  • Quick guide
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7c"), + "name" : "Gionee X1 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Gionee X1 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "150", + "sku" : "Gionee X1 Smart Phone 16 GB, 2 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-X1-Smart-Phone-491351039-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzU3N3xpbWFnZS9qcGVnfGltYWdlcy9oNTYvaGE4Lzg4OTAwMDk3MTQ3MTguanBnfDMxOTA4ZTk2OGY5NTg0YzI3YjAzZGY4MDkxZGQ3MDY2NjEzNzgyYmE1ZDI2ZTc3NzJkZjc2MTFlN2IxNDA5Yjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "X1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 (Amigo 4.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "482 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "27 Hours" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G VoLTE" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MT6737 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.22" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7d"), + "name" : "LG Q6 Smart Phone 32 GB, 3 GB RAM, Platinum", + "description" : "LG Q6 Smart Phone 32 GB, 3 GB RAM, Platinum", + "price" : "247", + "sku" : "LG Q6 Smart Phone 32 GB, 3 GB RAM, Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-Q6-LGM700DSK-Smart-Phones-491362207-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDczNXxpbWFnZS9qcGVnfGltYWdlcy9oZTcvaDRkLzg5MjEyNTMxNTA3NTAuanBnfGUwODg5MWRjMzg5MjU5NjE5YWI0OWQ1Y2U0NDhiMWMzNjYzMTcxNmQ5ODM2ZTBiOTIwMGUxMTQ1ZjE2OGY4YzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q6 LGM700DSK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "EDGE/GPRS/GSM 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS 850/900 / 1900 / 2100
  • \n
  • HSPA+ 42/HSUPA 5.7
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE Bands: B3 / B5/ B40/B1/B7/B8/B38/B28/ B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4GHz Octa Core Qualcomm MSM8940 Snapdragon 435 Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7e"), + "name" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "305", + "sku" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-F5-Smart-Phones-491351095-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzgwMXxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaGE0Lzg5MjE0NTM1NTk4MzguanBnfDNkMzFhN2RhZDU2NzRjYzViMWRjZTA0NGNjYzc4ZjFhYTA2MWU0YWZkOWFkZTc5MDA5YThhYmMyZmI0MThlNWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "F5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 3.2 (Based on Android 7.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3200" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD B1/3/5/7/8
  • \n
  • TDD B38/39/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6763T Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7f"), + "name" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "305", + "sku" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-F5-Smart-Phones-491351096-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzkxM3xpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDQzLzg5MjE0NTQ1NDI4NzguanBnfGUyYTBiZGNmMDg3Yzg4MDdhZWRiYzdjYjg3NzJiMmViMDU5MmEwNDUxYTFkYjYxOGJkNGZmZGRmYTE2ZDA1YTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 3.2 (Based on Android 7.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3200" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1901" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/9" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD B1/3/5/7/8
  • \n
  • TDD B38/39/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6763T Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d80"), + "name" : "VIVO V7 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "description" : "VIVO V7 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "price" : "290", + "sku" : "VIVO V7 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V7-Smart-Phone-Matte-Black-491351094-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTA0fGltYWdlL2pwZWd8aW1hZ2VzL2hmNS9oY2QvODg5MTkxNzMzNjYwNi5qcGd8NDI1OWUyNTgxYzczZjM5MTMwZWYwYzk0ZGNiY2JhMTUxYzE1MTYzYThlMjMzOGM5NGE2YzM3NTEyY2I2NmIxYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "V7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 3.2 (based on Android 7.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (2/3/5/8)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands (1/5/8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: (1 / 3 / 5 / 8)
  • \r\n
  • TDD: (38/40/41)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Octa-core Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.28" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "139" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Google Duo" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • XE100 with Remote and Mic
  • Documentation
  • microUSB to USB Cable
  • USB Power Adapter
  • SIM Ejector
  • Protective Case
  • Protective Film (applied)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d81"), + "name" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "348", + "sku" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V9-Mobile-Phone-Gold-491379631-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4OXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDJkLzg5Nzg2Mzg3MDA1NzQuanBnfDIxNTM0YjcxMjI1NjBiZmZmY2ZkY2M4YzYxNzc1ZWUwYzhhNmM1YzNlMDQ3MWU0OGVmNTI4ZmQzN2I0NmY1OTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "V9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 ( Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (3 / 5 / 8)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: (1 / 5 / 8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: (1 / 3 / 5 / 8)
  • TDD-LTE: 38/40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 626" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.481" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.503" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.789" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • USB Cable
  • Earphone
  • Protective Case
  • Quick Guide
  • Warranty Card
  • SIM eject tool
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d82"), + "name" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Red", + "description" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Red", + "price" : "334", + "sku" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-64-GB-Red-491379642-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI3MnxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaGFkLzg4OTU2MDI5NTAxNzQuanBnfDIxMTAxOGJiM2NmM2Q2NGI4YzhjNjY5NTBlYmFmNzRkNjgwYjQ1MTA5NWEwMmUxYjJhNGFmNjViZDVkODcwNTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \r\n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-core MTK P60 processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d83"), + "name" : "LG Q6+ Smart Phone 64 GB, 4 GB RAM, Ice Platinum", + "description" : "LG Q6+ Smart Phone 64 GB, 4 GB RAM, Ice Platinum", + "price" : "290", + "sku" : "LG Q6+ Smart Phone 64 GB, 4 GB RAM, Ice Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LGM700DSK-Mobile-Phones-491362209-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTU0M3xpbWFnZS9qcGVnfGltYWdlcy9oNjIvaGViLzg4OTcyNDQwMDQzODIuanBnfDllYjQyNTgwODJiOWJhMjY3YTUyZDRjM2Y4NTlmYjU0NDAwYTZiZTc3MzVlZjk1NWQzNTUxMDc1NzI3YjgxOTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ice Platinum" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q6+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850/900/1800/1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMT: 850/900/1900/2100 MHz
  • HSPA+: 42
  • HSUPA: 5.7
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B3/B5/ B40/B1/B7/B8/B38/B28/ B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 2 TB" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Qualcomm MSM8940 Snapdragon 435 octa core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d84"), + "name" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Silver", + "description" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Silver", + "price" : "334", + "sku" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-64-GB-Silver-491379643-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjE4M3xpbWFnZS9qcGVnfGltYWdlcy9oY2IvaGVhLzg5MDU1MjEwNzAxMTAuanBnfGRkMDQ4ZmI4NGNjMjVmMjRkZGIwMGJjMGQyMjJlOWZhODQ3YTgzNjUxYjA0ODQyZmQyOWRlZGYzYTVkNDA3ZjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \r\n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz octa-core MTK P60 processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d85"), + "name" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Diamond Black", + "description" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Diamond Black", + "price" : "334", + "sku" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Diamond Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-64-GB-Diamond-Black-491379644-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTQ5MHxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaGVjLzkwMTYzNDU2NTczNzQuanBnfDYwZTQwOWFlNDliZTNhNmNlYjQzMTFmNTM4ZDk0YTIyZGFjOWEwYjQwNmRmOGNjYWVjZTEwMjRjNTJiYzY2YWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz octa-core MTK P60 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Light Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d86"), + "name" : "Oppo A71 CPH1801 Smart Phone 16 GB, 3 GB RAM, Black", + "description" : "Oppo A71 CPH1801 Smart Phone 16 GB, 3 GB RAM, Black", + "price" : "160", + "sku" : "Oppo A71 CPH1801 Smart Phone 16 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A71-CPH1801-Mobile-Phone-491362577-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzI4MHxpbWFnZS9qcGVnfGltYWdlcy9oNDgvaGU3Lzg5MjIxODAzNTQwNzguanBnfGRkZjFiNDUxODg3ZWJiMGFjMDZjNzA4NGMyM2Y4ZWZiMTJlYTI0MGIwZmUxZTg2YTM3MjA5ZTU3ZTUxMTg3ODI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "OPPO A71-CPH1801" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 3.2 Based on Android 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MSM450 snapdragon octa core processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "136" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d87"), + "name" : "OPPO F7 Smart Phone 128 GB, 6 GB RAM, Red", + "description" : "OPPO F7 Smart Phone 128 GB, 6 GB RAM, Red", + "price" : "406", + "sku" : "OPPO F7 Smart Phone 128 GB, 6 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-128-GB-Red-491379645-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI3MnxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaDExLzg5MzQxOTM4NTY1NDIuanBnfGE5Y2RlZDJmMmJhYjdiOTBiZDRhMzgxZWJlOGFlODhhMTI3ZWEwYTQ2MjYzY2JlMzg1MjkzYmEyNTNjMDNkZjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \r\n
  • TD-LTE: Bands 38/40/4
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-core MTK P60 processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d88"), + "name" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Pearl Black/Gold", + "description" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Pearl Black/Gold", + "price" : "348", + "sku" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Pearl Black/Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-VIVO-V9-Smart-Phones-491379776-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjc2MnxpbWFnZS9qcGVnfGltYWdlcy9oYTYvaGUxLzg5ODE2OTE5OTAwNDYuanBnfDQ4MjU1ZWQ0NTJjMjA2MWM4OWViZjQ0MTkwZGFkODEzODA1ZTY4NjJiYzM2MzhmZWE1YzhhNzdlZDkwN2RkZjY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pearl Black/Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "V9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 ( Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/3/5/8
  • \n
  • TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 626 Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earphones
  • Documentation
  • microUSB to USB Cable
  • USB Power Adapter
  • SIM Ejector
  • Protective Film (applied)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d89"), + "name" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "247", + "sku" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-CPH1729-Smart-Phones-491379677-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzM2M3xpbWFnZS9qcGVnfGltYWdlcy9oMzkvaDM0Lzg5NzgzNTg5NjAxNTguanBnfDdkODMyOTEzNjk5Zjg2N2ZiZTkyOGM3Zjc5ZDg5MTJjY2YzZDVlMWI3YmQ3ZDAyNjMwZjM5NTA4MjY1MGFjNmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A83" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3180" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "13 hours 30 mins" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD B1/3/5/7/8/20/28 TDD B38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6763T Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.31" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ARM Mali G71 MP2 770MHz GPU
  • \n
  • Multi-touch" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8a"), + "name" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Black", + "description" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Black", + "price" : "174", + "sku" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491379708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzQzN3xpbWFnZS9qcGVnfGltYWdlcy9oNjAvaDVlLzg5ODE2NTcwNTkzNTguanBnfDVjOGI3MDg3MjU3NWI1YTMxNzA2Zjg2ZjAxNTE0Yzk0Y2I1ZmRhYmZlNmIxNjM2ODliMTA0MDE2ZDM3M2NkNDM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE:B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425 processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8b"), + "name" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Gold", + "description" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Gold", + "price" : "174", + "sku" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491379707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjcyM3xpbWFnZS9qcGVnfGltYWdlcy9oZWUvaGViLzg5ODE2NjExMjI1OTAuanBnfDk0ZGNjYjVmMjcxNGFmNzZmOWE4NDZhYWQwNTY2NGY3MzZlYTE3Mzk3ZTM2MDUyMTRhOTY1MGJmZTc4NWU5ZDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE:B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8c"), + "name" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "247", + "sku" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A83-Smart-Phones-491379679-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODk3M3xpbWFnZS9qcGVnfGltYWdlcy9oYTkvaDg5Lzg5OTM0MTQwODY2ODYuanBnfDE1ZjdlM2UwNzU3NTAwZTRiNTkwYjM1ZjA3MjQwNTc2YmZlMWRkMDZhZDc4ZWZiZjBiZDgzYThkZDg0Y2ZjMDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A83 (2018)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3180" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: (B1/5/8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: (B1/3/5/8)
  • TDD: (B38/40/41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6763T" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.31" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8d"), + "name" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "description" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "price" : "203", + "sku" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491419865-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDc2NnxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaGU3Lzg5OTM0NTIwOTc1NjYuanBnfDE0NTgyNGE3YzIyOTczZGU1YTViMGQ3ZDlmOTlmMDJmZmE5MDRlYzUxMWM4N2Y5NzY2OGI5ZTBmMmU0M2I3ODg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38/40/41
  • FDD: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.58" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8e"), + "name" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Champaign Gold", + "description" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Champaign Gold", + "price" : "102", + "sku" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Champaign Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Pro-Smart-Phones-491419891-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTA0OXxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaGE0Lzg5OTM0MTY3MDgxMjYuanBnfGM3YmYwNjUyODE4ZTY0MmNkNjliOWYyNGJhMGRhM2U0ZWY0MzBkMjYxYjZhYmMwMWRmMGRmNmVmNzBiY2IzNDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champaign Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: 2300/2500 MHz B40/B41
  • \n
  • FDD: 2100/1800/850 MHz B1/B3/B5
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8f"), + "name" : "Vivo Y83 Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Vivo Y83 Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "232", + "sku" : "Vivo Y83 Smart Phone 32 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y83-Smart-Phones-491419873-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDM4NHxpbWFnZS9qcGVnfGltYWdlcy9oYWEvaDEwLzg5OTM0NjE2MDAyODYuanBnfDRjNWQzOWJiZWFjMjM5MTk3MTkxNjk5Njg2ZTE5MDkyZDBhMTgzMGI1YWFiMDc1OGI0OWI0OGQ3N2Q2YjY2MTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y83" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/B3/B5/B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/3/5
  • TDD: B38/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Mediatek Helio P22 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.52" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d90"), + "name" : "Vivo V9 Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "description" : "Vivo V9 Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "price" : "348", + "sku" : "Vivo V9 Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V9-Smart-Phones-491419863-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTMyMnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDZkLzg5OTM0NDQ4ODg2MDYuanBnfGYxNDMyZmJmYWFlNDY3ZjExYzliMTk3ZjU2ZTk2Y2MyYTIzZmU0YTYxN2M3MTMxNzIwNDRkMGNlNThlMTMwYTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sapphire Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 ( Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/3/5/8
  • TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 626 Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d91"), + "name" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "232", + "sku" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Z10-Smart-Phones-491419990-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzM5OXxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDEzLzg5OTg0NzU3NTk2NDYuanBnfGQ5MzJiMTg3NTI5ZTcxNWM5ZWZjM2U4NzI5NzM3MzY5N2UzYjdhYzNhYmYwMjZjNTk0OGVkYWZhMWYwMTVlYTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Z10" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3225" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Octa-core 64-bit" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d92"), + "name" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Dark Purple", + "description" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Dark Purple", + "price" : "174", + "sku" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Dark Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTg4NXxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDY2LzkwMDc2NDUzMjczOTAuanBnfGFiZDkzODRkZWQ2ZjkyYWQ5NTdjMTY4ZDVlNTZlZWUxMDdlNDUwYWNlZDVhNmU3YmJkNTBmNmRkNzEyMjE2OGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d93"), + "name" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Dazzling Gold", + "description" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Dazzling Gold", + "price" : "392", + "sku" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Dazzling Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/vivo-v11-pro-Gold-Smartphones-491420226-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzgxOXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDg5LzkwMjY3OTk1NjY4NzguanBnfDJiODA2MThmMGMyNGU3Yjg2OWU2M2MwY2IzYjE2ODJmZGU1NDUwYTg3MGQ5NGQxNWIyYTM3YjMzNTU0M2UxMGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dazzling Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11 pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.28 cm (6.41 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android Oreo 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/7/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 660AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d94"), + "name" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Twilight Blue", + "description" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Twilight Blue", + "price" : "377", + "sku" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Twilight Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F9-Pro-Blue-Smartphones-491420189-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzM0OHxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaGVmLzkwMTI1NzEwMTMxNTAuanBnfGU4YzY1Y2JmNmU0ZDhhZDIzNzIzODkzN2YxODhkMTE5ZTZmZDdiODBmNzRjMzMzMDQwMTU5YTAyYjYwMGY3NmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Twilight Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d95"), + "name" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "145", + "sku" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71i-Mobile-Phones-491420052-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDgzNHxpbWFnZS9qcGVnfGltYWdlcy9oMTkvaGZiLzkwMTU3NDI5MjI3ODIuanBnfDI5ZTgzOWI2OGRiNzQ5NTA3NmU4YmRjMGU1YzkzZjU1ZDI0MDM1ZDc4OWY4NmUyNjk4MTRkOWRhNWM2ODcwZjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE: B38/40/41
  • \n
  • FDD LTE: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d96"), + "name" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Matte Black", + "description" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Matte Black", + "price" : "145", + "sku" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Matte Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71i-Mobile-Phones-491420053-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQzNnxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaGZjLzkwMTU3NDQyMzM1MDIuanBnfDk2NTY3MWRiODQ5YjI4Zjg3MzBiMDU2ZjlkYWJjNWE0OTA2Yzc3YTQxNWIwZmY2OGM3OTYwMDNhNWJkNDNlZjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE: B38/40/41
  • \n
  • FDD LTE: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d97"), + "name" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "247", + "sku" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y83-Pro-Mobile-Phones-491420157-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODQxNXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaGRlLzkwMTU3NTM4MDE3NTguanBnfDg3ZGI2MmE5NTMxMDlkODAxMGJlZTNhYWEzNjU3OWI2ZTIyYjZkNDVhNmExZWE0ZGRkYjBlOWUwYzhhOWM2MWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y83 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/B40/B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6762 (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d98"), + "name" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Red", + "description" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Red", + "price" : "232", + "sku" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A5-Mobile-Phones-491472934-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODIxMHxpbWFnZS9qcGVnfGltYWdlcy9oNmIvaDQ0LzkwMTU3NDg4MjEwMjIuanBnfGM2MzQxMTI5YmI5NDVmM2ZhZWM2YmIyMWMyNzJmZTc3YzdjOTc1OTk1MzRmMzY2OWRlMDdmNDA2YTlmOWYyYWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TD LTE: 38/40/41 (2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d99"), + "name" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Blue", + "description" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Blue", + "price" : "232", + "sku" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A5-Mobile-Phones-491472935-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjcyOXxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaDdiLzkwMTU3NDgyMzExOTguanBnfGVlN2I4ZmUyNzI4OGY4MjQ3YmFkNmRlY2UxNDA2MDdjNzlhM2I2NDNlYjYxYTRkZTRmZWY2ZTIwNTgwMzU0OTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TD LTE: 38/40/41 (2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9a"), + "name" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "232", + "sku" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Z10-Mobile-Phones-491419991-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjg1N3xpbWFnZS9qcGVnfGltYWdlcy9oNDgvaDgyLzkwMTU3ODg1MzU4MzguanBnfDZmYmUxNWNiYzQ5MTEyMjE2OTFiOWYwYzQ3NjMxY2M4ZThhYzk1YmI2MjVkZDJhMjRiM2NhYTU2NDgzNjEzYmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Z10" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 (N)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3225" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Octacore 64-bit" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 2.15 mm narrow bezel" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9b"), + "name" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "203", + "sku" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y81-Smart-Phones-491420062-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODQ3NXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDc0LzkwMTg5MzcxNDc0MjIuanBnfDczOGUzYTQ3OWE2OTIyYmIwNmFkN2U1ZWZkOTE1MDQ0N2I0MmU4MzYzNDVlNjJiYzdjNTRkN2U0M2I0M2M2NzA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y81" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6762 Octa Core (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9c"), + "name" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "203", + "sku" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y81-Smart-Phones-491420063-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODkxOHxpbWFnZS9qcGVnfGltYWdlcy9oMWYvaDI1LzkwMTg5Mzc0NzUxMDIuanBnfGQ2NmUxYTlmY2MzYmEyZGY4ZTZmMWFhYWY3NDExYmU0NWMyMjQ0NWQwOTUxNWYxMDFiMTU1YjJkZGZlYjRkOTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y81" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6762 Octa Core (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9d"), + "name" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Champagne Gold", + "description" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Champagne Gold", + "price" : "218", + "sku" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Champagne Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN6-Smart-Phones-491419900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzYyfGltYWdlL2pwZWd8aW1hZ2VzL2g0NS9oMzcvOTAzMTY3OTUwODUxMC5qcGd8YTIyNTU2N2YzOTQyNDFhYzA0MjE3ZTUyMzc1NTVmNzA1MDE0Yjk1ZGRiOGI1NjczZGI3ODMzMGE2M2Y2YjczNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN6" + }, + { + "attributeName" : "Series", + "attributeValue" : "iClick" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/B3/B5/B8
  • \n
  • LTE TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9e"), + "name" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "description" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "price" : "218", + "sku" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN6-Smart-Phones-491419901-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODMzfGltYWdlL2pwZWd8aW1hZ2VzL2hmOS9oMGIvOTAzMTY4MDE2Mzg3MC5qcGd8MDNlNTgyZmViMmQ3MjgzNWJlMWY5MDVlOWU5ODEwYTcwMThmNGIwNGFmNGIwMWJkMTFkN2NjNDQyMzM5MjIyMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN6" + }, + { + "attributeName" : "Series", + "attributeValue" : "iClick" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/B3/B5/B8
  • \n
  • LTE TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9f"), + "name" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "189", + "sku" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Twin-IA5-Smart-Phones-491420216-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTc2NnxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaDIxLzkwNDM3ODIxMzk5MzQuanBnfGNmZjA1Njg0NGRhNDVlMmYwZjBkN2E2Y2I4NjNjZWRjMWMxYjU2NjFjMDYxYThiZjEyZTI3NzRkYmM0ZTMyZDE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IA5" + }, + { + "attributeName" : "Series", + "attributeValue" : "iTwin" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MSM8917 Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.63" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da0"), + "name" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "189", + "sku" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Twin-IA5-Smart-Phones-491420215-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzI5OXxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDg5LzkwNDM3ODE4MTIyNTQuanBnfDdmNDYwZTdlNWM3ZjY4MDI4NWY3MmM0NTBjNzQxNTFlMDgyZGNiNTg1OTIwZDY2NjA5NTZlOTUwNGM0Y2Q5YmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IA5" + }, + { + "attributeName" : "Series", + "attributeValue" : "iTwin" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MSM8917 Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.63" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da1"), + "name" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "124", + "sku" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Sky-IN3-Smart-Phones-491419899-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTQyM3xpbWFnZS9qcGVnfGltYWdlcy9oZDYvaDM1LzkwNDM5Mzk2ODg0NzguanBnfGFhOTk4Y2M4MWZiYWQxNzg4YmJlYTYzYTI0ZTJhZjk1ZGQ2Yjc2YWIyZGM3NDViMmY4ZDAzNWRhNTZhNmE2NTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da2"), + "name" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaring Gold", + "description" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaring Gold", + "price" : "276", + "sku" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaring Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smart-Phones-491503393-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTY5fGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oMDMvOTA3OTgxMzE3NzM3NC5qcGd8MDdlYzk0NWFiZWI3NTIwNWUzODU3ZGRhZjc0NmIwYTNmZmZhY2IyZjM3YWRjNGY1N2E5NDBhNTY1ZmRlMGRhZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaring Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TD-LTE: 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da3"), + "name" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaring Gold", + "description" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaring Gold", + "price" : "247", + "sku" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaring Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smartphones-491503525-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzA3fGltYWdlL2pwZWd8aW1hZ2VzL2gyZS9oOTYvOTA5MzQ1NjU5MjkyNi5qcGd8Yjg4Y2UxOTQwNDY2YTVhMzA3Y2NhNTFiMTA1MGJlNzFmOWE4ZjE5ZTQzMGYzODBlZWFmMmUzOTdmNzJhNzEzNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaring Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "410 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "32 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/3/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da4"), + "name" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "price" : "256", + "sku" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5-1-PLUS-Smartphones-491503532-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzgwfGltYWdlL2pwZWd8aW1hZ2VzL2hmMC9oZjcvOTA5Mzg4MDU3ODA3OC5qcGd8ZjgyMTU0ZmQ1NDU5ZTdlMjVkNTUwMGI0OWIyZmFiMTc3NTQ5NzNhOTBkNzIyZmNmNTgwNjMzMzk1MDUyZGUxMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "6.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 9.5 hours
  • \n
  • Video playback time: Up to 9 hours
  • " + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 14.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto 20.5 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B850/900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/8
  • \n
  • TDD: 40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da5"), + "name" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Midnight Gloss Blue", + "price" : "192", + "sku" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Midnight Gloss Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-5-1-PLUS-Smartphones-491503530-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODI4fGltYWdlL2pwZWd8aW1hZ2VzL2g1NC9oYjMvOTA5Mzg3MzA0MTQzOC5qcGd8MzM1YzNhODMwOTA2ZmUyNmE3YTNiNjAzZmM3MGJmNmJhMTU1OGI5ZmQ4YTAzYTA2NjdkMTYyNThkNjc2MjM3OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "TDD: B40/41" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes - Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da6"), + "name" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss Black", + "description" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss Black", + "price" : "192", + "sku" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-5-1-PLUS-Smartphones-491503529-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjY1fGltYWdlL2pwZWd8aW1hZ2VzL2gwOC9oZTkvOTA5Mzg3MjcxMzc1OC5qcGd8ODk1ZTE4MTVhZTk4ZDk1MmQ1NDNhYTZjZDNkMmQ2ZmJiOGNhYjcyNjhkNDdkYWE2ZDlhOWVhMWMxZDllODQ5Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "TDD: B40/41" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes - Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da7"), + "name" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "description" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "price" : "256", + "sku" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-1-PLUS-Smartphones-491503533-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTc4fGltYWdlL2pwZWd8aW1hZ2VzL2hmYS9oZWMvOTA5Mzg4MDkwNTc1OC5qcGd8MDA5YzJmYjRmNGZlOGZhZWFkYzE4ZjM5MTZjNzViMWFmMzAxMzZiMmRmYjVlOTY2NGMyZWFlMzA5MDdkZThkOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "6.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 9.5 hours
  • \n
  • Video playback time: Up to 9 hours
  • " + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 14.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto 20.5 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B850/900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/8
  • \n
  • TDD: 40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da8"), + "name" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "406", + "sku" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Plus-Smart-Phone-Blue-491419854-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjMxNnxpbWFnZS9qcGVnfGltYWdlcy9oYTkvaGFmLzg5NjA2ODc1MzgyMDYuanBnfDlhODhiNDMyMzY3YmRhNjJmMmJhNjg0ZmIxY2YwMDIwYzY4ZjA5ODZmZjQxOGRjOTA5NDVlYjgzZTE3ZTgwM2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 21 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Snapdragon Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.02" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da9"), + "name" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Matt Black", + "description" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Matt Black", + "price" : "203", + "sku" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Matt Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y81-Smart-Phones-491420130-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njk0N3xpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDRiLzkwMTg5MzY3NTQyMDYuanBnfDVhYWFlYWVlZmU2MTYzZGVkZjllOTJjNTIyZjA4OTMwMGYzZmU3N2RmZTkzMTUyOTY4MThhMWM2MjVlOGVhODU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matt Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y81" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6762 Octa Core (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637daa"), + "name" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Supernova Red", + "description" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Supernova Red", + "price" : "392", + "sku" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Supernova Red", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V11PRO-Smart-Phones-491503384-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTYzfGltYWdlL2pwZWd8aW1hZ2VzL2gxNC9oNDgvOTA3OTgxMzgzMjczNC5qcGd8YjRiMDQ0NjkzNzY5NmU1NmIxOTlkNDRjNjc2MmJjNjNmNjI4OTU4NWU5MmI2MTBlMjc5NzMxZTBkZDc3NjdhNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Supernova Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.29 cm (6.41 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/7/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 660AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dab"), + "name" : "Apple iPhone XS Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone XS Smart Phone 64 GB, Space Grey", + "price" : "1448", + "sku" : "Apple iPhone XS Smart Phone 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-64GB-Space-Grey-491420318-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjYzN3xpbWFnZS9qcGVnfGltYWdlcy9oMDAvaDhjLzkwMjU5ODg0Mjc4MDYuanBnfGJjMzM5Nzg3OTc3Mjg1N2JkMTk4ZTE0YzE5MjI4MGFjMWFjNDMxZGM1ODExNDVlNzAzOWM2ZmZhZDAzM2JkYWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dac"), + "name" : "Apple iPhone XS Smart Phone 64 GB, Gold", + "description" : "Apple iPhone XS Smart Phone 64 GB, Gold", + "price" : "1448", + "sku" : "Apple iPhone XS Smart Phone 64 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-64GB-Gold-491420320-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDMyNHxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaDRhLzkwMjU5ODYwNjg1MTAuanBnfDdmZTNiZTk2YTFlY2ZkOWQ1NzRhMmQ3OGY2ZWQ4YzQ1N2Q2ZWIzMDRlNTM3OWZmOTJmYzlmMGY1ODNjYjJmZmE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dad"), + "name" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Aurora Green", + "description" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Aurora Green", + "price" : "435", + "sku" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Aurora Green", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F11-PRO-Smart-Phones-491570772-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjU1fGltYWdlL2pwZWd8aW1hZ2VzL2gwZC9oY2QvOTE0MjMyNjMyOTM3NC5qcGd8MDY4ZDExNDc0ZjhmNDBmODU4MmNjYWUwODZjZGVjNDgwZjk4MDY0NmFlNDM2NWYyN2RiNzYxOTRiNzFhYzM4MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.5 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Green" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6 (based on Android 9)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Audio Playback: Up to 118.7 hours
  • \n
  • Video Playback: Up to 12 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "
  • GSM: Up to 36 hours
  • \n
  • WCDMA: Up to 26.7 hours
  • " + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz MediaTek Helio P70 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 16 million colors" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dae"), + "name" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Topaz Blue", + "description" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Topaz Blue", + "price" : "508", + "sku" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Topaz Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V15PRO-Smart-Phones-491570742-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDY5fGltYWdlL2pwZWd8aW1hZ2VzL2hiMi9oOWUvOTE0MjMzMTI0NDU3NC5qcGd8NzcyYTNhMmVjN2Q0ZDI3ZTY1YjhjOWE1MTM3ZmVkNzE1MjU5ZGFjYzgzYjk5MmJkZjYxYzM2ZjY5N2VmYTc1Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Topaz Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/3/5/8
  • \n
  • LTE TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • AI Triple Camera Shoot Like a Pro
  • \n
  • 48 Million Quad Pixel Sensor Capture the Night
  • \n
  • Ultra FullView Display Unhindered Vision
  • \n
  • Spectrum Ripple Design Stand Out from the Crowd
  • \n
  • Ultra-Smooth Gaming" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637daf"), + "name" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Ruby Red", + "description" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Ruby Red", + "price" : "508", + "sku" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Ruby Red", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V15PRO-Smart-Phones-491570743-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzgzfGltYWdlL2pwZWd8aW1hZ2VzL2g5MC9oN2YvOTE0MjMyODYyMzEzNC5qcGd8YTBhZWQ0ZmI2YjM4NDFhZDYwOTFlMGRjMDRlZjQ0YWFkNTVlZDhlYzk5OTVlMGRlNTU5Y2E0Yjk5NDk2M2Q5MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ruby Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/3/5/8
  • \n
  • LTE TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • AI Triple Camera Shoot Like a Pro
  • \n
  • 48 Million Quad Pixel Sensor Capture the Night
  • \n
  • Ultra FullView Display Unhindered Vision
  • \n
  • Spectrum Ripple Design Stand Out from the Crowd
  • \n
  • Ultra-Smooth Gaming" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db0"), + "name" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Ocean Blue", + "description" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Ocean Blue", + "price" : "1067", + "sku" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Ocean Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Note-9-Smartphones-491420113-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTgxNHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDJiLzg5OTgyOTgwMjYwMTQuanBnfDYwMDY3MmViY2Y2NDVhYmNjNjQxMjhkNjUwMmUwNDA3ODdkMjMyYmI0MWZiYjExNGFkNmQ1YmQwZWY1YTg5ZWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db1"), + "name" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Blue", + "description" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Blue", + "price" : "140", + "sku" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-BLU-2GB-32GB-6-2-491550840-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjkwMXxpbWFnZS9qcGVnfGltYWdlcy9oNmIvaDc0LzkxMDg5MDk4NTA2NTQuanBnfGUwMzgwMDZmM2NiYWVkZjVhOGQ2OTYyYTMwN2MxNTZiMmY3MDllNDc0MmU2MTYxNGJjODc5NjE0ZGE2ZGU1YmE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7884 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db2"), + "name" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "251", + "sku" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A30-BLK-4GB-64GB-6-4-491550843-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzQwMnxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDZlLzkxMDkyMDgxMzc3NTguanBnfDQ3NTMzODFlYTlkNjM3NzM5NTAxODA4NWNjMTMxODdkNjU2MWY3NDFkOTVlNDI4ZjM3ODUzMDVmZTkyMTRkNzg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A30" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7904 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db3"), + "name" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "251", + "sku" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A30-BLU-4GB-64GB-6-4-491550842-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzM4fGltYWdlL2pwZWd8aW1hZ2VzL2hjNy9oMDIvOTEwOTIwNTEyMzEwMi5qcGd8MDFiNGZlMWE4M2UxN2M0OTNiYjA3YzM0NzIxZDJlOGQ4MjJkNTEyN2YwZDkxZjU0MmFiOWRjYTRmZTcwMDM0YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A30" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7904 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db4"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Black", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Black", + "price" : "367", + "sku" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLK-6GB-64GB-6-4-491550849-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTE5fGltYWdlL2pwZWd8aW1hZ2VzL2g1Yy9oYzUvOTEwODkzOTUwNTY5NC5qcGd8ZjJhMTQ4MDdkYmE3NjBjZTdmMmVhOGYxOGIxYTE5ZTE2OGU1YmQyMGRiNGEzYzhhZTI1ZjJjMDRkZWE0YmRhNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db5"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, White", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, White", + "price" : "295", + "sku" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-WHT-4GB-64GB-6-4-491550847-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTA3fGltYWdlL2pwZWd8aW1hZ2VzL2hlZS9oMzUvOTEwODkzMTQ0NDc2Ni5qcGd8MDBhYjNhMzdkZDljMDRjMTI0YmNkMjg0NjBkOTc1MDc4MzlhMmVmMmY0MjlmZDE4NzRmYWM4NTRjMWNkYzUzMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db6"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "295", + "sku" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLU-4GB-64GB-6-4-491550845-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzcwfGltYWdlL2pwZWd8aW1hZ2VzL2g4My9oODUvOTEwODkzMTc3MjQ0Ni5qcGd8NWIyNDk2Y2Y4Njg5ZjEzNWJlNTYwZjY4ZGJmODE2MTViNmEyZWI2MmFlMGQ4YTg2YjIwMTJmMzU4MzdmNTIzZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db7"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "295", + "sku" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLK-4GB-64GB-6-4-491550846-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTE5fGltYWdlL2pwZWd8aW1hZ2VzL2hkNi9oMjQvOTEwODkzMjc1NTQ4Ni5qcGd8MjZhNjE1NTVkZDYyYjUxZDg1YTYzODhlYzE4OGY5MTE2YzY1MWMyOTFkYWM2MDA3YjA1NTZlNTRhMTAyMTUzZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db8"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, White", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, White", + "price" : "367", + "sku" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-WHT-6GB-64GB-6-4-491550850-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTA3fGltYWdlL2pwZWd8aW1hZ2VzL2g2MC9oNWIvOTEwODk0MDE2MTA1NC5qcGd8NDgwZGZkYTMxMDNiN2RmODZjMDBhZTg0MTM0ZDI3MmU5YmU2NGNhNDMxZTM5NzI1MDgyNWUzNjBhZjQxZDdjNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db9"), + "name" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "187", + "sku" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A20-Blue-OC-3-32-6-4-smart-phone-491551067-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTk2fGltYWdlL2pwZWd8aW1hZ2VzL2g5Mi9oYzAvOTEyMjI4Njc2NDA2Mi5qcGd8MmE1M2E4NDc2MDliOTQ1MWE5MDMyMGUxZDhkZTEwZjQ3NzY0ZjUzYjRkNTlhYTY0ZjYzYWVjODM0MGM3M2ViZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A20" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.20 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 12 hours
  • Internet Usage Time(LTE) - Up to 13 hours
  • Internet Usage Time(Wi-Fi) - Up to 13 hours
  • Video Playback Time - Up to 21 hours
  • Audio Playback Time - Up to 82 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 26 (3G WCDMA)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 (LE up to 2 Mbps)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Location Technology - GPS, Glonass, Beidou
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6GHz, 1.35GHz Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dba"), + "name" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "187", + "sku" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A20-Black-OC-3-32-6-4-smart-phone-491551068-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODk1fGltYWdlL2pwZWd8aW1hZ2VzL2hkOC9oZWYvOTEyMjI4NjQzNjM4Mi5qcGd8OTk4ZDM0NWRmZjRkM2ExYjY5NzY5ZmJhMjNhNjIwOGFhMmJhYWJjNzcxOWZjOWRkYWJkMzFiY2JhMDMxZDc0NQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A20" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.20 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 12 hours
  • Internet Usage Time(LTE) - Up to 13 hours
  • Internet Usage Time(Wi-Fi) - Up to 13 hours
  • Video Playback Time - Up to 21 hours
  • Audio Playback Time - Up to 82 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 26 (3G WCDMA)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 (LE up to 2 Mbps)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Location Technology - GPS, Glonass, Beidou
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7884 Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbb"), + "name" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Red", + "description" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Red", + "price" : "140", + "sku" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-Mobile-491551066-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDcyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Yi9oMjUvOTEyMzU5MzI1Njk5MC5qcGd8ODM4YjkyY2IxYTQ3NzVkYmM0MDNiYWNlZmE5NDk4MDA0NDEzZTVkZjI5ZTMxOTYwYmJiMzYwMmZjNmJlNzJhNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 15 Hours
  • \n
  • Internet Usage Time(LTE): Up to 19 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 19 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 72 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1(2100), B2(1900), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD-LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7884 Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbc"), + "name" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Black", + "description" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Black", + "price" : "450", + "sku" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A70-6GB-Black-OC-6-128-6-7-Smart-Phone-491570550-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU4N3xpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGYyLzkxMjYzNjM1NjIwMTQuanBnfDc2YjZkOTcxNzU2ZmJiYzRjMDYxYjVkYzQ4Y2JhYWQ1NTZhY2JjNTAyNjk0ODY4ZGJiZmZjYzEyOTA1Mjk3Njc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A70" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.03 cm (6.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 14 hours
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 16 hours
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Upto 16 hours
  • \n
  • Video Playback Time (Hours): Up to 24 hours
  • \n
  • Audio Playback Time (Hours): Up to 128 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto to 28 hours ((3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbd"), + "name" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, White", + "description" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, White", + "price" : "450", + "sku" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A70-6GB-White-OC-6-128-6-7-Smart-Phone-491570551-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTU5fGltYWdlL2pwZWd8aW1hZ2VzL2hiZi9oNGEvOTEyNjM2NTY1OTE2Ni5qcGd8NmIwYTU3ZTI3NDk5Yzc0MDVlNzI3MDUyYTRlNTg3ZTU3MzI2OTcyYWE1ZjRhYmQ5M2Y5ZmQ2OGRlZjlkODAwZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "A70" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.03 cm (6.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 14 hours
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 16 hours
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Upto 16 hours
  • \n
  • Video Playback Time (Hours): Up to 24 hours
  • \n
  • Audio Playback Time (Hours): Up to 128 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto to 28 hours ((3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbe"), + "name" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Blue", + "description" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Blue", + "price" : "450", + "sku" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A70-6GB-Blue-OC-6-128-6-7-Smart-Phone-491570549-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDY5OXxpbWFnZS9qcGVnfGltYWdlcy9oMGYvaGEzLzkxMjYzNjM4ODk2OTQuanBnfDBkOTM5Y2ExZjM1YmY0ODBkOTY4NTYzMDk5NDk3Y2JhMDBmYzVmM2NlYjQ0MDNkYzRiMjBjMGM5MWE4MjZjYjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A70" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.03 cm (6.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 14 hours
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 16 hours
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Upto 16 hours
  • \n
  • Video Playback Time (Hours): Up to 24 hours
  • \n
  • Audio Playback Time (Hours): Up to 128 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto to 28 hours ((3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbf"), + "name" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Black", + "description" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Black", + "price" : "86", + "sku" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-GALAXY-A2-CORE-Mobile-Phones-491551071-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDc1NXxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDU0LzkxMzI0NTExNjgyODYuanBnfDdhZDU5YzdmNjllZmQ0YjRkNTIzOGI2OThkOTkzMzFjYTQyODY2YzZhMjA2MWJiMzI3ZmE4OTdkNjQ0ZTYzYzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.64 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 15 Hours
  • \n
  • Internet Usage Time(LTE): Up to 18 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 16 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900)
  • \n
  • TDD LTE: B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7870 Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc0"), + "name" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Gold", + "description" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Gold", + "price" : "86", + "sku" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-GALAXY-A2-CORE-Smart-Phones-491551072-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTA2fGltYWdlL2pwZWd8aW1hZ2VzL2hkYy9oZjMvOTE0MTU2NTU1NDcxOC5qcGd8NTNlODY4MTYxZGY2NzdlMmQ4ZGQ4N2ZjYmZhMTY3NDU0ODk2ZjI3ZDM4ODc3MTA4OWM2MDBjZGQ2ZTI1MzJmZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.64 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 15
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 18
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Up to 18
  • \n
  • Video Playback Time (Hours): Up to 18
  • \n
  • Audio Playback Time (Hours): Up to 75
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "
  • Talk Time (3G WCDMA) (Hours): Up to 16
  • " + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900)
  • \n
  • TDD LTE: B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa Core Exynos 7870" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • FHD (1920 x 1080)at 30fps Video Recording Resolution
  • \n
  • Android Operating System Type" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Travel Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc1"), + "name" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Clear White", + "description" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Clear White", + "price" : "276", + "sku" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Clear White", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-G7-Smart-Phones-491550768-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzIzfGltYWdlL2pwZWd8aW1hZ2VzL2hmOS9oYjIvOTEyMDI1Mzk2ODQxNC5qcGd8NTkyZGFlYThiMGEwYjQ1ZWY2Y2QxOGNiZGI1OTc4YmJlMWY3ZGFiOGM2ZjRkM2VmNzFkODE0ZDk2ZTdlYmJjMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clear White" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE band 1/2/3/4/5/7/8/18/19/20/26/28
  • \n
  • TD-LTE band 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 632 Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "172" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face unlock" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc2"), + "name" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, White", + "description" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, White", + "price" : "232", + "sku" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Moto-Android-One-White-OC-4-64-6.2-SmartPhone-491550770-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYzNHxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaGMzLzkxMjAyNTQ2MjM3NzQuanBnfGY3ZjlkODgxM2Y0ZDEzOGU5ZDg3MDE0ZGY1YTUzY2I2NzhmNGM4OGUyNjNlMTE1N2ZjMDUyNjhhNWU2NTY5MTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "Android One" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15 cm (5.9 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1/3/5/7/8/20/38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice control: Google Assistant
  • Bottom-ported speaker
  • Splash-resistant P2i
  • " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc3"), + "name" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "description" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "price" : "276", + "sku" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-G7-Smart-Phones-491550767-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzIzfGltYWdlL2pwZWd8aW1hZ2VzL2hhYS9oOTEvOTEyMDI1MzY0MDczNC5qcGd8NmIwMDJiYTg0Njk4NGY2N2Q5NjMwNWYwZmJiMTIwY2JkMDU5YzEyMjE1NWJlZDdmYWM2YzQwOGI5MmIyMDc2Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE band 1/2/3/4/5/7/8/18/19/20/26/28
  • \n
  • TD-LTE band 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 632 Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "172" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face unlock" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc4"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Coral Blue", + "price" : "1015", + "sku" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Coral Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Coral-Blue-491379609-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI5MHxpbWFnZS9qcGVnfGltYWdlcy9oNzYvaDg4Lzg5MjE1Mjg1OTg1NTguanBnfGE4NjI1ZThkYmIzM2RhMWJhMTQwMTljMzAzNzQ0NDJjMDNhMTU4MDY4NzJkZjVmNTE5MjAxYTIyYWFmMzU5NDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc5"), + "name" : "Samsung Galaxy S9+ Smart Phone 256 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9+ Smart Phone 256 GB, 6 GB RAM, Midnight Black", + "price" : "1145", + "sku" : "Samsung Galaxy S9+ Smart Phone 256 GB, 6 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-256-GB-Midnight-Black-491379612-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2g5ZS9oYzAvODkyMTUwNzY5MjU3NC5qcGd8ZjM0MjMyNzQ0MDhmMWM3NTkyMGMzNjlkOWZkYzUzZjg2YTBjYWUxYjg4MDY2M2VjYmI2YmUzNzM1ZTMzNmViNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc6"), + "name" : "Apple iPhone XS Max Smart Phone 256 GB, Gold", + "description" : "Apple iPhone XS Max Smart Phone 256 GB, Gold", + "price" : "1811", + "sku" : "Apple iPhone XS Max Smart Phone 256 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-256GB-Gold-491488032-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg4NnxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGI0LzkwMjU5ODAxMDQ3MzQuanBnfGVhNTIxMDBjNzNjYzlhM2E3YTAyYmVmZGNkMmE5YzcyZWIxZmYxOTZhMGQyOGE5MjJkYTRlYmIzYjU3ZWY4YmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc7"), + "name" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Nebula Purple", + "description" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Nebula Purple", + "price" : "218", + "sku" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Nebula Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y93-Smartphones-491503524-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTEzfGltYWdlL2pwZWd8aW1hZ2VzL2hiZS9oZmQvOTA5MzQ0ODcyODYwNi5qcGd8NTE1NDg1ZGMzYTJiZDA2ZGMyMTQ2OWY4NTZiODRlZTI0YzRjMWE2YzljYzAzM2UzMmYyMTJmODlhMzY5OTI5Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Nebula Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y93" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TDD-LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Helio P22 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc8"), + "name" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Red", + "description" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Red", + "price" : "187", + "sku" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A20-Red-OC-3-32-6-4-smart-phone-491551069-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTkzfGltYWdlL2pwZWd8aW1hZ2VzL2g0YS9oZjUvOTEyMjI4NzA5MTc0Mi5qcGd8MzRmNWJjYTlmMDZhNTQxMzY2N2JiMDg1YjViNjE5ZjM0NjZkYjhkNzYwNTUyNjc1YWJiMTE5NzdmN2EzZTkwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A20" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.20 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 12 hours
  • Internet Usage Time(LTE) - Up to 13 hours
  • Internet Usage Time(Wi-Fi) - Up to 13 hours
  • Video Playback Time - Up to 21 hours
  • Audio Playback Time - Up to 82 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 26 (3G WCDMA)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 (LE up to 2 Mbps)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Location Technology - GPS, Glonass, Beidou
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6GHz, 1.35GHz Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc9"), + "name" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Midnight Blue", + "description" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Midnight Blue", + "price" : "356", + "sku" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Midnight Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-7-1-TA-1097-DS-4-64-IN-CM-BLUE-491503443-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTU4MXxpbWFnZS9qcGVnfGltYWdlcy9oMGUvaDVhLzkwNzQ2MDk2NTE3NDIuanBnfDhjZDQyNTU0Y2JkMTZhZWRhYWQ3NTQ0MjhjMTA0ODU2YTJkNTQ0MDE4MjZhZjJiNWZlOTNhODcwNWE0Yjc0ZTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Midnight Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.83 cm (5.84 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 636" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "160" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "Single speaker with smart amp" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 18W charger
  • \n
  • USB Type-C cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • \n
  • Headset
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (USB 2.0)" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dca"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "price" : "232", + "sku" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550760-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjU1fGltYWdlL2pwZWd8aW1hZ2VzL2gwZC9oODUvOTExMTUxNzY1OTE2Ni5qcGd8MTJiNjVhOTRhOTQ0NDAzNWIyNTg5OGMxOGM3MWE3NGFjOGFkZGRmMTkwZjc5ZTI4NWNiYzMwYTUzYWRlYzdjYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcb"), + "name" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaze Blue", + "description" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaze Blue", + "price" : "276", + "sku" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaze Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smart-Phones-491503394-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzMxfGltYWdlL2pwZWd8aW1hZ2VzL2hmYy9oNTYvOTA3OTgyMTY5NzA1NC5qcGd8YmZmMDdmZTZiNWU4Zjc1NzhmMTY3NDgyMTg2N2QwOGIzMmE5MGY3ZTEzOGQxYjhhYzAyMmNhZGM2Y2M1YTJiYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaze Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TD-LTE: 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcc"), + "name" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, White/Iron", + "description" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, White/Iron", + "price" : "202", + "sku" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, White/Iron", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-3.1-Smart-Phones-491420138-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDgxNnxpbWFnZS9qcGVnfGltYWdlcy9oZmIvaDE2LzkwMTg5MTk1MTgyMzguanBnfDEyZGQ0ZTVmOTM5NzZhYzMzNWQ4MGJiNDE3MGRmY2VlM2Q2MmQ4NzU1ODZmMDU4MDQ0YTY5MTEwMTI1NjcwZmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Iron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6750N Octa-Core 1.5 Ghz" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curved & Sculpted Display
  • \n
  • Gyroscope for AR Gaming
  • \n
  • Resolution 18:9
  • \n
  • Corning Gorilla Glass
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcd"), + "name" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Sunrise Red", + "description" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Sunrise Red", + "price" : "377", + "sku" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Sunrise Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F9-Pro-Red-Smartphones-491420188-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjU2OXxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaDkwLzkwMTI1NzEzNDA4MzAuanBnfGRjYzJmMGY4YjUyNzQyODY0ZjY2NmY5ZTVlNDIzMDczZmZmZDU3NDY4ODdhODE5YmJjNzE5MzcxNGU4M2EyMmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sunrise Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dce"), + "name" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "269", + "sku" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-64-GB-Blue-491419877-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjcyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Yi9oZmIvODk2MDY4MDc4Nzk5OC5qcGd8ZDNmOTA3ODkwNzQ5Mzg5M2Q0ZmM1MTQ1M2FjNGE4ZWRiYjQ0MTMwNDRkNjVmNWM4MTIxNzM1YThlNjI2NmM5NA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcf"), + "name" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Red", + "description" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Red", + "price" : "174", + "sku" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQyNnxpbWFnZS9qcGVnfGltYWdlcy9oZWYvaDU3LzkwMDc2NDU5ODI3NTAuanBnfDA2MDJlYmY1MTEwMjQ1MmE2OGVjZmU5MDhiMGU0YWJiOTc0ZmIwYWYwYmJjNjg4MDEyMDFlZGI3Y2JjZGM0ODg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd0"), + "name" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Thunder Black", + "description" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Thunder Black", + "price" : "435", + "sku" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Thunder Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F11-PRO-Smart-Phones-491570771-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTY1fGltYWdlL2pwZWd8aW1hZ2VzL2gxMS9oMzgvOTE0MjMyNDAzNTYxNC5qcGd8ZmYwNzIxNDY1ZjAzMWUzZjAxODEyZGViYWY4ZDE0M2U4ZDVhZWNjNjczYzYyZTVkZTkyOGM0NjMxNjFhZGYyYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.5 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Thunder Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6 (based on Android 9)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Audio Playback: Up to 118.7 hours
  • \n
  • Video Playback: Up to 12 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "
  • GSM: Up to 36 hours
  • \n
  • WCDMA: Up to 26.7 hours
  • " + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz MediaTek Helio P70 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 16 million colors" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd1"), + "name" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Blue", + "price" : "247", + "sku" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Plus-Blue-Smart-Phone-491488077-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzIwfGltYWdlL2pwZWd8aW1hZ2VzL2g1OC9oMjgvOTAzMzQzOTI0ODQxNC5qcGd8YWJjZWUxMGU4N2QyYzhiNjU0ODM4MmEyODMxN2MyMzA1YTZlZTBmMzc2OWUyMzMwYzhjYjRjZjdiYmQ5Y2U2Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "178" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "True HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd2"), + "name" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Red", + "description" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Red", + "price" : "251", + "sku" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A30-RED-4GB-64GB-6-4-491550844-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzE1NXxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaGE4LzkxMDkyMDU0NTA3ODIuanBnfDkxOTUzMDA5MmNmZDAzYWUxM2YwZjU2NzdjMzhkNWZmODc3MTBmZDQ4NGU1NjA5MmRiODM4M2MwYzVlY2VjZmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A30" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7904 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd3"), + "name" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "247", + "sku" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y83-Pro-Mobile-Phones-491420158-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODAwMnxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaDE4LzkwMTU3NTY0ODg3MzQuanBnfGUzOTU3NmExMzNhZWI4NTRjZDNhMjFhOGExNDVhYmU3YTcxMmY2MzkyMGU2ZWMxNmJhZjY0OTc2MDA4ZGI1MDI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y83 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/B40/B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6762 (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd4"), + "name" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Neon Purple", + "description" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Neon Purple", + "price" : "537", + "sku" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Neon Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-R17-Purple-8Gb-128GB-16-5MP-25MP-SmartPhone-491550999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjI3fGltYWdlL2pwZWd8aW1hZ2VzL2hlNi9oMzUvOTEyMDI3NTkyMjk3NC5qcGd8NmM2NjMwNDFiMTYyY2ZiZWQ5YmUzZTQ5NGZlODY0MWFkZGQ4ZTc5MjE3ZGNkYmNhYmI1YTFmY2M2NjkwNDJmNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.3 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Neon Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "R17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/2/3/4/5/7/8/20/28
  • \n
  • TD-LTE: Bands 38/39/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Qualcomm Snapdragon 670 octa core SDM670" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "182" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Headset" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd5"), + "name" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Ambient Blue", + "description" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Ambient Blue", + "price" : "537", + "sku" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Ambient Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-R17-Blue-8Gb-128GB-16-5MP-25MP-SmartPhone-491550998-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzE5fGltYWdlL2pwZWd8aW1hZ2VzL2hhNC9oZDIvOTEyMDI3NDYxMjI1NC5qcGd8NDUwZTViYzgxZmNlMGU1YjhmZDE0NWJjZGJhN2M4NzE3MWNiZDc4ZDhhNGY3NTc3Y2EzNjBkZmMyMGRiNzA5OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.3 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ambient Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "R17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/2/3/4/5/7/8/20/28
  • \n
  • TD-LTE: Bands 38/39/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Qualcomm Snapdragon 670 octa core SDM670" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "182" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Headset" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd6"), + "name" : "Apple iPhone XS Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone XS Smart Phone 256 GB, Space Grey", + "price" : "1666", + "sku" : "Apple iPhone XS Smart Phone 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-256GB-Space-Grey-491420321-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjYzN3xpbWFnZS9qcGVnfGltYWdlcy9oYmEvaDk0LzkwMjU5OTA2NTYwMzAuanBnfGJiMTlhYWJkODYyMzI3ODU2ZTc2NzM5OGZmZmUxMDk4NzZjNjViMmU2NDlhZWMyMDcxYjliY2YyMmNmNDk4NmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd7"), + "name" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, Black/Copper", + "description" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, Black/Copper", + "price" : "261", + "sku" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, Black/Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-with-Android-One-Smart-Phone-Black-Copper-491379647-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA4NXxpbWFnZS9qcGVnfGltYWdlcy9oOTAvaDhiLzg5MzQxOTEyMzUxMDIuanBnfGZkNDJmODk5N2JiMGM1NWE5MzI0NDU1Nzc2ZTBiZTg5N2M5YmE5OGEzZDllNzc4YWRkMGRhNTc4NGQxOTczYTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "6" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core Qualcomm Snapdragon 630" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.88" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.58" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Nokia USB-C Charger
  • Charging/data cable
  • Quick guide
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd8"), + "name" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, White/Iron", + "description" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, White/Iron", + "price" : "261", + "sku" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, White/Iron", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-with-Android-One-Smart-Phone-White-Iron-491379648-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjE5NHxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDQyLzg5MzQxODUzMzY4NjIuanBnfDA0Mjg2Y2QxYTQ3N2YzNjY5OTczNTU3MTRlMWFjOWI5YTEwNWIyYjVlMWY5ZTAwZTE0ZGE2N2I5NjU5NmI5ZWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Iron" + }, + { + "attributeName" : "Model", + "attributeValue" : "6" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core Qualcomm Snapdragon 630" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.88" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.58" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Nokia USB-C Charger
  • Charging/data cable
  • Quick guide
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd9"), + "name" : "Apple iPhone XS Max Smart Phone 256 GB, Silver", + "description" : "Apple iPhone XS Max Smart Phone 256 GB, Silver", + "price" : "1811", + "sku" : "Apple iPhone XS Max Smart Phone 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-256GB-Silver-491488031-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDM3NXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDVjLzkwMjU5NzYwNDE1MDIuanBnfGZiNmM1NjA4M2NmZTM2NjYxMWVmMzFkMTg1MDlkYzIyMTNmMTI2ZjE4NzU4MTdjODQzYWRiYWFlMGRjN2E3YjQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dda"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Caviar Black", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Caviar Black", + "price" : "609", + "sku" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Caviar Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-8-GB-RAM-Caviar-Black-491503314-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTU1NnxpbWFnZS9qcGVnfGltYWdlcy9oZGYvaGQ1LzkwNzA0NTYxNzY2NzAuanBnfDI1ZWZhZmNiMzEzY2Q5NTUwZWI0ODRmYTMxNDg4OWMwNDU0Y2M1YWZjMzJmZTU5YjQ2ZmI3MDA4NDU4ZTMyNjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Caviar Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddb"), + "name" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Black/Chrome", + "description" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Black/Chrome", + "price" : "171", + "sku" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Black/Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-3.1-TA-1070-DS-2-16-IN-CM-BLACK-Smart-Phones-491420054-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTcxNHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaGUxLzg5OTY4MDY0MjY2NTQuanBnfGQwOGMxNjQ3OTNmM2UzYjg0MzE5MjQ2ZWJiZTA3NjM4YzA0ZTcxYmZjNjUwODI2Y2NlNzc1MDNmYTgzMmQ4NTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 5V/2A charger
  • \n
  • Micro USB cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB (USB 2.0)" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddc"), + "name" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, White/Iron", + "description" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, White/Iron", + "price" : "171", + "sku" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, White/Iron", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-3.1-TA-1070-DS-2-16-IN-CM-WHITE-Smart-Phones-491420056-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTEwMXxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDkxLzg5OTY4MDY3NTQzMzQuanBnfGFkNDg5ODIxZjA2NDZmMmEwOGNiN2QxZDQxZmJhZGE4ZjM3NzYwNDgxNWMyOTc1ZTQyMjhkMDRmZTE1NTMzMWI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Iron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 5V/2A charger
  • \n
  • Micro USB cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB (USB 2.0)" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddd"), + "name" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Blue/Copper", + "description" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Blue/Copper", + "price" : "171", + "sku" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Blue/Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-3.1-TA-1070-DS-2-16-IN-CM-BLUE-Smart-Phones-491420055-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzIyNHxpbWFnZS9qcGVnfGltYWdlcy9oN2IvaDJiLzg5OTY4MDQ0NjA1NzQuanBnfGYwZTlmNjM2MGEyYTc2ZWY2NGEwNzk3NTQzNzc3NGRlNDMxMGQ0MzcxMmM1ZWE3Njk4NzE2M2NmNzc4NTEzOTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 5V/2A charger
  • \n
  • Micro USB cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB (USB 2.0)" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dde"), + "name" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Grey/Silver", + "description" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Grey/Silver", + "price" : "112", + "sku" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Grey/Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-2.1-Smart-Phones-491420144-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTYxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaDQ5LzkwMTg5MzQ3ODgxMjYuanBnfDY1MGI0MWM3YzE4ZmRhZmMwNGYyYmEyZGVlNWZlM2M0MWY4YTkxMmYyNzVhMGJkODFiZmVhNDI4MTkxODk5YzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.96" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddf"), + "name" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Copper", + "description" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Copper", + "price" : "112", + "sku" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-2.1-Smart-Phones-491420142-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDc3NHxpbWFnZS9qcGVnfGltYWdlcy9oODIvaDA1LzkwMTg5MjcwNTQ4NzguanBnfDFlZWVjNDMxZjZhOWVjOTAxNzFhYmQzYzk4MDI0YTgwZDIwN2M0NGVkMmQzNWE5YzY5OWQ3NzMxYjQ4MzVhODM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.96" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de0"), + "name" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Iron/Steel", + "description" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Iron/Steel", + "price" : "464", + "sku" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Iron/Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-8-1-IRON-OC-4-64-6-18-491503475-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzk2N3xpbWFnZS9qcGVnfGltYWdlcy9oODEvaDkzLzkwNzcxNjA2NDA1NDIuanBnfGI4MDNjNjc1YjZjNmZjMGQ0ODZmMzEyM2ViNzFmMTZhZmI0MzgzMmQ5ZTdmYWZmNGM4ZmYzMjQ4ZDUwODFiY2U", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron/Steel" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Recording: Nokia OZO surround sound capture
  • \n
  • Single speaker with smart amplifier
  • \n
  • Dual-tone anodized metal frame
  • \n
  • Dual Hi-Cri flash
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de1"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Gloss Black", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Gloss Black", + "price" : "269", + "sku" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Gloss Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550762-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Njc3fGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oODMvOTExMTUxODk2OTg4Ni5qcGd8NWNmZGMzMGNjYWYxM2Y2MzYzODJmZjhlZDRjNzVkZTBmMjg5ZWQ1ZWM4ZTNjNDY5YTE5ZGUyMjlkOGUzYTI1Zg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de2"), + "name" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Blue/Silver", + "description" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Blue/Silver", + "price" : "464", + "sku" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Blue/Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-8.1-Smart-Phones-491550750-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTIxfGltYWdlL2pwZWd8aW1hZ2VzL2g5NC9oYzcvOTExNzAyMTY2NzM1OC5qcGd8M2QxOGMwYzRlYTg0Yzk5YzU3ODM0ZDRlNDdiNGE3NWUzYjgxY2ZlZGE3NDY2NmIwYjk2NDc4MDRhZGM1YzY5NA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Nokia OZO Surround Sound Capture Recording
  • \n
  • 18W Fast Charging Charger
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de3"), + "name" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Red", + "description" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Red", + "price" : "232", + "sku" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-A5-4plus64-Smart-Phones-491551063-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDk5NnxpbWFnZS9qcGVnfGltYWdlcy9oMDMvaGZlLzkxMzg0MDAyMzE0NTQuanBnfGY2OWZmYjQyNGQwMTI1MzhjZWZkZjhkMjMzZTIwYjU3NGFlZjY3ZTc2YWZiZDY3NjE1NDZiYmQ4OTFkYWZkZDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa Core Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.61" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Clone Apps" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de4"), + "name" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Blue", + "description" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Blue", + "price" : "232", + "sku" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-A5-4plus64-Smart-Phones-491551064-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDkxNXxpbWFnZS9qcGVnfGltYWdlcy9oNWYvaDBlLzkxMzg0MDgwOTU3NzQuanBnfDNhOTRkOTBkZmJkY2RjZTZmODdhNDMxYzE2MDdiNWJiN2EzMzU4MzYxMTYzZDZlZjdiNWFmY2I4MGY2NDU1OTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa Core Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.61" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Clone Apps" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de5"), + "name" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Black", + "price" : "247", + "sku" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Plus-Black-Smart-Phone-491488078-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODU3fGltYWdlL2pwZWd8aW1hZ2VzL2hhZi9oZjgvOTAzMzQ1MDU4NjE0Mi5qcGd8YmJlZTc3MmFhNjcxMGY1ODNjZjlkOTUyZDRjMjljNzEzMWQ4ZjZmMDM2NjZlNmM3ZWQ4NTNiNDlhNTc4ZDBiMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "178" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "True HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de6"), + "name" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Dark Purple", + "description" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Dark Purple", + "price" : "203", + "sku" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Dark Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420072-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTk4N3xpbWFnZS9qcGVnfGltYWdlcy9oMzMvaGYxLzkwMDc2NDYzMTA0MzAuanBnfGNiNDg1NjkwMTQyNDNiOWM4YmVmOTNlYjMyNDZmMDdiZmYyMzk5ZTFmMTc3NTUxNmY5MjA0YmNiZjA1Y2NhMzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de7"), + "name" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Red", + "description" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Red", + "price" : "203", + "sku" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420071-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU2M3xpbWFnZS9qcGVnfGltYWdlcy9oMWYvaGI2LzkwMDc2NDU2NTUwNzAuanBnfGI2MmM4OWRjNTcxZjY1YWFlODE4MDI0NWYxODI1ZGU0NTMyZjRlMjBhM2NmNzIxNzhlOTVmOTEyMDg4ODY1ZTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de8"), + "name" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Starry Black", + "description" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Starry Black", + "price" : "218", + "sku" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Starry Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y93-Smartphones-491503523-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTI3fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oNDYvOTA5MzQ0ODQwMDkyNi5qcGd8MjZjYjRlYTgwZjJjYjEwNDI3MTk3YzBiMWFlNzI1NjM1OTc3OGVjNDEyMjMyOGQ5YWViNTMxMWFlMzI0YjBlYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y93" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TDD-LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Helio P22 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de9"), + "name" : "LG Candy K9 Smart Phone 16 GB, 2 GB RAM, Aurora Black", + "description" : "LG Candy K9 Smart Phone 16 GB, 2 GB RAM, Aurora Black", + "price" : "116", + "sku" : "LG Candy K9 Smart Phone 16 GB, 2 GB RAM, Aurora Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMX210IMW-AINDBK-Mobile-Phones-491420205-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTEyfGltYWdlL2pwZWd8aW1hZ2VzL2hhZS9oNDQvOTAzODg1MTU3MTc0Mi5qcGd8NDc4MmMwMWVjYzU1NzU3M2UzYTk3YmRkN2NlNjA4OTY0NTBmOGJjOGZmYTMyNGJiZDMyMjYzNWRlMDZhNWQxYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "K9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: 900, 1900, 2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE_850 (Band 5) / LTE_1800 (Band 3) / LTE_2300 (Band 40) TDD" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Qualcomm Snapdragon" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.63" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.32" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dea"), + "name" : "Vivo Y95 Smart Phone 64 GB, 4 GB RAM, Starry Black", + "description" : "Vivo Y95 Smart Phone 64 GB, 4 GB RAM, Starry Black", + "price" : "276", + "sku" : "Vivo Y95 Smart Phone 64 GB, 4 GB RAM, Starry Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y95-Smart-Phones-491503385-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDg1fGltYWdlL2pwZWd8aW1hZ2VzL2gzOS9oYWEvOTA3OTgxMjcxODYyMi5qcGd8YzQ3MDU0NGYwMmJiZjY1YmIwY2ZjY2NlYzE1ZjJjODhiZDc3NjRjYjFhYzBlZGI2ZDNmM2FhMzQzNjdlNzg3NQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y95" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "V4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Octa-core Snapdragon 439" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "XE160 with Remote and Mic" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637deb"), + "name" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Black", + "description" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Black", + "price" : "1145", + "sku" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLK-P-8-128-6-4-Smart-Phone-491550807-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTkxfGltYWdlL2pwZWd8aW1hZ2VzL2gzMS9oYzIvOTEwNDU2MTE3NjYwNi5qcGd8NDE5YTg4YWE0MTg5OThlYTZjNTliNjhmN2FiNjQyNjYwYmM5MWFiZTRhYzQ0YTJiM2Q0MGM3NGE5NzE2NzcwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dec"), + "name" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Topaz Blue", + "description" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Topaz Blue", + "price" : "479", + "sku" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Topaz Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15Pro-Blue-6-128GB-12-8-5MP-32MP-SmartPhone-491550771-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjAwMnxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaDdjLzkxMDM0MDI5OTE2NDYuanBnfDc5Y2U2Y2U5ZGRhMGU5N2UyY2Q2OGI4MmY1MjljYjY5MzAwOTY4YTcyOTlhODk3MjNiZWQ0MDg5M2U3YzViYTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Topaz Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0) " + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE - B1/3/5/8
  • TDD-LTE - B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.471" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.821" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pop Camera
  • \n
  • Infiniti Screen
  • \n
  • GoPop Signal projection
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone, Documentation, USB Cable, USB Power Adapter, SIM Ejector, Protective Case, Protective Film (applied) " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ded"), + "name" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaze Blue", + "description" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaze Blue", + "price" : "247", + "sku" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaze Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smartphones-491503526-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTA4fGltYWdlL2pwZWd8aW1hZ2VzL2hmMC9oM2IvOTA5MzQ0ODA3MzI0Ni5qcGd8NzNmYjY3OTIyODUwNGNiN2FlNjIwZGQ1NGFlYTU3YjU2MmMwM2UzOGFmODgzZWE2ZDUxNWY4ZjkwOTkxZTQwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaze Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "410 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "32 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/3/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dee"), + "name" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Blue/Silver", + "description" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Blue/Silver", + "price" : "464", + "sku" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Blue/Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-8-1-BLUE-OC-4-64-6-18-491503474-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzQ3fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oYjEvOTA3NzE2MDk2ODIyMi5qcGd8YjhiM2M4ODUyZTBhMjQyNDMxNDJlOTUzNzM3MzZhNmM5NTJiOTI0ZTk1NjEyOGQyYWNiZGUxYmUxYzkxZDhmOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Recording: Nokia OZO surround sound capture
  • \n
  • Single speaker with smart amplifier
  • \n
  • Dual-tone anodized metal frame
  • \n
  • Dual Hi-Cri flash
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637def"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Blue", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Blue", + "price" : "367", + "sku" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLU-6GB-64GB-6-4-491550848-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzcwfGltYWdlL2pwZWd8aW1hZ2VzL2g5Zi9oYzMvOTEwODkzMjEwMDEyNi5qcGd8NjhiZTBjZTc0OThhZTFjNzdkODcyNjJjZGQ5YTJiZmYwMjgxNjg4MmNhYTI0NGQyODlhYTk4YWNlNDM0MmQyZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df0"), + "name" : "Motorola One Power Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Motorola One Power Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "276", + "sku" : "Motorola One Power Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-ONE-POWER-Smart-Phones-491550765-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjczfGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oMzgvOTEwNzc4MjEwNzE2Ni5qcGd8Y2MwN2FmYTQyNWQ4NDczNjlhOWM3MjY4NDRmZjYyMzQxMzEyZDc5MDUxMzQ1YmRkMTE4MjQwYTQ0Mjc4ZGIyOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "One Power" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.7 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 2 Days" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/3/5/8/38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df1"), + "name" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Thunder Black", + "description" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Thunder Black", + "price" : "421", + "sku" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Thunder Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-F11-Pro-Smart-Phones-491550882-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzgxfGltYWdlL2pwZWd8aW1hZ2VzL2g0Yi9oNjUvOTEzODQwMjg1Mjg5NC5qcGd8ZDU1NWY0MmFmMmZlZjMxNzllNTVhNTQ1ZmExNzg0NmFkMjhhYWY0ZjRlYmM4ZDM2MWI1N2YxYzcwMTRjMGFjNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Thunder Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa Core MediaTek Helio P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • VOOC Flash Charge 3.0
  • \n
  • Pop-up Camera
  • \n
  • Double Microphone Noise Suppression
  • \n
  • Hyper Boost" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df2"), + "name" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Royal Blue", + "description" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Royal Blue", + "price" : "392", + "sku" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Royal Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15-Blue-6GB-64GB-12-8-5MP-32MP-SmartPhone-491550984-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTE2MHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaGVlLzkxMTY5MTUyMDQxMjYuanBnfDYwZjQ4YjgyODM0ZGFkYWJlMGRjMzM2NDdlMmIwZmU5YWQyZWE2ZmM2ZDc1N2FkM2FhMTNjZDNlNmJmYmNhMzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Royal Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.59 cm (6.53 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (Based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa-core (4*A73 2.1GHz, 4*A53 2.0GHz) MTK P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.59" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earpieces" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df3"), + "name" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Fusion Black", + "description" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Fusion Black", + "price" : "145", + "sku" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Fusion Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551055-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mjc2fGltYWdlL2pwZWd8aW1hZ2VzL2g1Mi9oOGYvOTEyMzIxMzI0NjQ5NC5qcGd8MGViY2Q2ZTI3YTZiNDIzZDhjZThjNTBkZWNkOTI3MzIyNzgxNDJkYTcyOTRhMjg4N2RjYzE1OWVmOGQ4NDg3Nw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fusion Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation\nmicroUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df4"), + "name" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mineral Blue", + "description" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mineral Blue", + "price" : "276", + "sku" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mineral Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y17-Smart-Phones-491570587-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgzfGltYWdlL2pwZWd8aW1hZ2VzL2hlZi9oNGUvOTEyODk5NjExMDM2Ni5qcGd8NTQ2MTljNjAwOWMwOWIyMDBhNDM0ZDBmMzBkYjc0OTI3MmVhMmJhOTRlMzYwYTlmY2I0NzgyMDhiY2Y1MDg5Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.15 cm (6.35 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE B1/3/5/8
  • \n
  • TDD-LTE B40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Octa-Core Helio P35 (MT6765) Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.94" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rear flash + Front Screen Flash
  • \n
  • 89% Screen-To-Body Ratio
  • \n
  • 19.3 : 9 Aspect Ratio
  • \n
  • Mirror Finish
  • \n
  • AI Super Wide-Angle Camera
  • \n
  • 18W Dual Engine Fast Charging
  • \n
  • Ultra Game Mode
  • \n
  • Capacitive Multi-Touch
  • \n
  • 2.4G + 5G Wi-Fi
  • \n
  • Location: GPS" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df5"), + "name" : "Moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "189", + "sku" : "Moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Plus-Smartphones-491433186-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTA4NHxpbWFnZS9qcGVnfGltYWdlcy9oNTMvaDc5LzkwMDc2NTU1NTEwMDYuanBnfDAxOGJkYmY0ODEyZTA3ZWJjODU4OGUzZjFkZGUyZGVlODUzMTMxMTBkOTgzMGIxMWVjMzk1YmUxNzM1M2M5OTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "E5 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM band 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA band 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD LTE band- 1/3/5/8 TDD LTE band-38/40/41 (2535–2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "197" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Crystal Clear Sound
  • \n
  • Distinctive Design
  • \n
  • Expandable Storage
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Moto", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df6"), + "name" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "description" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "price" : "102", + "sku" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Pro-Smart-Phones-491419890-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTM3MXxpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDQyLzg5OTM0MTI3NzU5NjYuanBnfGQ3ZTU0NmVhZDA5YjI0NzUyMmNkZjllYmMxYmM4YzM5YTZlZTIwYWQ0MTU1MmI5ZWE3OTM3ODZkNGU2YzY0MWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: 2300/2500 MHz B40/B41
  • \n
  • FDD: 2100/1800/850 MHz B1/B3/B5
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df7"), + "name" : "Samsung Galaxy S9 Smart Phone 256 GB, 4 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9 Smart Phone 256 GB, 4 GB RAM, Midnight Black", + "price" : "1029", + "sku" : "Samsung Galaxy S9 Smart Phone 256 GB, 4 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-256-GB-Midnight-Black-491379608-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjUzfGltYWdlL2pwZWd8aW1hZ2VzL2g5Yy9oZDgvODkyMTUyNjk2MDE1OC5qcGd8MGU0ZmVmMzA1MWQ0YTNjMmY1OThlNGMyZWM2ZTY2MjM2OGNiNmY3YTBlNWI1YjhhMjRhMTU3YWQyYTNiNzRmMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df8"), + "name" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Coral Blue", + "price" : "906", + "sku" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Coral Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Coral-Blue-491379605-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTQwOHxpbWFnZS9qcGVnfGltYWdlcy9oMWUvaDc1Lzg5MjE1Mjc2MTU1MTguanBnfDBmMjQ5Yzc2ZGYwMGQ5MTk4NzI3Njc3MzZhYTdjMjFjNzAzYzQ0YjI0MGVjMmI2MjdhYjE3NzhjMWFkZDM2ZTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df9"), + "name" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "price" : "906", + "sku" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Midnight-Black-491379607-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjUzfGltYWdlL2pwZWd8aW1hZ2VzL2gzNy9oODgvODkyMTUyNjMwNDc5OC5qcGd8MDRjMmRhYmY5NmFiYWIxN2Y2ZTdiYTkyZTE1NzhiMGVmMmMyNTQ3MGU4MjY5NjNkYmEyNTgyZTRlYmQ3YTU5MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfa"), + "name" : "Samsung J2 2018 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Samsung J2 2018 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "129", + "sku" : "Samsung J2 2018 Smart Phone 16 GB, 2 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-2018-Smart-Phones-491379715-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ0N3xpbWFnZS9qcGVnfGltYWdlcy9oMjgvaDVlLzg5ODE2NTMwNjE2NjIuanBnfDM2ZjE2ZTIxOTA1MjE4Y2M0NjJhNTM5MzI3MTNjZjlmMWZmZjBjMDhkMjZkZTc0Njc2NjljM2FhOTNjNDc3NGY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 2018" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.23" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Weight", + "attributeValue" : "153" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfb"), + "name" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "290", + "sku" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J8-Blue-OC-4-64-6-Mobile-Phones-491420006-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDU1MnxpbWFnZS9qcGVnfGltYWdlcy9oYmUvaGM2Lzg5NjA2NTYxNDY0NjIuanBnfDM0MDAzODRlMGMwYzk4Y2ViYWIyOGFjOWY5NzBjYWVkMzY4OGJhYTAxNDQ0ZTIzNGNlMDZlNTQ0ZWYyMDhhY2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.36 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core Qualcomm Snapdragon 450 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfc"), + "name" : "Apple iPhone XS Max Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone XS Max Smart Phone 64 GB, Space Grey", + "price" : "1593", + "sku" : "Apple iPhone XS Max Smart Phone 64 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-64GB-Space-Grey-491488027-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaDE3LzkwMjU5Njc3ODM5NjYuanBnfGYzYjdiMmE1ZGE4ZWVhZjlhYjEwNTZiMTZlZjZkOTlhNTk0YzIyYjA4YWNjNjkxNzgzYWQwNTAwODNiNWM4Mjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2688 x 1242" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfd"), + "name" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Aurora Green", + "description" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Aurora Green", + "price" : "421", + "sku" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Aurora Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-F11-Pro-Smart-Phones-491550883-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUyfGltYWdlL2pwZWd8aW1hZ2VzL2gxYy9oYmYvOTEzODQwNTQ3NDMzNC5qcGd8NTE0YTRjZDE1MmJiZDViZTNlZTM1YjM2ODIyOTE3ZDY3NTkyZjhiYTcwMTZkYTliYTI3MDc2YThhNGQ4NTlkMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Green" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa Core MediaTek Helio P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • VOOC Flash Charge 3.0
  • \n
  • Pop-up Camera
  • \n
  • Double Microphone Noise Suppression
  • \n
  • Hyper Boost" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfe"), + "name" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Black", + "description" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Black", + "price" : "140", + "sku" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-BLK-2GB-32GB-6-2-491550841-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzMzOHxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDNhLzkxMDg5MTAxNzgzMzQuanBnfDhiOGYzNDM2Mjc3MjE1OTI1NDNmZjNhMjJiMjBiNzAwMWIwYTU5OTI3NTdiNGEyMzM0YThmYWVmNzAwNGNlNjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7884 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dff"), + "name" : "Apple iPhone XR Smart Phone 64 GB, (PRODUCT)RED", + "description" : "Apple iPhone XR Smart Phone 64 GB, (PRODUCT)RED", + "price" : "1115", + "sku" : "Apple iPhone XR Smart Phone 64 GB, (PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-RED-491488443-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA2M3xpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDRhLzkwNTE3MTY3NDcyOTQuanBnfGY5NzBhMTg4NGYwMzliMDU0MGFhZWQxM2U3NzM2ZWZhZjY0MjM4MzczYjcwNzE3OTAwOGRkZjI5NGY3MTAxYTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e00"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Yellow", + "description" : "Apple iPhone XR Smart Phone 64 GB, Yellow", + "price" : "1115", + "sku" : "Apple iPhone XR Smart Phone 64 GB, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Yellow-491488444-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI5N3xpbWFnZS9qcGVnfGltYWdlcy9oY2MvaGE1LzkwNTE3MjM3NTk2NDYuanBnfGY1Nzk2M2QyZjA3YTc3Yjg1YmI2MWFhNGViM2JjMTA1MGI5OWNlNzhhNTViMGU3OGUwZjZjODU0MzA2YzBhNWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e01"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Yellow", + "description" : "Apple iPhone XR Smart Phone 128 GB, Yellow", + "price" : "1187", + "sku" : "Apple iPhone XR Smart Phone 128 GB, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Yellow-491488450-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzMwMHxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDg2LzkwNTE3MzcwNjM0NTQuanBnfDFjZDAwNDI3MGZmMjY2N2UyODlmMzIzNjViMDJmOGJkYmU5NzgxZDkxMjI0OGZhNjRjNTA5YTM5MWViNDk3NjQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e02"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Coral", + "description" : "Apple iPhone XR Smart Phone 128 GB, Coral", + "price" : "1187", + "sku" : "Apple iPhone XR Smart Phone 128 GB, Coral", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Coral-491488451-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjkzN3xpbWFnZS9qcGVnfGltYWdlcy9oZWQvaGQ2LzkwNTE3MzMzMjc5MDIuanBnfDE0OGI0MmJhMWFlYjFiYmJhMWEzZTU1MTczZTQ0Y2QzYmJjZTFjZGVjNzc3ZjlhMWE5ZTEwYjhkYzFlMDEyZDM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e03"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Blue", + "description" : "Apple iPhone XR Smart Phone 128 GB, Blue", + "price" : "1187", + "sku" : "Apple iPhone XR Smart Phone 128 GB, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Blue-491488452-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjIyOXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDNmLzkwNTE3MzU3NTI3MzQuanBnfGE3MWUxMWFlZDA3ZWMwYjcyNjAzZDk2MTAxYzU3YjBmZTJiZmJkMGJjZjk2YTFkOWY3MzY0MzU5ODRhNzc5NzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e04"), + "name" : "Apple iPhone XR Smart Phone 256 GB, Black", + "description" : "Apple iPhone XR Smart Phone 256 GB, Black", + "price" : "1332", + "sku" : "Apple iPhone XR Smart Phone 256 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-Black-491488453-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIzfGltYWdlL2pwZWd8aW1hZ2VzL2hkYS9oZTgvOTA1MTc0Mjc2NTA4Ni5qcGd8OWEzODkxMTM1MTJkOWIzMWYzNjFhNWNmYmU0YjhjZjhmYzQ3MTUyMjI0OTM2ZDVhOTY2NzRiODEzZjQ5MjBmMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e05"), + "name" : "Apple iPhone XR Smart Phone 256 GB, White", + "description" : "Apple iPhone XR Smart Phone 256 GB, White", + "price" : "1332", + "sku" : "Apple iPhone XR Smart Phone 256 GB, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-White-491488454-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTIyMHxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDIxLzkwNTE3NTIwNzExOTguanBnfDlmYWNlNzgxNGYzOGQwNjZjZTdhY2ExY2Q0OGY5NmFjNTY4YTY4Njk0MWVhZDQxZmE4NTYyMjMwYzg2NzAzNTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e06"), + "name" : "Apple iPhone XR Smart Phone 256 GB, (PRODUCT)RED", + "description" : "Apple iPhone XR Smart Phone 256 GB, (PRODUCT)RED", + "price" : "1332", + "sku" : "Apple iPhone XR Smart Phone 256 GB, (PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-RED-491488455-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA2M3xpbWFnZS9qcGVnfGltYWdlcy9oNmMvaDJkLzkwNTE3NDU3Nzk3NDIuanBnfGRlN2QxNDM1NTdlNDVjNzQ5MTdiYzY2NmI3YTgyZmY2ZmU3MjYzNTRkZDBkZDZkMDQwNmEyZjU3MTdmMTU5MTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e07"), + "name" : "Apple iPhone XR Smart Phone 256 GB, Yellow", + "description" : "Apple iPhone XR Smart Phone 256 GB, Yellow", + "price" : "1332", + "sku" : "Apple iPhone XR Smart Phone 256 GB, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-Yellow-491488456-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI5N3xpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDY1LzkwNTE3NDk3Nzc0MzguanBnfDhhZWNjNzdlNjkyODNlODVhNzRlNDI0MTY2NTljOWQ0OTNiYjQxNTAzODM3NTAzMDJlZThlMTY5YmU2ODA3NzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e08"), + "name" : "Apple iPhone 6s Plus Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 6s Plus Smart Phone 32 GB, Gold", + "price" : "711", + "sku" : "Apple iPhone 6s Plus Smart Phone 32 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Plus-Smart-Phone-32-GB-Gold-491297328-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTgwOXxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaGYyLzg5MjcyNzA2NjYyNzAuanBnfDZhYjk5OWU3YjJhNGZmN2VhNTFjYmVmZmZiYWM2ZDEyYTNlMzVhOTg4OGM5Yjc5N2EyM2ZmMDVmYzRkZjBhNjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours (3G)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 24 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "192" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e09"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Jet Black", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Jet Black", + "price" : "759", + "sku" : "Apple iPhone 7 Smart Phone 32 GB, Jet Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Mobile-Phones-491351014-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDkyOXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDY5Lzg5MjcwMjUxMDI4NzguanBnfDY1NjAwOGIzOGE4MWJiMmYwMmUwMTNkN2I2NDVjZjBjYzNjZDA4MzI5MGJhYzE0YzUxNGMxNGFmMTRiZmFlMzc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0a"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Jet Black", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Jet Black", + "price" : "911", + "sku" : "Apple iPhone 7 Plus Smart Phone 32 GB, Jet Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Mobile-Phones-491351010-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTQ0N3xpbWFnZS9qcGVnfGltYWdlcy9oZTcvaGQzLzg5MjcwMzU5MTYzMTguanBnfDk5MTEyMGIxNTZiM2EwYzdkNGM2YzNiNTQ3ODE5OTVlMzBhYjg4YTMzYzZkMTcyOTA0YjE3MzA5YzYxOTA4YmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • \n
  • TD-SCDMA 1900 (F), 2000 (A)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41))
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0b"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Rose Gold", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Rose Gold", + "price" : "759", + "sku" : "Apple iPhone 7 Smart Phone 32 GB, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Rose-Gold-491282717-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjM2OHxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGE0Lzg5MjcxMzQxNTQ3ODIuanBnfGRjODE5MmJiZWE2ODIyY2NiMGVjMjFiZDFmNTJiNzI5NDdjYzQ5ZTdjYTMxMzE4NGQ0MGM0MDE2NDNiNTIxZWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0c"), + "name" : "Apple iPhone X Smart Phone 64 GB, Silver", + "description" : "Apple iPhone X Smart Phone 64 GB, Silver", + "price" : "1332", + "sku" : "Apple iPhone X Smart Phone 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-64-GB-Silver-491350995-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTAzNHxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDA1Lzg5NjMzNjkzMDQwOTQuanBnfDRiYWFkMjhkNjFhNDIzYTJkZjk2Zjk0MjU2YjY3MmJmZmFkNjE5NGYwMWUwOTJjODMzZDYyYjMyOTE3ZWU1NTM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0d"), + "name" : "Apple iPhone 7 Plus Smart Phone 128 GB, Silver", + "description" : "Apple iPhone 7 Plus Smart Phone 128 GB, Silver", + "price" : "986", + "sku" : "Apple iPhone 7 Plus Smart Phone 128 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-128-GB-Silver-491282732-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDA2OXxpbWFnZS9qcGVnfGltYWdlcy9oZWMvaDkzLzg5MjcwOTIwODA2NzAuanBnfDE0YTJjZTQyNzQwY2VjNjFmNDMxMDVhNzlmZGY2MmMwNDNmNTgyNzczM2I2MzdmYmVkN2E1ZmE0MDVmODhmYTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0e"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, (PRODUCT)RED", + "price" : "1247", + "sku" : "Apple iPhone 8 Plus Smart Phone 256 GB, (PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRT82HN-A-Smart-Phones-491379785-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzg5NnxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDRlLzg5ODE2NjUwNTQ3NTAuanBnfDU4NzM5NmU1MTkzNWY2MjIxZTdjOGY4N2ZhZjM2MTljYjQ4NzRmY2Q5Y2RiMDA3NmYxYWUzNTY4YzgzZTI5Zjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 14 hours
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0f"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, Silver", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, Silver", + "price" : "1014", + "sku" : "Apple iPhone 8 Plus Smart Phone 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-64-GB-Silver-491351003-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzIyNnxpbWFnZS9qcGVnfGltYWdlcy9oOTIvaGZlLzg5MjcwNjI3ODYwNzguanBnfDk2ZDhlMWQyMmU0ODM2MmI1MWVlZDk2NGYyYTk1MzBmMzZkMzQ0MDIwMGRhOGY2MjMzZmJiNmFjNWY2YWVhZjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (Wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e10"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Rose Gold", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Rose Gold", + "price" : "580", + "sku" : "Apple iPhone 6s Smart Phone 32 GB, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Rose-Gold-491282845-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTkzN3xpbWFnZS9qcGVnfGltYWdlcy9oODcvaDI5Lzg4NzU5MTQ3MjMzNTguanBnfGUzNGM4ODEyMGFkNWMxMjI0ZGY1OWI3NmY3MzVhNmY3M2FlYTczYWFlZWZhOTQ3Y2UzZDA5ODExMjBlNTgzNDQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e11"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Silver", + "price" : "911", + "sku" : "Apple iPhone 7 Plus Smart Phone 32 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Silver-491282727-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDA2OXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGU0Lzg5MjcwODk3ODY5MTAuanBnfDY2ODE4OGVjZTQzYWVlMGY3Y2VkMzIwYjllODNmN2JjZGMyNjJmNjQ4ODMxMDAxNzkyNGIzZmI1ODAzZWQxZGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e12"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, Space Grey", + "price" : "1231", + "sku" : "Apple iPhone 8 Plus Smart Phone 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-256-GB-Space-Grey-491350996-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDc2Lzg4OTA4MTgzMzA2NTQuanBnfGJhMTNiYWE1NjFhNmY0NTRmYjNkMmRhY2M3M2U2ZDQxYjcxOGE0ZGQ4NzE2ZjQxZTY1MDRkNTk1N2ExYWRmMzU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e13"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, Silver", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, Silver", + "price" : "1247", + "sku" : "Apple iPhone 8 Plus Smart Phone 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-256-GB-Silver-491350997-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzIyNnxpbWFnZS9qcGVnfGltYWdlcy9oZWYvaDk0Lzg5MjcwODM2MjY1MjYuanBnfGY3MjYxNjBjNDhhNDcwNGVhZWFlZTM3ZWFiMjQyYmM4M2UwYjI4NTU1MzBkZjVmZjMwMWZkZWNmNzJmN2YzYjY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e14"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, Gold", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, Gold", + "price" : "1231", + "sku" : "Apple iPhone 8 Plus Smart Phone 256 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-256-GB-Gold-491350998-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM2MXxpbWFnZS9qcGVnfGltYWdlcy9oZmUvaDYxLzg5MjcwNzc3MjgyODYuanBnfDgzMzljNjY3YjhjNjI0MzMwODZmYjIzYjc1MTFkZGNiMDlmZGFiNDE5NGIwMzVmMzhmZjc0N2Y5YTU3ZTg0MGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e15"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone 8 Smart Phone 256 GB, Space Grey", + "price" : "1116", + "sku" : "Apple iPhone 8 Smart Phone 256 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-256-GB-Space-Grey-491350999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDUyLzg5NjM0ODMyMDU2NjIuanBnfDIxYzQzMDgzODg1MGY5MmYzOGNhZDQxNTk0ZDFmYTFkMmQ0ZTc1N2Q0NTQ4ZDMxZjk3NDQ1NjIzYWNiMjBhOTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e16"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, Silver", + "description" : "Apple iPhone 8 Smart Phone 256 GB, Silver", + "price" : "1116", + "sku" : "Apple iPhone 8 Smart Phone 256 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-256-GB-Silver-491351000-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMTQvaDYyLzg5NjM0Njk4MzYzMTguanBnfDNjOWI4ZjRiM2NmMDZiNDI3NDY5ZjMyNTk0YTY2MTcxNDVhMTE0ZmI4OTlkODk3YzNjNmVkMGZiMjIzNGEwMzE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e17"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, Gold", + "description" : "Apple iPhone 8 Smart Phone 256 GB, Gold", + "price" : "1116", + "sku" : "Apple iPhone 8 Smart Phone 256 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-256-GB-Gold-491351001-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDY2OXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDE3Lzg5NjM0NTc1ODEwODYuanBnfDliYTU5ZWM5N2FkNWExY2NkNzJhMDlhYzJiMTU2OWY1OWJiNzQ0MzA2OGRjYTc4MmZlNjU3YTQ1M2VkZWUwNzQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e18"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Smart Phone 256 GB, (PRODUCT)RED", + "price" : "1116", + "sku" : "Apple iPhone 8 Smart Phone 256 GB, (PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRRL2HN-A-Smart-Phones-491379783-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzE1MXxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDRkLzg5ODE2NzEwODQwNjIuanBnfDYyNWQwY2U4MGRiMzFiZjY5OTM4NGI1ZGY0MTY3MGM1Nzk1OTUxNmU1NDEwNjRmZjZlYzI2NDk2N2NlNjA4ZTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • Video playback (wireless): Up to 13 hours
  • Audio playback (wireless): Up to 40 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e19"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, Silver", + "description" : "Apple iPhone 8 Smart Phone 64 GB, Silver", + "price" : "869", + "sku" : "Apple iPhone 8 Smart Phone 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-64-GB-Silver-491351008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDAwLzg5MjcwNjk4NjM5NjYuanBnfDBlNDcwMzBhZjNjMzRmODQ5OWYzNWU3Y2NhZWU4MzViZGZhYTFiMDk0MDVmZjE3MjkzZDA3ZTdiODlmM2FkMjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1a"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Smart Phone 64 GB, (PRODUCT)RED", + "price" : "985", + "sku" : "Apple iPhone 8 Smart Phone 64 GB, (PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRRK2HN-A-Smart-Phones-491379782-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjkzMHxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDUwLzg5ODE2NjcwMjA4MzAuanBnfDZlYTBhNWM0ZDE5MDg0YmY5MTFiM2NiYzBlOWM5MTAzZjdiZjkxY2Y4NDk0ZWE5MmQ5MmVjYzgzYmEyMGM3MmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • Video playback (wireless): Up to 13 hours
  • Audio playback (wireless): Up to 40 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1b"), + "name" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, Blue", + "description" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, Blue", + "price" : "114", + "sku" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5016-Mobile-Phones-581107911-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDA5fGltYWdlL2pwZWd8aW1hZ2VzL2gzOS9oZTIvOTAzODg2MjM4NTE4Mi5qcGd8MGQ0YTVmZGZkYmU1ZjI3M2EwZWY2ZjQ1M2QzNTI4MTljMTlmMDdiMDFlOThlY2IyZjE1ZTA0MDRiNzc3ZTg2MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Wind" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Lollipop 5.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2250" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 5 hours
  • \n
  • Audio Playback Time: 32 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 180 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/ BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD BAND3(1800)/ BAND5(850)
  • \n
  • TDD BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MSM8909 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 " + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1c"), + "name" : "LYF Water 7S Smart Phone 16 GB, 3 GB RAM, Gold", + "description" : "LYF Water 7S Smart Phone 16 GB, 3 GB RAM, Gold", + "price" : "179", + "sku" : "LYF Water 7S Smart Phone 16 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5507-Mobile-Phones-581107928-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjQwfGltYWdlL2pwZWd8aW1hZ2VzL2gwOC9oZWYvOTAzODg1MjU1NDc4Mi5qcGd8YmYyZWEyY2ZlMDNhMGI3MDMxYTczNjE0NTQyODc3ODY0OTNmZGExNGIyMjA3ZTUyZjQ4NjIwODgyZGUyYmU3MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7S" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Water" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • HD Video Playback : Up to 5 hours
  • \n
  • Audio Playback : Up to 6 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 400 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 6 hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1(2100) / BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: BAND3(1800) / BAND5(850)
  • \n
  • LTE TDD: BAND40(2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "141" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice Unlock
  • \n
  • Mobile Anti-theft
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MID" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Non removable battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1d"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Burgundy Red", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Burgundy Red", + "price" : "1015", + "sku" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Burgundy Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S9Plus-Smart-Phones-491488287-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njk4fGltYWdlL2pwZWd8aW1hZ2VzL2gwZS9oNmUvOTA2OTUwMDc2MDA5NC5qcGd8M2UxMTEwYTg3MGRhNmRiN2Q1MTIwYzE0NjJmMDlkMTAxZTUxYjAxMzljODUwZmQwYjJjMjgwZDE4MzUwMmQwNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Burgundy Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Exynos 9810 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Travel Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1e"), + "name" : "Samsung Galaxy Note 9 Smart Phone 128 GB, 6 GB RAM, Lavender Purple", + "description" : "Samsung Galaxy Note 9 Smart Phone 128 GB, 6 GB RAM, Lavender Purple", + "price" : "1067", + "sku" : "Samsung Galaxy Note 9 Smart Phone 128 GB, 6 GB RAM, Lavender Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-NOTE-9-Smart-Phones-491488286-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2g5NS9oNmYvOTA2OTUwNDAzNjg5NC5qcGd8ZjJmZDA1Y2RkNmFlN2NlMjVhZDQwZGExMzhjYTE1MGE4ZjgzY2NjODQ3NGIwMDg4Nzc2YTVmNTQ2YzlkZTMxNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lavender Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note 9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 17 hours
  • \n
  • Audio Playback Time: Up to 59 hours
  • \n
  • Internet Usage Time(LTE): Up to 16 hours
  • \n
  • Video Playback Time: Up to 20 hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 29 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, DCS: 1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • \n
  • TD-SCDMA: B34(2010), B39(1880)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • \n
  • TDD: B38(2600), B39(1900), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "201" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1f"), + "name" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "1029", + "sku" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488295-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIyfGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oYjUvOTA2NDYzOTIwMTMxMC5qcGd8ZGZjYzk4ZDI4ZGVmNTA3NDNlYzUzZjI1YzkyNjkwOGI4YzE3ZmExYjNlZTZmN2ZjODk2Yzg4Zjc0ZjFiMDRmMg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e20"), + "name" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Not Pink", + "price" : "1334", + "sku" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Not Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488306-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzgwfGltYWdlL2pwZWd8aW1hZ2VzL2hlOS9oODYvOTA2NDY2MDY5NzExOC5qcGd8ZWIxNGJiNjBiMmY1NWQ3YjJiZjZjNzVjNTY5ODcyYTY5ZjRjNDQ1MjExMjczNTAyZjhkMTkwNDBjM2E5YWM0ZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "manufacturer" : "Google", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e21"), + "name" : "BlackBerry Evolve Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "BlackBerry Evolve Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "435", + "sku" : "BlackBerry Evolve Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/BlackBerry-EVOLVE-Smart-Phones-491488309-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzA3fGltYWdlL2pwZWd8aW1hZ2VzL2g1NS9oMGIvOTA2NzA5MTI5NjI4Ni5qcGd8YjAzOTRhMjk0ZTZmMzI2NTgwN2UzNzIzMGRmNTNjNmI1MmQ0MTVjNTI5OWIwMjBlZmNjMjFjYWQxMTQwNGIyNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Evolve" + }, + { + "attributeName" : "Brand", + "attributeValue" : "BlackBerry" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2160 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (5.99 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "384 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/3/5/7/8/40/41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "BlackBerry", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e22"), + "name" : "Tecno Camon i2 ID5A Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Tecno Camon i2 ID5A Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "174", + "sku" : "Tecno Camon i2 ID5A Smart Phone 32 GB, 3 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-TECNO-ID5A-Smart-Phones-491488118-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTExfGltYWdlL2pwZWd8aW1hZ2VzL2hlMy9oNDkvOTA4NzY2MjQ4OTYzMC5qcGd8OTM5MzNkN2M1NWY2MTVkN2U5YTk2NjdiYTIzMDE4NzdmN2Y1NjRmNDE0ZjZlZDE0YjVmMzhkZTgzZjAzN2JhMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "ID5A" + }, + { + "attributeName" : "Series", + "attributeValue" : "i2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HISO 4.1 base on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6761 Quad Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e23"), + "name" : "OPPO F9 Smart Phone 64 GB, 4 GB RAM, Mist Black", + "description" : "OPPO F9 Smart Phone 64 GB, 4 GB RAM, Mist Black", + "price" : "319", + "sku" : "OPPO F9 Smart Phone 64 GB, 4 GB RAM, Mist Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F9-Mist-Black-Smart-Phone-491420303-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTczMXxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDYyLzkwMzM0NTYyODc3NzQuanBnfGMwN2JkODQ4ODJjYzY3ZWUwOTRkZWEwMWUxZGE5ZjY1MjQ3ZDQxNjYyZmYxMjkwMmIwNTNhZTcyYzk2ZGU2ZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mist Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "BT2.1(+EDR)/BT4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS : GPS/A-GPS/GLONASS/Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "manufacturer" : "OPPO", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e24"), + "name" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, White", + "description" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, White", + "price" : "186", + "sku" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-12ROOW21A01-Smart-Phones-491488398-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDkwfGltYWdlL2pwZWd8aW1hZ2VzL2gwNS9oN2EvOTA2OTQ2NTA0Mjk3NC5qcGd8YTJhZmU1MTgwNDgzNzk3ZGY5M2E1M2VlNzI1MzYzNjNkODc0NzJmNDM4ODA3NWJmZWNhYjBjMmJlZjliZTFmNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P22" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e25"), + "name" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Blue", + "description" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Blue", + "price" : "160", + "sku" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J4-Smart-Phones-491419874-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjc5NHxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDIyLzg5OTM0MjMyNjE3MjYuanBnfDZiNmZiZmRiMmQxZDdkMTJkMWJlOTY0NDJmMDE1ODgxMjUxNWQ5NzJiODY2YjMwODJkOGNhM2M0OWQ3ZWQxZGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J4" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e26"), + "name" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Aqua Blue", + "description" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Aqua Blue", + "price" : "153", + "sku" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Aqua Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-CAMON-I-AIR-2-Smart-Phone-491550704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTU2fGltYWdlL2pwZWd8aW1hZ2VzL2hjNy9oY2IvOTA5NTkzNzUyMzc0Mi5qcGd8YTQ3NDM5YWM5YTcwMGQ4ZWJiOGYyY2NhYjMzMmFmNDUxOWMwYmU5YzYwMDk2NTM5YWZkOTcyYTE4OTkzZGQ1Yw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aqua Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "iAir2+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e27"), + "name" : "Samsung Note 9 Smart Phone 128 GB, 6 GB RAM, Alpine White", + "description" : "Samsung Note 9 Smart Phone 128 GB, 6 GB RAM, Alpine White", + "price" : "1067", + "sku" : "Samsung Note 9 Smart Phone 128 GB, 6 GB RAM, Alpine White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-NOTE-9-Smart-Phones-491503479-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTEwfGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oM2UvOTA4NzY1NTYwODM1MC5qcGd8MmE2M2I5MDM0ZGZhNjFjZTA4YWNhZDE5NzZkZGYxMGI2YzdmYjVhMjVjNmYwYzdkOGYwMzgxNDRlNTIyN2M1Zg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Alpine White" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note 9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 17 hours
  • \n
  • Audio Playback Time: Up to 59 hours
  • \n
  • Internet Usage Time(LTE): Up to 16 hours
  • \n
  • Video Playback Time: Up to 20 hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 29 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • \n
  • TD-SCDMA: B34(2010), B39(1880)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • \n
  • LTE TDD: B38(2600), B39(1900), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7GHz, 1.7GHz Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "201" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e28"), + "name" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Champagne Gold", + "description" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Champagne Gold", + "price" : "124", + "sku" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Champagne Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-KB2-Mobile-Phone-491550881-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjgyMXxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDM3LzkxMjM1NDUzMTc0MDYuanBnfGJjZGIyNWVlYjhmOTIxMDU3ZDFjOGEzNTI3ZmUwNGFlNjg5ZjYwM2RiZGVjODM0ZjgyOTBmNTMwYzczZWE4ZTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "KB2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iAce 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HiOS 4.1 based on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e29"), + "name" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Blue", + "description" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Blue", + "price" : "124", + "sku" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-KB2-Mobile-Phone-491550880-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzEwfGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oZWUvOTEyMzU0NDk4OTcyNi5qcGd8NjE3NGRjNDk1NzgwMjViZDNkNWVmOTQ4ZmRjYWFlODM3YmQwYjBlNzVjMmY1Y2I4MmQxNzNjYmFmYzI0NmE1Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "KB2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iAce 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HiOS 4.1 based on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2a"), + "name" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Blue", + "description" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Blue", + "price" : "63", + "sku" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-AIR-Smart-Phones-491551050-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTkwfGltYWdlL2pwZWd8aW1hZ2VzL2gzNS9oZWIvOTEyODg2NDc0MzQ1NC5qcGd8YzdmMTMyZWZjN2VmMmE2YTA3NmFkMDEwYjhkZmZlMTRiZjMyNzczZjViZDUyZGFiNjIxNjI3YjliZmJjMWZhMg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 AIR" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1 (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz 64 bit Quad Core Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Itel", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2b"), + "name" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gold", + "description" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gold", + "price" : "63", + "sku" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-AIR-Smart-Phones-491551058-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDY4fGltYWdlL2pwZWd8aW1hZ2VzL2g5Mi9oODcvOTEyODg2NTA3MTEzNC5qcGd8ZDk4ODMzMzcyODU0ODIzYTkwZDA3OWQwZGNlYjQ2OTEzOWQ1Y2NjNTVhYjVlZDE3N2E2ZGUxZTQ4NzljMjNmYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 AIR" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1 (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz 64 bit Quad Core Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Itel", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2c"), + "name" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "description" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "price" : "116", + "sku" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Cloud-Style-4G-Smart-Phone-Grey-491282668-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTE2N3xpbWFnZS9qcGVnfGltYWdlcy9oYzEvaDQyLzg5MjY5MjE3NTI2MDYuanBnfDc2MDllYTE1NWM0ZWQyNjY5NTE4NWI0M2VmOTBhYTVlM2JkYjZmNzlkYzY3NGM0NDgwOGEyNjE4YWY3NDI4Nzc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "Style 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Cloud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0 (Marshmallow)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 400 hours (GSM)" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 10 hours (GSM)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD : Band 3, Band 5
  • \n
  • TDD : Band 40
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery
  • Screen Guard
  • Protection Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Intex", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2d"), + "name" : "Intex Aqua Lions 4G Smart Phone, Champagne", + "description" : "Intex Aqua Lions 4G Smart Phone, Champagne", + "price" : "99", + "sku" : "Intex Aqua Lions 4G Smart Phone, Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Lions-4G-Smart-Phone-Champagne-491297443-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjc1MHxpbWFnZS9qcGVnfGltYWdlcy9oMDgvaDFmLzg5Mjc1Nzk5MzA2NTQuanBnfDgyZGJmZjBiMGExMTZhMzlmMGNmNzAxZWY3ZDdkYzdiNWE0NmJmZmJhMDJmNjNlZTA5Zjc4MDQ3MDNmYzRiZWQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "Lions 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Upto 350 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: Upto 8 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900Mhz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA(900/2100)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD(B3/5), TDD(B40), FDD-LTE/WCDMA/GPRS/EDGE/GSM" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "146.7" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Android Native" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Handset
  • Battery
  • Screen Guard
  • Protection Cover
  • Flip Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TN" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Intex", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2e"), + "name" : "LYF C451 Smart Phone 8 GB, 1 GB RAM, White/Gold", + "description" : "LYF C451 Smart Phone 8 GB, 1 GB RAM, White/Gold", + "price" : "73", + "sku" : "LYF C451 Smart Phone 8 GB, 1 GB RAM, White/Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-C451-Smart-Phone-White-Gold-581108681-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjIxOXxpbWFnZS9qcGVnfGltYWdlcy9oYjgvaDFiLzg4OTA3MTI0MjQ0NzguanBnfDk0NDMxZjI4OTE1NDE4ODk0YmY2MzYzNjQxMTlmYWQwZmJlNzJjMTk3Y2JlZjQ0NGQwNGYzZWU2MTc1YWI3MGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "C451" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0.1 (Marshmallow)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: Up to 6 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 240 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 12.5 Hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/ BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE-FDD BAND3(1800)/ BAND5(850)
  • \n
  • LTE-TDD BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB OTG support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad-Core Qualcomm Snapdragon 210 MSM8909" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger Adapter
  • Earphone
  • USB cable
  • QSG
  • Warranty card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "LYF", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2f"), + "name" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Champagne", + "description" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Champagne", + "price" : "116", + "sku" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-CLOUD-20STYLE-491282669-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTczNnxpbWFnZS9qcGVnfGltYWdlcy9oMGYvaDAzLzg5MjY5MzE5MTA2ODYuanBnfDc0ZDYyMjMwN2RiODBmOTA0YjdkODU4MTVmMzVjNjhlYmI3Yzg2YzFjOGM4NjQxNjA1MTI2ZTc4M2E4OTY1NDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "Style 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Cloud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0 (Marshmallow)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 400 hours (GSM)" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 10 hours (GSM)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD : Band 3, Band 5
  • \n
  • TDD : Band 40
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery
  • Screen Guard
  • Protection Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Intex", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e30"), + "name" : "Samsung Galaxy J5 Prime SM-G570F Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Samsung Galaxy J5 Prime SM-G570F Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "245", + "sku" : "Samsung Galaxy J5 Prime SM-G570F Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J5-Prime-SM-G570F-Smart-Phone-32-GB-Gold-491066688-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzAwMXxpbWFnZS9qcGVnfGltYWdlcy9oMDQvaGM2Lzg4OTA3MDk4MDMwMzguanBnfDhmMTcwYWZhOGU5MWRkOWQ4OWU0OWU3MGMwODkzYWNlODI4NmE5NTJlMjE5MzlkODk5OGZiYTU0NGY5NmE3MWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J5 Prime SM-G570F" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G) - Up to 10 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 15 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.28" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e31"), + "name" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Starry Black", + "description" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Starry Black", + "price" : "102", + "sku" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Starry Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-C-Plus-Smart-Phones-491351085-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mzg0MnxpbWFnZS9qcGVnfGltYWdlcy9oMDQvaGJlLzg5MjExOTE0ODEzNzQuanBnfDRlOWQ0YjllNzgyYjg1MzZhMWE4M2FiYmEyMmZjZWJlYWY1MTI3MTEyMTlmOTRkMWNjMzk5NWY0Y2VlMGJhOTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto C Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/7/8
  • TDD: 40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core 64-bit MediaTek MT6737 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.23" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e32"), + "name" : "Sony Xperia R1 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Sony Xperia R1 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "203", + "sku" : "Sony Xperia R1 Smart Phone 16 GB, 2 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-R1-Smart-Phones-491351084-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI3NXxpbWFnZS9qcGVnfGltYWdlcy9oYmUvaDczLzg5OTg0NzY3NDI2ODYuanBnfDNhODJlMmU0YmE0OGQ1N2FhMmJkNjAxNTY1YzYwZTFhNDNiYThmMGIzYjZhMzBmN2NhYzZjMDA3Njg0M2UyOGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "R1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android 8.0 (Oreo)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2620" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430 Mobile Platform" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.32" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e33"), + "name" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "240", + "sku" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Lite-Smart-Phones-491350925-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDEyOHxpbWFnZS9qcGVnfGltYWdlcy9oMmYvaDMyLzg5MjEyNDA2OTg5MTAuanBnfDRkZGIwYTM3OWQ2YmNmMDkxN2UxNmYxNzk5MTM1ODk3ZmJkNDM0MTQ5YjVmNGIwNGJlNzI4NWI0NjBmZGU4MDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.4 cm (5.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Octa Core MediaTek MT6753V/WA Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.44" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "116" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Gionee", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e34"), + "name" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "240", + "sku" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-20Lite-Smart-Phones-491350924-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTIwOHxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDE4Lzg4ODk2NzkxODM5MDIuanBnfGQxZjg1YTYxYTUwNmM2MjQ4NzljYmI0OTdjZmQ0YmI2MmU1ZjgyMTU2ODIxNTQ3OWE4MzY5ZWE3MDM1MmNhNDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.4 cm (5.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Amigo 4.0 (Android 7.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6753V/WA 64-bit Octa core 1.3GHz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Weight", + "attributeValue" : "116" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Gionee", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e35"), + "name" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "description" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "price" : "102", + "sku" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-Moto-20C-20Plus-Smart-Phones-491351087-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTQyNHxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaDIxLzg4ODk2NzE2NDcyNjIuanBnfDhiMjkzMWY4NWUzMTZmY2Y1NjliNTdiYzdkMmNiMzQwY2M5NWVmNzNhMTJiZTcwNDYxNzdjYzYzNmY4YjM4NGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto C Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850, 900, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: Band 01, 03, 05, 07, 08
  • TDD: Band 40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4. 1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Mediatek MTK6737 Quad Core 1. 3Ghz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e36"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Polaris Blue", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Polaris Blue", + "price" : "1015", + "sku" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Polaris Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S9-Plus-Mobiles-491503480-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjM3fGltYWdlL2pwZWd8aW1hZ2VzL2g3Mi9oYmYvOTExMTg1NzYyNzE2Ni5qcGd8NjBkNjg1NTVhMTI0ZGViNDI0NjY0ZDA0OWVmZDM2NDIwMmMxZTI4Yjc5ZDg5MmRmYWFmMTE0ZTExNWY1NzkwNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Polaris Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 13 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • \n
  • Audio Playback Time: Up to 54 hours
  • \n
  • Internet Usage Time(LTE): Up to 15 hours
  • \n
  • Video Playback Time: Up to 18 hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • \n
  • TD-SCDMA: B34(2010), B39(1880)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD-LTE: B38(2600), B39(1900), B40(2300), B41(2500)
  • \n
  • FDD-LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Exynos 9810 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.18" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e37"), + "name" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Fusion Black", + "description" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Fusion Black", + "price" : "131", + "sku" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Fusion Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551053-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDkwfGltYWdlL2pwZWd8aW1hZ2VzL2hmMi9oZDMvOTEyMzIxMzkwMTg1NC5qcGd8ZTI2NTUyOWE1YWZjMDk5MmMzYzZjN2Q1MTE1Y2QyMzIwNTBjYzlhOWYzOTA4NDczNmQ0YjQwMjZjYzczOWY4Nw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fusion Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation microUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e38"), + "name" : "Samsung Galaxy J2 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Samsung Galaxy J2 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "158", + "sku" : "Samsung Galaxy J2 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/424264c0-faf3-4f43-b398-5b8d2c66d1ea-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDA1MXxpbWFnZS9qcGVnfGltYWdlcy9oNTkvaDlmLzg4MDY1NjEwNTQ3NTAuanBnfDMyMTY3YzY2NDQ2YTkwM2M1NGVjMmExNTg3MjExOGY1MGVjNTAxODE4OTRmZTJkYTgxYjU1MThkNmIyZmU5NGU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time - Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G WCDMA)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850,GSM900,DCS1800,PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS - B1(2100),B2(1900),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100),B3(1800),B5(850),B8(900),B20(800)
  • \n
  • TDD LTE - B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad-Core" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.24" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e39"), + "name" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Fine Gold", + "description" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Fine Gold", + "price" : "203", + "sku" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Fine Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Smart-Phones-491362233-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDEwM3xpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDNlLzg5MjEyMDMxNDY3ODIuanBnfDVjMTRjNzE4NzliNGMxMTE4ZTY4NGM3YjQyZTE0OTY4ZDNhMzMwMGQ5YmVmOWI4YmM0ZDIzZTNjMTE2MjdkYjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+: 850, 900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1, 3, 5, 8, 28, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 1.4 GHz Octa-Core Qualcomm Snapdragon 430" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.35" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3a"), + "name" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "description" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "price" : "85", + "sku" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Pro-Smart-Phones-491362215-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzcwOHxpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDQwLzg5MjEyMDUxMTI4NjIuanBnfDc4NGIxMWE3ODcxNDUwM2I3N2M0YzU0YTg5Mzg1MWQ5MDM1Mjc5NjVkMzM3MTY2ZTVhZjQwMzZiZjJmMTY3Yjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Up to 300 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: up to 10 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 850/1800MHz
  • TDD: 2300MHz
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core Cortex A7 Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3b"), + "name" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Lunar Grey", + "description" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Lunar Grey", + "price" : "203", + "sku" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Lunar Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Smart-Phones-491362235-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDIwN3xpbWFnZS9qcGVnfGltYWdlcy9oM2MvaGY1Lzg5MjEyMDkwNDUwMjIuanBnfGZlNDFmY2MyMjVjMmMyNjk5NDg5ZTE2NjM5YmViNDA0YjVlN2VjNTEwY2JlN2YzYzEzY2U3YTA1NDc4YjRhMjM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lunar Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+: 850, 900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1, 3, 5, 8, 28, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 1.4 GHz Octa-Core Qualcomm Snapdragon 430 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.35" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3c"), + "name" : "Intex Aqua Style 3 Smart Phone 16 GB, 1 GB RAM, Black", + "description" : "Intex Aqua Style 3 Smart Phone 16 GB, 1 GB RAM, Black", + "price" : "86", + "sku" : "Intex Aqua Style 3 Smart Phone 16 GB, 1 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Style-III-Mobile-Phones-491362509-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTE3N3xpbWFnZS9qcGVnfGltYWdlcy9oNjAvaGQxLzg4OTcyMzYyMDU1OTguanBnfDMyZGNiZjU0ZDY4YzA1NDg5MTVmZDVlYTNkYTY1MjkzYWI5NjIxMTMyNDhjNGQ1YzU1MmIwYjk3OTNlMjJlMjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Aqua Style 3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "5 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 2100/1900/850/900 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1800/2300 MHz" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Spreadtrum Quad Core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "164" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3d"), + "name" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Iron Grey", + "description" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Iron Grey", + "price" : "145", + "sku" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Iron Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E4-Plus-Mobile-Phones-491379572-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzI1NHxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDNhLzg5MjE5MTEyNjMyNjIuanBnfDc4NmNkMTBlMWU3ODUzNzRkZjEyODE0ODIxYjc3MWI2MmU4Mjg5MTkyNGQ3N2RlOGMyYWQ2ZTMyYTVhYzZiN2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto E4 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B40
  • FDD: B1/3/5/7/8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz MT6737 quad core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.8" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3e"), + "name" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Oxford Blue", + "description" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Oxford Blue", + "price" : "203", + "sku" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Oxford Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-Moto-G5S-Smart-Phones-491362232-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODQyMnxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDVkLzg5NzgzNTkzNTMzNzQuanBnfGQyMWFlYTAxNDQ5Zjg2OTg4NWE1MmJlOTQxNDE5YzliOGZlNDM2ODUzODNkMjYxZmE1M2NkOWQ4M2QzZTk1YjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Oxford Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+ (850, 900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE: B1, 3, 5, 8, 28, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + HSPA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz octa-core Qualcomm Snapdragon 430 processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.35" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bottom-port loud speaker" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3f"), + "name" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Champagne", + "description" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Champagne", + "price" : "85", + "sku" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Pro-Smart-Phones-491362214-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDY2MHxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaDU5Lzg5MjExOTk4Njk5ODIuanBnfDg1NmJhZDNiMzUwNmY0YWMwMDRjMmE5YTFmNzcxYzBiMTIzYmMxMDc4Y2YyODU5ZTE4YzQ1MGJjMDIyMGZlNDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Up to 300 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: up to 10 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 850/1800MHz
  • TDD: 2300MHz
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e40"), + "name" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "145", + "sku" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-E4-PLUS-Smart-Phones-491379573-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTE0MnxpbWFnZS9qcGVnfGltYWdlcy9oZjAvaDZjLzg5ODE2MzQ4NDI2NTQuanBnfDQwYWE3NTQxZDAzODFjMzdiMzUyZThkZjBhMGUxZWM4ZTQwMDQ2ZDEwYmVmMGEyZjMwZDg1MWI3YWI4YjY5NDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "E4 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE B40
  • \n
  • FDD LTE B1/3/5/7/8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MT6737 Quad-core, ARM Mali T720 MP1 650 MHz processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.75" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "198" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e41"), + "name" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "145", + "sku" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-E4-PLUS-Smart-Phones-491379574-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTA3OHxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDE1Lzg5ODE2MzU0OTgwMTQuanBnfDk0NGM5NjMxYjdiNTkyNTdkZWUyMjA5YzI0MmRhYWU5OTVlNjRiZWQwYTUyYmVlM2RkM2ZiYzE5YTdmYjNjZjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "E4 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE B40
  • \n
  • FDD LTE B1/3/5/7/8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MT6737 Quad-core, ARM Mali T720 MP1 650 MHz processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.75" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "198" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e42"), + "name" : "Samsung Galaxy J7 Prime 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Samsung Galaxy J7 Prime 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "218", + "sku" : "Samsung Galaxy J7 Prime 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J7-Prime-2-Smart-Phones-491379672-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEzMXxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaDIxLzg5ODE2ODc1OTkxMzQuanBnfDRlNWM3NWU3NTM1ZTBjZjk0MzNmNDY5NTExMWY2NjAzZjVkNGY4MmQ2YTU2MGFiZWU5ZDgzZTg2YWM1NjgwYmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J7 Prime 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6GHz Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e43"), + "name" : "Samsung J7 Duo Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Samsung J7 Duo Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "261", + "sku" : "Samsung J7 Duo Smart Phone 32 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J7-Duo-Smart-Phones-491379712-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjgzNnxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDUwLzg5ODE2NDUwNjYyNzAuanBnfDdmY2FmMTVlYzIxZTQwNjQ5M2E1OWFhMzM3MjRmYzZmMTJkYmVjZDNjYmExYzJjMDg2YTliMjVhYTEzNTMxZmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J7 Duo" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours\nInternet Usage Time(LTE): Up to 13 hours\nInternet Usage Time(Wi-Fi): Up to 13 hours\nVideo Playback Time: Up to 17 hours\nAudio Playback Time: Up to 66 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 20 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Exynos 7 Series processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.35" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e44"), + "name" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Ocean Blue", + "description" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Ocean Blue", + "price" : "131", + "sku" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Ocean Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551054-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2hlNy9oZGUvOTEyMzIxMzU3NDE3NC5qcGd8NTI5MGFiZWUwZDI1NTI1OGE5OTZlN2FlMDk4NWM0OGM1OTYwZDE2ZjkxODlhNzEzMjgyYzlmOWZhMjI3NzgwNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation\nmicroUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e45"), + "name" : "Apple iPhone 7 Smart Phone 128 GB, Rose Gold", + "description" : "Apple iPhone 7 Smart Phone 128 GB, Rose Gold", + "price" : "841", + "sku" : "Apple iPhone 7 Smart Phone 128 GB, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-128-GB-Rose-Gold-491282721-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzU5M3xpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGUyLzg5NjMzOTI3NjU5ODIuanBnfDNlNzM3Y2E5NWQzMjAxM2RiYWQyMzBmN2IzNDE2NmIzMDYxZWEzOTA2NWQ4NGMyZjBkNGQxMzZkMzgyY2FmZGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e46"), + "name" : "Apple iPhone 7 Smart Phone 128 GB, Black", + "description" : "Apple iPhone 7 Smart Phone 128 GB, Black", + "price" : "841", + "sku" : "Apple iPhone 7 Smart Phone 128 GB, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-128-GB-Black-491282719-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjUyOXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDI0Lzg5MjcxNjUxNTMzMTAuanBnfDYzOTgwOWE5NThmZmMwYjVmMjNlYWM4NDZhZDUyMDk2ODYzMGI3MzI5Mjc3ZjVkZWI0MDViZjRjMmNhOGQxMGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e47"), + "name" : "Apple iPhone 6 A1549 Smart Phone 32 GB, Space Grey", + "description" : "Apple iPhone 6 A1549 Smart Phone 32 GB, Space Grey", + "price" : "463", + "sku" : "Apple iPhone 6 A1549 Smart Phone 32 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6-A1549-Smart-Phone-32-GB-Space-Grey-491297527-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTM3MXxpbWFnZS9qcGVnfGltYWdlcy9oZTcvaGM3Lzg5MjczNzkxMjgzNTAuanBnfDdiYWVlNGQ5MDM3NGQxZjE4ZTQ2MDcwYWRjZDNlMjdkNWVmOTRkYzM5ZTdjYTYzZDdkM2ZlMDVjMzIxNjk4MGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1549" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 8" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "14 hours (3G)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "1, 2, 3, 4, 5, 7, 8, 13, 17, 18, 19, 20, 25, 26, 28, 29" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Cable" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A8 Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "129" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multi-Touch display with IPS technology
  • Full sRGB standard
  • Dual-domain pixels for wider viewing angle
  • Fingerprint-resistant oleophobic coating on front
  • Display Zoom
  • Reachability
  • M8 motion coprocessor
  • Autofocus with Focus Pixels
  • Five-element lens
  • Sapphire crystal lens cover
  • Auto image stabilisation
  • Panorama (up to 43 megapixels)
  • Photo geotagging
  • Auto HDR for photos and videos
  • Fingerprint identity sensor built into the Home button
  • Charging via USB to computer system or power adapter
  • Video playback - Up to 11 hours
  • Audio playback - Up to 50 hours
  • Apple EarPods with Remote and Mic
  • iPhone 6 is not compatible with existing micro-SIM cards
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e48"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Rose Gold", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Rose Gold", + "price" : "911", + "sku" : "Apple iPhone 7 Plus Smart Phone 32 GB, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Rose-Gold-491282729-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjAzNnxpbWFnZS9qcGVnfGltYWdlcy9oNzEvaGFkLzg4OTAyMTE4Mjc3NDIuanBnfDIyODJjZjAxMTg5ODZhNzg0ODk3ZTU2MGFiMTI5ZDgyYWJmMDYxMTUwMWMzMDA0MzQzNmM1OTExNWZiYTViMzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e49"), + "name" : "Apple iPhone 6 Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 6 Smart Phone 32 GB, Gold", + "price" : "463", + "sku" : "Apple iPhone 6 Smart Phone 32 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6-MQ3E2HN-A-Mobile-Phones-491350940-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjg2NXxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGY4Lzg5MjczOTQ3MjU5MTguanBnfDk2YjkxMThiYmZmM2QyYjUxMDEwNDYzODI3NWQzNDFmNTExOWJlMjExNWZhYjBmYmQyNWE1YjQyNDRiODk5NjM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 8" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "250 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "14 hours (3G)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "1, 2, 3, 4, 5, 7, 8, 13, 17, 18, 19, 20, 25, 26, 28, 29" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Cable" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A8 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "129" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multi -Touch display with IPS technology
  • Full sRGB standard
  • Dual-domain pixels for wider viewing angle
  • Fingerprint-resistant oleophobic coating on front
  • Display Zoom
  • Reachability
  • M8 motion coprocessor
  • Autofocus with Focus Pixels
  • Five-element lens
  • Sapphire crystal lens cover
  • Auto image stabilisation
  • Panorama (up to 43 megapixels)
  • Photo geotagging
  • Auto HDR for photos and videos
  • Fingerprint identity sensor built into the Home button
  • Charging via USB to computer system or power adapter
  • Video playback - Up to 11 hours" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4a"), + "name" : "Sony Xperia XZ1 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Sony Xperia XZ1 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "682", + "sku" : "Sony Xperia XZ1 Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-XZ1-Smart-Phones-491351021-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTAyMXxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaDJmLzg4NzI1ODgwMTc2OTQuanBnfGZlMDI2ZGY4OTJjMGM0OWQxYWZjYTI2YzhmNTRiN2U3MDJlYWVhOGFhZGNmZWI2NTM5MWFhNjAxOGE1YzgyNjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZ1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM GPRS/EDGE" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS HSPA+" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE Cat16" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.74" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB Type-C" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4b"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Lilac Purple", + "price" : "1015", + "sku" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Lilac Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Lilac-Purple-491379610-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjQ3fGltYWdlL2pwZWd8aW1hZ2VzL2hiMy9oZWQvODkyMTUwOTMzMDk3NC5qcGd8MTI5OWIzNzU2ZGI3ZmQwNjQwMjNjMDk3NzIxZjU3ZTQwYTMwMDZhNTM1MTkwNWU0ZmE4NDE1OGFjNDNlMjgwNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4c"), + "name" : "Samsung Galaxy J2 Smart Phone 8 GB, 1 GB RAM, White", + "description" : "Samsung Galaxy J2 Smart Phone 8 GB, 1 GB RAM, White", + "price" : "129", + "sku" : "Samsung Galaxy J2 Smart Phone 8 GB, 1 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-Smart-Phones-491188236-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjQ3MnxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaGI2Lzg5MjExNjEyMDM3NDIuanBnfDE0ZDFhZGVjNDIzMmNmOTYyYjEwZGRiZmFlYzA3ZDY0NTQwMGFhYWE2NjdjNjhmMWIwZmRmYjg0ZGMyNDU0N2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Lollipop 5.1.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "DC-HSDPA 42/5.76 850/900/1900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE Cat.4 B20(800)/B5(850)/B8(900)/ B3(1800)/B1(2100)/B7(2600)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Exynos 3475 Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "130" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB, v2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4d"), + "name" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "description" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "price" : "153", + "sku" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-CAMON-I-AIR-2-Smart-Phone-491550702-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDE1fGltYWdlL2pwZWd8aW1hZ2VzL2gzMi9oN2MvOTA5NTkzNzg1MTQyMi5qcGd8OGQ3MWU1OWQzNTA5NGVhZDdjZjg3NWYyMDhiZTNlODhkZTAwMDM2MzgxNmVjNTY2YWY5YWRlZjgzMWUwNDQwOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "iAir2+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4e"), + "name" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "description" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "price" : "87", + "sku" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A45-Smart-Phones-491420219-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTYwfGltYWdlL2pwZWd8aW1hZ2VzL2g2Zi9oZGQvOTA1NDkxNzI5NjE1OC5qcGd8YTY0ZWZhYWVkM2I1ZGZhNGY3MmQwYmEzNTIyMDcyZDI5MDBkZjQyYTEzYWJhYjIyOGMxOGEzYTc5NTQwOTUwNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A45" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 2100/1800/850 MHz B1/B3/B5
  • \n
  • TD-LTE: 2300/2500 MHz B40/B41rn
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.08" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4f"), + "name" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Anthracite Grey", + "description" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Anthracite Grey", + "price" : "87", + "sku" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Anthracite Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A45-Smart-Phones-491420218-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTgyfGltYWdlL2pwZWd8aW1hZ2VzL2g3Mi9oYjAvOTA1NTA2NDkxNTk5OC5qcGd8OWYwYjA2ZmRjZThjNTI5OGFiMzQzYjU0MjEyNGRlNDRkYmIyYjc3OGMxNTdhMWQ2NTQyMzU1YjFjMWM0MmU3Yw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Anthracite Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "A45" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 2100/1800/850 MHz B1/B3/B5
  • \n
  • TD-LTE: 2300/2500 MHz B40/B41rn
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.08" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e50"), + "name" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "description" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "price" : "131", + "sku" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN1-Pro-Camon-I-Sky-2-Smartphones-491420272-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI5NHxpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDFlLzkwMjU4OTc5NTUzNTguanBnfGVkY2VmNDBhYmFjYjJkNzUzYzZhMGM2NGZmMTc4ZjI1MDEwOTFlMTcxNjA0ZmQxZTZmNmMzNzI2ZGE0ZjUyMzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN1 Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 1173 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1/B3/B5/B8
  • \n
  • TDD LTE B38 B40 B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.15" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e51"), + "name" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Champagne Gold", + "description" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Champagne Gold", + "price" : "131", + "sku" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Champagne Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN1-Pro-Camon-I-Sky-2-Smartphones-491420273-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTU5NXxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDQ1LzkwMjU4OTgyODMwMzguanBnfGNiZGFmMDA2MGEzZmMyMDEzZmNjOTBhMThlZGY5OWJhOTM5ZDllYWI5NjQ4MTk3YmU4MDYyMmFhMmRjOTk5MjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN1 Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 1173 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1/B3/B5/B8
  • \n
  • TDD LTE B38 B40 B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.15" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e52"), + "name" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Bordeaux Red", + "description" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Bordeaux Red", + "price" : "131", + "sku" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Bordeaux Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN1-Pro-Camon-I-Sky-2-Smartphones-491420274-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDkzNnxpbWFnZS9qcGVnfGltYWdlcy9oYzMvaDZkLzkwMjU4OTc2Mjc2NzguanBnfDAyZGQ0YzIwM2RlMDliZTQ3NGE5MmUyZjIxMDZiZDZiZjk1YjlmNjkxZThjNjMzMGY3NTdiNmRjYWE4MTY3YmE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bordeaux Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN1 Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 1173 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1/B3/B5/B8
  • \n
  • TDD LTE B38 B40 B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.15" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e53"), + "name" : "Apple iPhone XS Smart Phone 64 GB, Silver", + "description" : "Apple iPhone XS Smart Phone 64 GB, Silver", + "price" : "1448", + "sku" : "Apple iPhone XS Smart Phone 64 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-64GB-Silver-491420319-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzYzNHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDk2LzkwMjU5OTI2MjIxMTAuanBnfDVjMWE2ZGFhMTZmYTJiYjRjOGMzMmY0YWE5MDRkNzcwMmEzMGU5YTM5MWFiZTU3MDA3NjdlMzdkOWU3OTZiZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e54"), + "name" : "Motorola moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Fine Gold", + "description" : "Motorola moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Fine Gold", + "price" : "189", + "sku" : "Motorola moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Fine Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Plus-Smart-Phones-491433187-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzYzNHxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGQ0LzkwNTM4NDc3NDg2MzguanBnfDAyM2UwOGU3MzU2NDEwYTM1OTdhODhjZTMzNjM3NmRmNmViYzBlNTRjM2JmYWQzNWI5MDhmNDFmNDY5NmY5MGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto E5 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TDD LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Qualcomm Snapdragon 430 Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "197" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10 W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e55"), + "name" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Blue", + "price" : "341", + "sku" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Smart-Phone-Blue-491419851-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDY0N3xpbWFnZS9qcGVnfGltYWdlcy9oYTgvaDUyLzg5NjA2NzM3NzU2NDYuanBnfDk4NjZkMzgwYTU1MmMxOWEzNTBmY2E5NWM3M2UyNzU5NzY5NDExNGY0ZjI1ZGFhYjM0MDgwMDcyYTBhNjZjNjM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 10 hours
  • Internet Usage Time(LTE): Up to 12 hours
  • Internet Usage Time(Wi-Fi): Up to 13 hours
  • Video Playback Time: Up to 16 hours
  • Audio Playback Time: Up to 70 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256 GB" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7 series Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e56"), + "name" : "Apple iPhone XS Smart Phone 512 GB, Silver", + "description" : "Apple iPhone XS Smart Phone 512 GB, Silver", + "price" : "1956", + "sku" : "Apple iPhone XS Smart Phone 512 GB, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-512GB-Silver-491488025-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzQ1M3xpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDRlLzkwMjU5OTg2NTE0MjIuanBnfDMyYWUxYzkzN2QyMDM3OTUxZDdiNjlkMTkzOTE1MDQ4YjkxNTQ0OTJjYjUxOTU0MmJhZDNlMmYxZWZkNTMyZmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e57"), + "name" : "Apple iPhone XS Max Smart Phone 512 GB, Space Grey", + "description" : "Apple iPhone XS Max Smart Phone 512 GB, Space Grey", + "price" : "2100", + "sku" : "Apple iPhone XS Max Smart Phone 512 GB, Space Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-512GB-Space-Grey-491488033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oODgvaGY2LzkwMjU5ODIwNzA4MTQuanBnfDRhYzdjNDQ2ZDllMWRjYzBhYmViMTU3N2Y5ODNlMzk4M2I0ZWYxMDIxOWJhYzc0MmZlYmUzZjdiYmQ2OTEyMGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e58"), + "name" : "Apple iPhone XS Max Smart Phone 512 GB, Gold", + "description" : "Apple iPhone XS Max Smart Phone 512 GB, Gold", + "price" : "2100", + "sku" : "Apple iPhone XS Max Smart Phone 512 GB, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-512GB-Gold-491488035-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg4NnxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDZkLzkwMjU5ODMxMTkzOTAuanBnfDU2Y2UwY2EyMWE0Y2NmM2JhYjFkYzJmYjYyMWM3NGNiYjg1ZjYxOGRjYmFhNDNmMDQ4NTI0MGZjZDBhMTliNmU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e59"), + "name" : "Google Pixel 2 Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 2 Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "885", + "sku" : "Google Pixel 2 Smart Phone 64 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-2-Smart-Phone-64-GB-Just-Black-491351068-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTU0N3xpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDlkLzg5MjcxNTc5NDQzNTAuanBnfGRlMjEyZDQyOTI5YWU3YmRmNWUyN2Y0ZWJlNDU0ZWRhOTM5YWQ3NDAzN2U2YTI4NDJiODA0ZmI2MGJjZjRkNDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0.0 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1*/2*/3*/4*/5/7*/8/12/13/17/20/25/26/28/29/30/32/66*
  • TD-LTE: Bands 38*/40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 + LE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 GHz + 1.9 GHz, 64 Bit Octa-Core Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.97" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB-C 18W charging plug
  • USB-C to USB-C cable
  • USB-C to 3.5mm headphone adapter
  • Quick start guide
  • Quick Switch Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C, v3.1 Gen 1" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5a"), + "name" : "Google Pixel 2 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 2 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "1058", + "sku" : "Google Pixel 2 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-2-XL-Smart-Phone-64-GB-Just-Black-491351073-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTE0MHxpbWFnZS9qcGVnfGltYWdlcy9oYjAvaGE5Lzg5MjcxODIwNjE1OTguanBnfDZiYzVhMzhiMzJkNzBhOTA4YWJiMGEyMWMxN2NjZjI3OTVmYjU0YWQzMTYxNWRmYjM2ZDEzNjNkZmVmYTkxYjU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "2 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.7 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3520" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8\nCDMA EVDO Rev A: BC0/BC1/BC10" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1*/2*/3*/4*/5/7*/8/12/13/17/20/25/26/28/29/30/32/66*
  • \n
  • TD-LTE: Bands 38*/40/41

  • \n(*Indicates the bands that support 4x4 MIMO)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 + LE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 Ghz + 1.9 Ghz 64 Bit Octa-Core Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB-C 18W charging plug
  • USB-C to USB-C cable
  • USB-C to 3.5mm headphone adapter
  • Quick start guide
  • Quick Switch Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "P-OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C, v3.1 Gen 1" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5b"), + "name" : "Gionee A1 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Gionee A1 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "421", + "sku" : "Gionee A1 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Plus-Smart-Phones-491350914-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTkyMnxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDBjLzg5MjExODM5NDQ3MzQuanBnfDg5MmFiNDM0ZTRiMzdhZTVjMmJjOWYwYzVmZjM4YmI2ZTdlZDY1MmI2ZmZkOTVhNzU1OTEzMWRmYmE5YTQ5ZGU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4550" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 510 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 2.6 GHz Octa Core HelioP25" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.64" + }, + { + "attributeName" : "Width", + "attributeValue" : "8.33" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5c"), + "name" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "description" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "price" : "247", + "sku" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Plus-Smart-Phones-491351089-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDIwMnxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaDczLzg5MjEyNDcyNTI1MTAuanBnfGEyMWU1MzE2NjU4MmQ5ODJlMDFkNDlkMDQzZDJhOGI2NWVmZmE4ZWZjZWQxN2RjZjY3MjBlMjk4ZTg1MTA3MTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lunar Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+ (850, 900, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE (B1, 3, 5, 8, 28, 40)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core Qualcomm Snapdragon 625 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "15 W Turbo Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5d"), + "name" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Blush Gold", + "description" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Blush Gold", + "price" : "247", + "sku" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Blush Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Plus-Smart-Phones-491351093-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTA2N3xpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDZiLzg5MjEyNDc1ODAxOTAuanBnfDNhYzgwYTJhMTEyOTlkMGY2NjQ4MWRhMGNlMDk5ZDI0OTUyNTg0YjM2Y2JmNzZlZjUzMWVkMzc3MWRmZGYwMDI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blush Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+ (850, 900, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE (B1, 3, 5, 8, 28, 40)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core Qualcomm Snapdragon 625 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "15 W Turbo Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5e"), + "name" : "Gionee M7 Power Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Gionee M7 Power Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "265", + "sku" : "Gionee M7 Power Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-M7-Power-Smart-Phones-491351163-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODgyMnxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGFiLzg5MjExOTY3MjQyNTQuanBnfDkyYWY1Yzc4Mjk3YjExMzZlNjRmNzY5NTViMTE4Y2YzMTI0YjVkZmU0NmU5ZDcwMzllMDJhNTZmMjE4YmIyY2E", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "M7 Power" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat (Amigo 5.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "625 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "56 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/B3/B5/B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B2/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38/B39/B40/B41
  • FDD: B1/B2/B3/B5/B7/B8
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Octa core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.63" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Weight", + "attributeValue" : "199" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5f"), + "name" : "Blackberry Keyone Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Blackberry Keyone Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "624", + "sku" : "Blackberry Keyone Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Blackberry-Keyone-Mobile-Phones-491351185-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjE1MnxpbWFnZS9qcGVnfGltYWdlcy9oMmYvaDYyLzg4OTcyMzU4Nzc5MTguanBnfGYzMmZhNzY0OTVjMDhiMzI0N2NiMmQ3NmQ2YTgxYWY4YjQ0OGM3Njc4M2JiNzAyNTdjYWM5YmI3ZWMxZWY3OWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Keyone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "BlackBerry" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3505" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "515 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "29 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "HSPA+: (B1, B2, B4, B5, B6, B8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TD-LTE: (B38, B39, B40, B41)
  • \n
  • FD-LTE: (B1, B2, B3, B4, B5, B7, B8, B12, B13, B17, B19, B20, B28, B29, B30)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + LTE" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz 64 Bit Qualcomm Snapdragon 625 octa core processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "181" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Up to 52 customizable shortcuts
  • \n
  • Convenience key" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 4" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "manufacturer" : "Blackberry", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e60"), + "name" : "Sony Xperia R1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Sony Xperia R1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "232", + "sku" : "Sony Xperia R1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-R1-Plus-Mobile-Phones-491351088-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjI4NHxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDc0Lzg5MjE5MTQ4Njc3NDIuanBnfDc5YzJiYmE2MTY5ZTNjN2FlMjkwNDBmMzEwZGUzYzE2YmQ0MWVlZmJlMzVlOGRlYjM0OTZkN2Q4Zjk2MjU4OWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "R1 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0 (Oreo)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2620" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS + GLONASS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430 Mobile Platform" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e61"), + "name" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "319", + "sku" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-XA1-Plus-Smart-Phones-491351033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTkzNXxpbWFnZS9qcGVnfGltYWdlcy9oNTgvaGNkLzg5OTM0NTQ3MTkwMDYuanBnfGQ4ODc1MmY3M2Q3YjkxMmYxYWJmMjYyZjlhYWE3ODQzMDQyYjIwYzg2M2I2ZjE4YTkxNTk0MTdkM2ExM2RkYjY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Music" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e62"), + "name" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "319", + "sku" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-XA1-Plus-Smart-Phones-491351023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTIyMXxpbWFnZS9qcGVnfGltYWdlcy9oODkvaGVhLzg5OTI3MDE1NzkyOTQuanBnfGU3Y2E5YjIzM2M4MjdkMzYzNDFhMWI2ZmI0NDUxZDFmN2Q0NGExYzMzMjAyOThkZjUyZTAzMGNjN2ZkN2Q4Mjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Music" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e63"), + "name" : "Motorola moto Z2 Play Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "description" : "Motorola moto Z2 Play Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "price" : "435", + "sku" : "Motorola moto Z2 Play Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-Z2-Play-Smart-Phones-491297739-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzgzM3xpbWFnZS9qcGVnfGltYWdlcy9oYTcvaDZiLzg5MjEyMjkwMzM1MDIuanBnfGU2NTljYjA2NzAxMWEzZGUwZDc4MTM0MTM3OGZiZGNkNWQ0OThmNDAyZjE3OWY3NWRhMmIxNDIwZTM2M2M2MzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lunar Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto Z2 Play" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • CDMA (850, 1900 MHz)
  • \n
  • UMTS/HSPA+ (850, 900, 1700, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE (B1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 20, 25, 26, 28, 29, 30, 38, 41, 66)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + CDMA + HSPA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core Qualcomm Snapdragon 626 Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "145" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "15 W Turbo Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB Type-C" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e64"), + "name" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Cloud Silver", + "description" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Cloud Silver", + "price" : "870", + "sku" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Cloud Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-V30-Smart-Phones-491379503-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTE3MXxpbWFnZS9qcGVnfGltYWdlcy9oNDcvaDM0Lzg5OTM0MzI3NjQ0NDYuanBnfDA5MmM3YzQ1NjMwMzFjOGJiY2Y5ODJmNmVjMzExYzZlMDVlZjA4N2VkNzllZmQ5M2U1NWZhYWFjOTRmNGJjN2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "V30+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.2 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B2/B5" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B7/B8/B20/B28/B38/B39/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Media Sync: Allow nearby devices to access content via DLNA
  • \n
  • SmartShare Beam: Wirelessly receive multimedia content
  • \n
  • Screen Sharing (Miracast ): Wirelessly mirror device screen on a compatible display
  • \n
  • A-GPS for Enhanced Location Accuracy
  • \n
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835 2.45 GHz x 4 + 1.9 GHz x 4 Octa-Core MSM8998" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium Aluminum Metal Sides
  • \n
  • IP68 Dust and Water Resistant
  • \n
  • Shock Resistant with MIL-STD-810G Testing
  • \n
  • Voice Recognition
  • \n
  • Power Saving Mode/Battery Saver
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e65"), + "name" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Aurora Black", + "description" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Aurora Black", + "price" : "870", + "sku" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Aurora Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-V30-Smart-Phones-491379502-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTE3NHxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaGRkLzg5OTM0MzUwNTgyMDYuanBnfGQ5NTIwNTEyZjNjNTI4NjEwMzU0Nzc4ZGVlMjA3MmExM2Y3ODBiZjQ3YjkwNDQxM2Q1YjI5OTdiMzg5MjdmOTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "V30+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.2 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B2/B5" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B7/B8/B20/B28/B38/B39/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Media Sync: Allow nearby devices to access content via DLNA
  • \n
  • SmartShare Beam: Wirelessly receive multimedia content
  • \n
  • Screen Sharing (Miracast ): Wirelessly mirror device screen on a compatible display
  • \n
  • A-GPS for Enhanced Location Accuracy
  • \n
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835 2.45 GHz x 4 + 1.9 GHz x 4 Octa-Core MSM8998" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium Aluminum Metal Sides
  • \n
  • IP68 Dust and Water Resistant
  • \n
  • Shock Resistant with MIL-STD-810G Testing
  • \n
  • Voice Recognition
  • \n
  • Power Saving Mode/Battery Saver
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e66"), + "name" : "LG Q7+ Smart Phone 64 GB, 4 GB RAM, Aurora Black", + "description" : "LG Q7+ Smart Phone 64 GB, 4 GB RAM, Aurora Black", + "price" : "276", + "sku" : "LG Q7+ Smart Phone 64 GB, 4 GB RAM, Aurora Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMQ610YB-Smartphones-491538849-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzE0fGltYWdlL2pwZWd8aW1hZ2VzL2g5Yy9oNmMvOTA5Mzg3MTczMDcxOC5qcGd8YzA1ZTBiZTE2NTM2OTgzMDJhMzUxZjI3ODUxOWRkZmZhZDVhOTE5MWEwNjdlMzkyYmUwYmI3MGNhOWRkZDAyNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q7+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: 850/900/1900/2100
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B40/B7/B8/B38/B28/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5GHz MT6750S Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "145" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e67"), + "name" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss White", + "description" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss White", + "price" : "256", + "sku" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss White", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-1-PLUS-Smartphones-491503534-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjgyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oYWYvOTA5Mzg4MTIzMzQzOC5qcGd8NTA2M2FiOWQwYmE1Y2Y1YTM0YThjMTlmNjkzN2RmZmIyZDBiYjBhMDAyYzQ0MjQxMjgxYmUxMDU2MDVjNDNkNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss White" + }, + { + "attributeName" : "Model", + "attributeValue" : "6.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 9.5 hours
  • \n
  • Video playback time: Up to 9 hours
  • " + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 14.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto 20.5 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B850/900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/8
  • \n
  • TDD: 40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e68"), + "name" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss White", + "description" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss White", + "price" : "192", + "sku" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss White", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-5-1-PLUS-Smartphones-491503531-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTU4OHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDgxLzkwOTM4Nzg5Mzk2NzguanBnfGYzNTU0NzNlYjJlYjBiMDI1ZTkyMmQ3MjZlOTg4N2FlZjA4MDNjOGY2YTRiMmZlNDZjODExY2I1OTg1YjBiNWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss White" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "TDD: B40/41" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes - Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e69"), + "name" : "Motorola moto G7 Power Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "description" : "Motorola moto G7 Power Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "price" : "232", + "sku" : "Motorola moto G7 Power Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G7-POWER-Smart-Phones-491550766-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg5fGltYWdlL2pwZWd8aW1hZ2VzL2g3Ni9oNTEvOTExMTUyNjg5OTc0Mi5qcGd8NWI5OTM4YThjZGQxNTA5ZGFlMDcyZjMyMjg1NDI5ZmFjMWQ1MWYzOTVkYzFlMGFkM2FjZGUyNWNhYWQ2MmNhYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G7 Power" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "60 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/2/5/8/19" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE B1/2/3/4/5/7/8//19/20/28/ 38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 632 octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.94" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "193" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "TurboPower charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6a"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "price" : "232", + "sku" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550761-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Nzc4fGltYWdlL2pwZWd8aW1hZ2VzL2hiOS9oZGQvOTExMTUxODMxNDUyNi5qcGd8YjZiYWE1NDZhZGYyZTI4OTE0NTcyMGY0OTQ5N2ZlNTAyMGMwOTBiZTdhY2U0MzFkNmYwZGZkYTFhMzg3MjYyZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6b"), + "name" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "description" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "price" : "181", + "sku" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LLD-AL10-Mobile-Phones-491503331-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODgxfGltYWdlL2pwZWd8aW1hZ2VzL2gzOS9oZWMvOTA3ODM0MDYxNjIyMi5qcGd8NmNiZjA1M2Q3YjhiMmM3ZGQ2YWFjNTk1N2U2NWE1ZDhkMDZjZGY0MmEyNjdiNzQ1NzRiZjhhMTlmZTZlYzAzZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sapphire Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "9 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1, B3, B5
  • \n
  • LTE TDD: B40, B41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.36 GHz Octa Core Kirin 659" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.76" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6c"), + "name" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "description" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "price" : "181", + "sku" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LLD-AL10-Mobile-Phones-491503333-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODI0fGltYWdlL2pwZWd8aW1hZ2VzL2g1MS9oNDcvOTA3ODM0MjI1NDYyMi5qcGd8NTYyZDRhNzdhMmI5ZWM1ZmM5ZTdiMGE3N2YxMDVkODQ0MWNkNzg0ZTQ4ZjIxZjE3NjIxNDUxNDkxZjdjMTFlMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "9 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1, B3, B5
  • \n
  • LTE TDD: B40, B41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.36 GHz Octa Core Kirin 659" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.76" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6d"), + "name" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "172", + "sku" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LND-AL30-Mobile-Phones-491503336-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzYxfGltYWdlL2pwZWd8aW1hZ2VzL2hkOS9oOWEvOTA3ODM1MDc3NDMwMi5qcGd8MTI1ZTM5M2Q5M2EyMTc5MDg3ZTJjNTNiOGQ0OTQxN2JhMDYyOGZmM2Y3NmIyMGIwMjc2NDAzN2RkOWU0ZjMxNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "7C" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (5.99 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "349 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2,B3,B5,B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1,B5,B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE TD: 38,39,40,41
  • \n
  • FDD: 1,3,5,8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm SDM450 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6e"), + "name" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "172", + "sku" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LND-AL30-Mobile-Phones-491503335-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Njg2fGltYWdlL2pwZWd8aW1hZ2VzL2g2OS9oNDkvOTA3ODM0MDI4ODU0Mi5qcGd8MTU0NjliYjJlMjY0YzM3ZTJhYWQ5YWE1YzUxYTFhMTI3ZWUwOWViMmQ0NWZjYzIyYzI4MGY4MTNmNzgwNjdhZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7C" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (5.99 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "349 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2,B3,B5,B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1,B5,B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE TD: 38,39,40,41
  • \n
  • FDD: 1,3,5,8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm SDM450 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6f"), + "name" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Glacier Grey", + "description" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Glacier Grey", + "price" : "181", + "sku" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Glacier Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LLD-AL10-Mobile-Phones-491503332-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDk3fGltYWdlL2pwZWd8aW1hZ2VzL2hhYi9oYzYvOTA3ODM0MjkwOTk4Mi5qcGd8YzNhMDI1MTdjNDgzOGJmZWZhMmI3MDIyNDExZGYyNzg0OWVlMTkwNzcyOTcyNjZiZDBiMWEzNDg3NzI0NmJhYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glacier Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "9 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1, B3, B5
  • \n
  • LTE TDD: B40, B41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.36 GHz Octa Core Kirin 659" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.76" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e70"), + "name" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Platinum Grey", + "description" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Platinum Grey", + "price" : "870", + "sku" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Platinum Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMV405EBW-AINDPM-Smartphones-491550723-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTU4fGltYWdlL2pwZWd8aW1hZ2VzL2g5MC9oOGQvOTEwNTA0Nzk0NTI0Ni5qcGd8YjFjNzQ3ZmMyNTdkMGRlMTZiMGRmNWFiNTE0YzYyZjhkYTAxNGZjYWY0ZDgzOGJlMmI0MGRiNGY0OGYxMWYzYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "New Platinum Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "V40 ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "3120 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.2 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • HSDPA (42.2Mbps)/HSUPA (5.76Mbps)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE VoLTE: 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 20, 28, 32, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "MirrorLink" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 845 up to 2.8 GHz x 4 + 1.7 GHz x 4 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IP68 Dust and Water Resistant and Shock Resistant
  • \n
  • DTS: X Virtual Surround
  • \n
  • 16.2cm (6.4) QHD+ OLED Display
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e71"), + "name" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Moroccan Blue", + "description" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Moroccan Blue", + "price" : "870", + "sku" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Moroccan Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMV405EBW-AINDWU-Smartphones-491550724-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDI4fGltYWdlL2pwZWd8aW1hZ2VzL2hmOC9oYmMvOTEwNTA0NTE5MjczNC5qcGd8ZWI5NGI0OTM3MmQ0OGVjZTYzMzYzYmFiNmUxNWE3ODQyNWVmNmU0OGQ5ZWNiNWNkZWRiN2NkM2E4ZDlmODdmMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "New Moroccan Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V40 ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "3120 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.2 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • HSDPA (42.2Mbps)/HSUPA (5.76Mbps)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE VoLTE: 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 20, 28, 32, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "MirrorLink" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 845 up to 2.8 GHz x 4 + 1.7 GHz x 4 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IP68 Dust and Water Resistant and Shock Resistant
  • \n
  • DTS: X Virtual Surround
  • \n
  • 16.2cm (6.4) QHD+ OLED Display
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e72"), + "name" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, White", + "description" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, White", + "price" : "363", + "sku" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB-White-491297666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjIyMXxpbWFnZS9qcGVnfGltYWdlcy9oMzcvaGU3Lzg5Mjc1MDczMTY3NjYuanBnfGEwMDhjOWM2N2YxZDUxOTU0YmUzMzcwZTQ0N2EzOWQ1MjI4NzcwNjgwOTg1Mjg5M2M0ZDc1MjQ1YTZjNjVmMjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Ultra" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e73"), + "name" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "312", + "sku" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Smart-Phone-Black-491297544-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzA3MHxpbWFnZS9qcGVnfGltYWdlcy9oZjMvaGYxLzg5MjY4Mzg0NTYzNTAuanBnfDNiODA4NDcxZmIxN2RkNTllNGNlMDI2YThmZGY5MDE5MWQxYzk4ZjE5YjViMjViZmJkMGMzOTY2ZTEyMGViOTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4010" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa Core MT6755" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e74"), + "name" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Grey", + "description" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Grey", + "price" : "176", + "sku" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-F103-Pro-Smart-Phone-Grey-491282630-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjM5OXxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaGExLzg5MjczMzU2Nzc5ODIuanBnfDA2ODRhYTA3MDkwZWE1YTg5NTc0ZTVjZTk5MDhhMzYyZGIxODE0YjdmMzJmZGE0ZGNlZTFmNGI4ZDdlZWZmMmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "F103 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android OS" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "369 Hrs (2G) " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "28.57 Hrs (2G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "900MHz/1800MHz/1900MHz/850MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "900MHz/1900MHz/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE(FDD): B3/B5, TDD:B40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "V4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad Core 1.3 GHz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Gesture (Pause Alarm)
  • Smart Vibration Reminder
  • Mood Wallpaper
  • Eco Mode
  • Child Mode
  • Child Mode
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Transceiver
  • Earphone
  • Travel Charger (2A)
  • Data Cable
  • User Manual
  • Warranty Card
  • Protective Film
  • Transparent Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e75"), + "name" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "363", + "sku" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB-Black-491297665-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzA5M3xpbWFnZS9qcGVnfGltYWdlcy9oODAvaGE2Lzg5Mjc1MjA3NTE2NDYuanBnfDNkYzQzOGUzOTZmNjY0YTQyNmZjNTdlMjcwNzIzZmU5MjkyZTU4NmQ0YmQ3ODJiMzRiNzhhN2ViMTczYzRiNzg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Ultra" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e76"), + "name" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "363", + "sku" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB-Gold-491297667-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc1N3xpbWFnZS9qcGVnfGltYWdlcy9oYjIvaGY4Lzg4OTA2MTU0MzExOTguanBnfDM1MDBhNzhjYmViYjZlZTA3OWMyMmZhY2RjMzk3MWQyODBlYTM0MjJiZTNmZGFlNjFlZjY1YzdlZDYzYWM0NmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Ultra" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e77"), + "name" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Luminous Chrome", + "description" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Luminous Chrome", + "price" : "754", + "sku" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Luminous Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZ-Premium-Smart-Phone-Luminous-Chrome-491297664-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDQzOXxpbWFnZS9qcGVnfGltYWdlcy9oODkvaDg2Lzg4OTA1OTcxNDY2NTQuanBnfDIwYWZmYThlMzE5ZGIwZmIyMjQ3YjgyZmM1MDM1MmJiZTlhYmFhMjk2YjQxMjAwOGQ1NGE1ZmEyZTk0MWNjOTM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Luminous Chrome" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZ Premium" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android v7.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3230" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4K HDR Display
  • TRILUMINOS Display for mobile
  • Dynamic Contrast Enhancer
  • Qnovo Adaptive Charging
  • Predictive Hybrid Autofocus
  • 960 fps Super slow motion videos
  • SteadyShot with Intelligent Active Mode (5-axis stablization)
  • 4K recording
  • Digital Noise Cancelling
  • Clear Audio+
  • Stereo speaker with S-Force Front Surround
  • Stereo Recording
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e78"), + "name" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Deepsea Black", + "description" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Deepsea Black", + "price" : "754", + "sku" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Deepsea Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZ-Premium-Smart-Phone-Deepsea-Black-491297663-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjg0MHxpbWFnZS9qcGVnfGltYWdlcy9oOTAvaDQ0Lzg4OTA1Nzg5Mjc2NDYuanBnfDM3MDNmMTlhNTQyN2I0NDUyNmRkMDVkN2MyMzE5ZjU2MGU5MjIzNmE5YzRiOTI2MGViZDgyNjUxYzE3MzQxOGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Deepsea Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZ Premium" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android v7.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3230" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4K HDR Display
  • TRILUMINOS Display for mobile
  • Dynamic Contrast Enhancer
  • Qnovo Adaptive Charging
  • Predictive Hybrid Autofocus
  • 960 fps Super slow motion videos
  • SteadyShot with Intelligent Active Mode (5-axis stablization)
  • 4K recording
  • Digital Noise Cancelling
  • Clear Audio+
  • Stereo speaker with S-Force Front Surround
  • Stereo Recording
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e79"), + "name" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "305", + "sku" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Smart-Phone-Black-491297600-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTUxN3xpbWFnZS9qcGVnfGltYWdlcy9oOWIvaDkwLzg5MjY5NTY5NDU0MzguanBnfDZlNmZmYzc5NTg2MTE3YWE1YjE2Y2VjZWMwN2UxNWRlNjc4MTVlYmNmNThiZDQyZmE4MDNkZmI4ODExOWYzMjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad core 2.3GHz + Quad core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7a"), + "name" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "609", + "sku" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZs-Smart-Phone-Black-491297584-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDU5N3xpbWFnZS9qcGVnfGltYWdlcy9oNzkvaGVjLzg5MjY4ODYzNjMxNjYuanBnfGY2MjU1NjQ3M2M2ZjgzOTE2YTZhYmU1NTA0ODM0NDg4ZGNmMjQ0MTM1YTEzYjdiNTM0YmY1NzU4Nzk0ZDJkZWI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZs" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Google Cast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 820 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7b"), + "name" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Ice Blue", + "description" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Ice Blue", + "price" : "609", + "sku" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Ice Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZs-Smart-Phone-Ice-Blue-491297583-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzUwOHxpbWFnZS9qcGVnfGltYWdlcy9oMTkvaDI2Lzg5NjM2MTcyMjY3ODIuanBnfGE5ZGM2MGJlN2JlMTg5YTJiNmNkOTgzY2I0MjVkNDk1NTgzNjFiOTEzNTBkOGY3MTc1YmUxYzViNDJmZDNlNjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ice Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZs" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Google Cast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 820 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG20
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Hi-res headset MDR-NC750
  • Bluetooth(R) Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7c"), + "name" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Warm Silver", + "description" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Warm Silver", + "price" : "609", + "sku" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Warm Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZs-Smart-Phone-Warm-Silver-491297582-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTQzOXxpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDNjLzg5MjY4NzU3NDYzMzQuanBnfDAzMjk3MDI2ZDJkYTEwZDI1ZmFkYzE3ZGViOTAxYTNhOTI4NTA1MGI2YmFhN2RmMmNhOTM1ZTEwOWZmYmU3Njg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Warm Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZs" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Google Cast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 820 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG20
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Hi-res headset MDR-NC750
  • Bluetooth(R) Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7d"), + "name" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gray", + "description" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gray", + "price" : "312", + "sku" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Smart-Phone-Gray-491297545-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzU2N3xpbWFnZS9qcGVnfGltYWdlcy9oZDYvaGEwLzg5MjY4MDE5NTI3OTguanBnfDUxYzk4YjU3ODg4NTNlYzIzN2U4MDM1MGRjNjdlOThkYTVkZTBhYzE2OTk5ZjA0NGRmZDZkYzg0OTE5NWJiNjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4010" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa Core MT6755" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7e"), + "name" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Graphite Black", + "description" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Graphite Black", + "price" : "232", + "sku" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Graphite Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-Xperia-XA-Black-491188346-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDIwfGltYWdlL2pwZWd8aW1hZ2VzL2hhNy9oNzAvOTA2Njk4MzYyMDYzOC5qcGd8NjAxOTU5Zjc1MDc1MjY5YmFjNDZjYTM5MzYyOTJjZjRhY2NmYTllZDdjNGI5MmRmYTZlYmYxOTEzYjA1MWZiMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Graphite Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "Up to 16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64 bit Octa Core MediaTek helio P10" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "137.4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7f"), + "name" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Lime Gold", + "description" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Lime Gold", + "price" : "232", + "sku" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Lime Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-Xperia-XA-Lime-Gold-491188347-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTM5fGltYWdlL2pwZWd8aW1hZ2VzL2gyZS9oNDIvOTA2Njk4NDI3NTk5OC5qcGd8NjE2OWZlZWJhOWQzZmM5MTYzOWZiZGQwNzFjYTFkZjFkM2EzZDQ3MWU4MTM5MjU2NDcyNzM5NWJiZmZlY2UyNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "Up to 16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64 bit Octa Core MediaTek helio P10" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "137.4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e80"), + "name" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, White", + "description" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, White", + "price" : "305", + "sku" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Dual-White-491297599-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjc2OXxpbWFnZS9qcGVnfGltYWdlcy9oNmEvaGM3Lzg5MjY5NDIzMzA5MTAuanBnfGUwYmYyYjNiMjEyMDRkNTUyYTM3NDZhMTBlY2U0MGY1M2RmYTFjZDQ2NDExZDNmNTRmYjViNjYxYTBmY2E0MzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad core 2.3GHz + Quad core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG30
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Bluetooth Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e81"), + "name" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, White", + "description" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, White", + "price" : "232", + "sku" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, White", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-Xperia-XA-White-491188345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzUxfGltYWdlL2pwZWd8aW1hZ2VzL2hjYi9oM2IvOTA2Njk4MDY3MTUxOC5qcGd8NTYzODE4ZDk1ZTUxNjNlYzM2MWM3MmE5MWE4NTc5ZDgyMmE0YmY1ZTcwMDQ1MjJjZjEyM2YxNzQ4Mjg5Yzg3OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "Up to 16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64 bit Octa Core MediaTek helio P10" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "137.4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e82"), + "name" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Pink", + "description" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Pink", + "price" : "305", + "sku" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Dual-Pink-491297601-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI2OHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDk3Lzg5MjcwMTkzMzU3MTAuanBnfDFjNjg1OWM3N2YxZjBiMDBhOWMzYTMyYjY1MmE4NTVmNGI5NDg3YzVjYmNmMTVkNjc4ZDAwYzY2OGIxMjUyNTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad core 2.3GHz + Quad core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG30
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Bluetooth Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e83"), + "name" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "203", + "sku" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491419864-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDM1MHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDMwLzg5OTM0NTY2ODUwODYuanBnfDZkNTQzYzRhMDI2MmIxNmNlNDk1NTdiZTRkNjM0NzU3NzM4Y2YxNGU3MjczMjE0ZjUzOGY5M2ZmODA5YjMzYjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38/40/41
  • FDD: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.58" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e84"), + "name" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Starry Night", + "description" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Starry Night", + "price" : "392", + "sku" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Starry Night", + "imageUrl" : "https://www.reliancedigital.in/medias/vivo-v11-pro-Blk-Smartphones-491420225-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzM4N3xpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGM5LzkwMjY3OTkxNzM2NjIuanBnfDkyYWJlODgyNGY2ZWMzYzQ2MjUxNDIyYjMzYzI1YTBhNWYxZDA3NThmNzQwOTYxYTc5NGRmN2IwNDQwODcxMmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Night" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11 pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.28 cm (6.41 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android Oreo 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/7/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 660AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e85"), + "name" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "124", + "sku" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Sky-IN3-Smart-Phones-491419898-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzcxMnxpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDY4LzkwNDM5MzkwMzMxMTguanBnfDcxZTRjNzBiZDJjZmY2MjNkYTg0NGU3MjQ3Y2Q3YjQ3Mjg2ZDRiNTdjOWYzOWViMzMwYThkMDkwZmQ1YWIxZDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e86"), + "name" : "OPPO F9 Pro Smart Phone 128 GB, 6 GB RAM, Starry Purple", + "description" : "OPPO F9 Pro Smart Phone 128 GB, 6 GB RAM, Starry Purple", + "price" : "406", + "sku" : "OPPO F9 Pro Smart Phone 128 GB, 6 GB RAM, Starry Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1823-Smart-Phones-491488502-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzUyNHxpbWFnZS9qcGVnfGltYWdlcy9oY2YvaGViLzkxMzgzOTc5Mzc2OTQuanBnfDE2YjQ4NWNmN2EzMDY4MzRiNzgwMWQ4MzhmNjA1MzZlZTVhOTc2NGYwZmI3OTliMWY5MTkxMDQ1ZWUxYTYwNTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.0 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 2 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v2.1(+EDR)/v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/A-GPS/GLONASS/Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE + HSPA+" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MTK P60 octa-core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multi-touch" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e87"), + "name" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Red", + "description" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Red", + "price" : "95", + "sku" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A22-PRO-Smart-Phones-491538902-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTY2fGltYWdlL2pwZWd8aW1hZ2VzL2hmNC9oNGUvOTE0MTU2MzkxNjMxOC5qcGd8NjllYTU2NGI4MGEwZjM5NDgxNmMwZDZhMDAwOTk3NjE2YjM1ZWQ0M2FhYjBhYmU1ZWI5OTk1ZmVkYzc2NjU2ZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 480" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A22 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz 64 bit Snapdragon Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Perfect with 5MP AF Rear Camera with Flash
  • \n
  • 4G Volte/Vilte support with Snapdragon chipset
  • \n
  • ViLTE enhances the Audio & Video quality
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e88"), + "name" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "95", + "sku" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A22-PRO-Smart-Phones-491538903-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDU5fGltYWdlL2pwZWd8aW1hZ2VzL2hjNC9oZjEvOTE0MTU2MzU4ODYzOC5qcGd8MWVkOTVjOTc2MzhhYjI3YzhjYWNiMDhjZGZhNjI3MmE0MGI3OGIzY2VmMTRiNmQ2MWZhNmI3NGNiZDk2M2Q1Ng", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 480" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A22 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz 64 bit Snapdragon Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Perfect with 5MP AF Rear Camera with Flash
  • \n
  • 4G Volte/Vilte support with Snapdragon chipset
  • \n
  • ViLTE enhances the Audio & Video quality
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e89"), + "name" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Aurora Black", + "description" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Aurora Black", + "price" : "798", + "sku" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Aurora Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-G7-Plus-Black-Mobile-Phone-491420118-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDQ3OXxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDI5Lzg5OTY4MjUwNzE2NDYuanBnfGRlNmEzMDI5NjM4NDkyODFmMjUxYjQxYjcyYjUwMzIzNDIyYzE1ZmM1NGIyY2UyNGRlZTI5NjU2YjA4NjdhNTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "G7 Plus" + }, + { + "attributeName" : "Series", + "attributeValue" : "ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE6 VoLTE : B1, B2, B3, B4, B5, B7, B8, B12, B13, B17, B20, B28, B38, B39, B40, B41, B46" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Miracast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.8GHz x 4 + 1.7GHz x 4 Octa-Core Qualcomm Snapdragon 845 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "LG Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Super Bright Display - 1000 nit brightness
  • Slow Motion - HD 240 FPS Slow Motion Video Recording
  • Time-Lapse Video - Record a video that plays back faster than normal
  • Super Far-Field Voice Recognition (FFVR)
  • Multi Window - Use two apps simultaneously on a split screen
  • Face Recognition
  • Voice Recognition
  • Google Smart Lock
  • Knock Code
  • Expandable Memory upto 2 TB
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • Quick Start Guide
  • Stereo Ear Microphone
  • USB Data Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8a"), + "name" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Platinum Gray", + "description" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Platinum Gray", + "price" : "798", + "sku" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Platinum Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/lg-G7-platinum-mobile-phone-491420119-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTIxN3xpbWFnZS9qcGVnfGltYWdlcy9oNmUvaGJkLzg5OTY4MTIxOTM4MjIuanBnfDkyMWJiYTUxMjQzYWY3M2Q0ZmFlZDExMDdkMDIxZTRkMTBmNjhkZDg1MzkxZjZlNzI2ZTk2YmVkNDI0OWFkYjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "G7 Plus" + }, + { + "attributeName" : "Series", + "attributeValue" : "ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE6 VoLTE : B1, B2, B3, B4, B5, B7, B8, B12, B13, B17, B20, B28, B38, B39, B40, B41, B46" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Miracast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.8GHz x 4 + 1.7GHz x 4 Octa-Core Qualcomm Snapdragon 845 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "LG Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Super Bright Display - 1000 nit brightness
  • Slow Motion - HD 240 FPS Slow Motion Video Recording
  • Time-Lapse Video - Record a video that plays back faster than normal
  • Super Far-Field Voice Recognition (FFVR)
  • Multi Window - Use two apps simultaneously on a split screen
  • Face Recognition
  • Voice Recognition
  • Google Smart Lock
  • Knock Code
  • Expandable Memory upto 2 TB
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • Quick Start Guide
  • Stereo Ear Microphone
  • USB Data Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8b"), + "name" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "160", + "sku" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J4-Smart-Phones-491419876-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDg4OHxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGUyLzg5OTM0MjU1NTU0ODYuanBnfDVmN2E4ODBlNzc1YTY2MjFmMzc1ZjFiNDg3ZjhkNGVhMWRjYzg3MzQxNTIyMmE0ZjVjYzA0NzFiNWEyNWY5MzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J4" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8c"), + "name" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Blue", + "description" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Blue", + "price" : "86", + "sku" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-GALAXY-A2-CORE-Mobile-Phones-491551070-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODI5fGltYWdlL2pwZWd8aW1hZ2VzL2hhMi9oMDkvOTEzMjQ1MTQ5NTk2Ni5qcGd8YTY3YmQwMjBlNTFhZjgzMWYwMjQyYzA1N2ZiOTdlN2RkNDA4ZWQ2NWMxNzU5YWUyYjQ4YTIwMDkwNTNkNjkxNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.64 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 15 Hours
  • \n
  • Internet Usage Time(LTE): Up to 18 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 16 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900)
  • \n
  • TDD LTE: B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7870 Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8d"), + "name" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "653", + "sku" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-XL-Smart-Phones-491570791-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTQzfGltYWdlL2pwZWd8aW1hZ2VzL2hmYi9oOTEvOTE0MjMzNjE1OTc3NC5qcGd8ZjA5ZDEyNTJlOGI3NmJjNzdlYjkwOWVhMmVkNTVkZjRlNTg0NGFlNTQ2NzRiNWIyY2Y4MjZhZjYwMGU1MmY0ZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2160 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.01" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "167" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8e"), + "name" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "580", + "sku" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Clearly White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-Smart-Phones-491570789-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDgyfGltYWdlL2pwZWd8aW1hZ2VzL2g3OS9oZGYvOTE0MjMzODQ1MzUzNC5qcGd8NjhmY2FkZmM1NWIxNmY0YzIzNmUwZDFlNmZhNDQyNzQ3ZTZjNDRlMDMwZDI1Nzc2YTRmNzgzOWRiOGJiYTQ5Mg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2220 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.01" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "147" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8f"), + "name" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "580", + "sku" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-Smart-Phones-491570788-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzA0fGltYWdlL2pwZWd8aW1hZ2VzL2hkZi9oNDcvOTE0MjM0MDc0NzI5NC5qcGd8ZjVkMWQ2NmQ3NjI0OTY5N2E5ZDdhNjMwZjJiMDE5YzBmYjdkOTZlMDMyNjM2OWNmNmM2YzEyMTg2N2Y5ZjkwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2220 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.01" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "147" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e90"), + "name" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "653", + "sku" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-XL-Smart-Phones-491570790-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Mjc3fGltYWdlL2pwZWd8aW1hZ2VzL2hkNC9oMzAvOTE0MjMzMzg2NjAxNC5qcGd8ZDc0OTFmZTk0OTE5NWJlMzRiYjI2MmQxNzNjZjljMDBlYjhmMmMzNmVlMmE1MDhmYzRiZjM1YTBiMmQ4ZWIxYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2160 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.01" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "167" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e91"), + "name" : "Samsung Galaxy S10+ Smart Phone 1 TB, 12 GB RAM, Ceramic White", + "description" : "Samsung Galaxy S10+ Smart Phone 1 TB, 12 GB RAM, Ceramic White", + "price" : "2072", + "sku" : "Samsung Galaxy S10+ Smart Phone 1 TB, 12 GB RAM, Ceramic White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-C-1TB-6-4-Smart-Phone-491550810-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzI4fGltYWdlL2pwZWd8aW1hZ2VzL2gzZS9oNmQvOTEwNDU2NDc4MTA4Ni5qcGd8ZThiZjQ5ZjU2OTE3OTdlYzg2ZTAyM2M1YWYxN2EzMGQwOTIwNTBhN2Y3MzZlZjAwMmJhMDQ3OTZlNmMxZGI2OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "12 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e92"), + "name" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "232", + "sku" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Moto-Android-One-Black-OC-4-64-6.2-SmartPhone-491550769-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYzNHxpbWFnZS9qcGVnfGltYWdlcy9oZjAvaGNlLzkxMjAyNTQyOTYwOTQuanBnfDExNWQ1OTRmZmE3YzllY2QxYTE5NDM0YWM2MTZiOTAyODI0MTVmNTA4NThmNzM2ZGUwMGFmMWNhODY3Njc0YTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Android One" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15 cm (5.9 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1/3/5/7/8/20/38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice control: Google Assistant
  • Bottom-ported speaker
  • Splash-resistant P2i
  • " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e93"), + "name" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Black", + "description" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Black", + "price" : "160", + "sku" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-A1K-Smart-Phones-491570665-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjA5fGltYWdlL2pwZWd8aW1hZ2VzL2g3OC9oN2UvOTEzNzIzNjcwNTMxMC5qcGd8MDU1NDUwNTNhYThlYTY5Njk0MDY2MjQyNjVhNzA5ODJkMzU0OTUyYWQ2MjYzYmQwNTg4MzQwN2FiMTVkMDdjZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1K" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.5 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK MT6762R" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IMG GE8320 GPU" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e94"), + "name" : "Motorola moto G6 Plus Smart Phone 64 GB, 6 GB RAM, Indigo Black", + "description" : "Motorola moto G6 Plus Smart Phone 64 GB, 6 GB RAM, Indigo Black", + "price" : "356", + "sku" : "Motorola moto G6 Plus Smart Phone 64 GB, 6 GB RAM, Indigo Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G6-PLUS-Smart-Phones-491420065-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTg4fGltYWdlL2pwZWd8aW1hZ2VzL2hhNS9oNDEvOTA1NDkyMzUyMjA3OC5qcGd8N2JkNjVmNjA4MDQ3MTJhMGI2ODgwYTk2YWFlOWNhZmFmY2FkNDE1ZDQ0MmRjOWQ2YTM3OGFhMDBiYWZhMDcxOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Indigo Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G6 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.98 cm (5.9 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3200" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+: B1, 2, 5, 8, 19" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: \tB1, 2, 3, 5, 7, 8, 18, 19, 26, 28, 38, 40, 41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz octa-core Qualcomm Snapdragon 630" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.55" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "TurboPower wall charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e95"), + "name" : "Tecno Camon i IN5 Smart Phone 32 GB, 3 GB RAM, Midnight Black", + "description" : "Tecno Camon i IN5 Smart Phone 32 GB, 3 GB RAM, Midnight Black", + "price" : "145", + "sku" : "Tecno Camon i IN5 Smart Phone 32 GB, 3 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN5-Smart-Phones-491419897-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzgwfGltYWdlL2pwZWd8aW1hZ2VzL2hiZS9oNjYvOTAzMTY4MTQ3NDU5MC5qcGd8NDRmZjQ3ZjZlY2VhY2Y0ZDQyZjQyNGQ0N2Q3MGVhZjBiODMwYjMzNzYwN2UzOTFhMGE3OTI0NDM1MzBiNTJjMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN5" + }, + { + "attributeName" : "Series", + "attributeValue" : "i" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: 1/3/5/8
  • \n
  • LTETDD: 40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MediaTek MT6737 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e96"), + "name" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Blue", + "description" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Blue", + "price" : "69", + "sku" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-C459-Smart-Phones-581109212-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDUxN3xpbWFnZS9qcGVnfGltYWdlcy9oZGYvaDY0Lzg4NzI1Njk5OTUyOTQuanBnfGNmZWFiNjZhYzE1MTI0ZmJjYWMxOGZiMGExYzdlMDVjOGU5NTNjOTA1M2NjY2Q2YmE0OTJiYTRiMWQxZmFmZDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "C459" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 160 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 8 hours on 4G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA: BAND1 (2100)/ BAN00448(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: BAND3(1800)/ BAND5(850)
  • TDD: BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core Qualcomm Snapdragon 210 MSM8909" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "139" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Removable Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB, v2.0" + } + ], + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e97"), + "name" : "Samsung Galaxy J7 SM-J700F Smart Phone 16 GB, 1.5 GB RAM, Gold", + "description" : "Samsung Galaxy J7 SM-J700F Smart Phone 16 GB, 1.5 GB RAM, Gold", + "price" : "232", + "sku" : "Samsung Galaxy J7 SM-J700F Smart Phone 16 GB, 1.5 GB RAM, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J7-SM-J700F-Smart-Phone-Gold-491188279-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM0N3xpbWFnZS9qcGVnfGltYWdlcy9oOWMvaGUxLzg5NjMzMzk2MTYyODYuanBnfDYyYmFiNTliNWZlNWE1NGY3OTc2ZjYyNWU4MDQ2MTNjNjQ0OWRiYzQwMGViMWJhYzhkMjZmMDgyOWU5OWI2MTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J7 SM-J700F" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 9 hrs" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 18 hrs (3G WCDMA)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800), TDD LTE: B40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.24" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "171" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Location Technology - GPS" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e98"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Lemonade Blue", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Lemonade Blue", + "price" : "566", + "sku" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Lemonade Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-6-GB-RAM-Lemonade-Blue-491503310-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDA0MXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaDIxLzkwNzA0NDUzNjMyMzAuanBnfGY3MWU2MDU3NDA1MGMyZjkxMGM1Y2NkYWRiNmE0N2EzNTU2MTk5NDA0OGYwNTY5YjU0NTkyZjczZTE0M2Y4OGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lemonade Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e99"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Caviar Black", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Caviar Black", + "price" : "566", + "sku" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Caviar Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-6-GB-RAM-Caviar-Black-491503312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTMyMnxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaDMwLzkwNzA0NDcwMDE2MzAuanBnfGFkMDE2MzFjYmRmZTJkYzE3Y2QxM2YwNDk4NWRmZDQ1OTU5MWI0ZWQ0NTcwYWI3MTQ1OGNmZjBkNmQwYTk1NTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Caviar Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9a"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Lemonade Blue", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Lemonade Blue", + "price" : "609", + "sku" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Lemonade Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-8-GB-RAM-Lemonade-Blue-491503313-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDA0MXxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaDkxLzkwNzA0NTA3MzcxODIuanBnfGMyZWU1MTJjZjIzYWY0NTg3ZjFhNjM3N2U3NzMzMjY3M2Y1MTVhM2U3YjE3MjY4OWFlYjIwZDQxYzE1MjI3MDQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lemonade Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9b"), + "name" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "description" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "price" : "85", + "sku" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-1-Smart-Phone-Dark-Blue-491379650-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzIxNXxpbWFnZS9wbmd8aW1hZ2VzL2hmZC9oZjYvODkzNDE4OTI2OTAyMi5wbmd8NDYzNjZhNTcyZWI0ZTMyNTJmOWZlNDk1ZmY4ZDU5MDM0ZDNkNDQ2ODk5YzNhYzEyMWUwNDI3NzMxNjBhY2E3Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo (Go edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2150" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "MP3 playback time: Up to 53 hours " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 15 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.77" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "131" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headset
  • Charger
  • Charging/data cable
  • Quick Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9c"), + "name" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Warm Red", + "description" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Warm Red", + "price" : "85", + "sku" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Warm Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-1-Smart-Phone-Warm-Red-491379651-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjY4NXxpbWFnZS9wbmd8aW1hZ2VzL2hlNy9oYWYvODkzNDE4NjQ1MDk3NC5wbmd8OWI5YzNiNTgzMTE0MWQ5NTg5NThjZmFkMzU2YTlmNWNhMWNkNmMwNDMxZmEzOGIwOGZkY2VlNjM5MmJkZWNjMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Warm Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo (Go edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2150" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "MP3 playback time: Up to 53 hours " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 15 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.77" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "131" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headset
  • Charger
  • Charging/data cable
  • Quick Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9d"), + "name" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Silver", + "description" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Silver", + "price" : "112", + "sku" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-2.1-Smart-Phones-491420143-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQ3MHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDE4LzkwMTg5Mjc3NzU3NzQuanBnfDQ5MzgxMzNlNjlhYjdjMzIwOGY2YjYwN2UyMjQxOTg1NTY0OTE0YzhkMjM1ODgzNzk3ZTE3MjUwNjI0NWQ3NTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.96" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9e"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Midnight Gloss Blue", + "price" : "269", + "sku" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Midnight Gloss Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550763-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODA5fGltYWdlL2pwZWd8aW1hZ2VzL2hkZC9oMjYvOTExMTUxNzk4Njg0Ni5qcGd8YzY5OWZhYmFlMTk4MjE4MmM5MDYzMzNmMDEyZjc0MWFjNmU5ZTljMTRlODNhNWUxYjFkNTAzOWI3ZDA2N2M3YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9f"), + "name" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Iron/Steel", + "description" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Iron/Steel", + "price" : "464", + "sku" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Iron/Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-8.1-Smart-Phones-491550751-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDcyfGltYWdlL2pwZWd8aW1hZ2VzL2hkNS9oZTgvOTExNzAyMTMzOTY3OC5qcGd8MTE0ZDI5MDQ0Mjk4ZjRjMzgzZDM2ODFkOTFlYjM4NWY4OGQ1OWJlZDg4MjcwNTkyMzA2NjkyMTI4NmMwOTYxZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron/Steel" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Nokia OZO Surround Sound Capture Recording
  • \n
  • 18W Fast Charging Charger
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea0"), + "name" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Black", + "description" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Black", + "price" : "102", + "sku" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-Core-Smart-Phones-491420211-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM5MXxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGFjLzkwMTg5NTUzNjY0MzAuanBnfDQ1OTJjOTA0MWRlN2Y1NDhmOGVkMGE4MGI1MWFmM2M0ZTgxMjcxNzNlYWY0Njk1ODdkYTBkOTVmMjVjZDc1ZDY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • \n
  • Internet Usage Time (LTE): Up to 17 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UTMS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea1"), + "name" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Lilac Purple", + "price" : "906", + "sku" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Lilac Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Lilac-Purple-491379606-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDg1fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oMDkvODkyMTUwODAyMDI1NC5qcGd8NmViNmJlZTExN2ZjYTNiZjRiOTllZmY4ZjAzZjU5ZjE1MDI5ZmRkOTllNmQ0OTljYjU4YWU1M2E3Y2ZhMThhMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea2"), + "name" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Lilac Purple", + "price" : "957", + "sku" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Lilac Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Lilac-Purple-491379668-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIxMXxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaDAzLzg5MzQxNzY4MTcxODIuanBnfGQ0Yjk0YjRjZmFiNWQyNDNiMjAwYjNjODE4ZTJhN2FkNmI4ZTIwNjg2OTQ2ODU3ZjM3MTFjZDAxNmYyZmRkMDc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea3"), + "name" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Midnight Black", + "price" : "957", + "sku" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Midnight Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Midnight-Black-491379667-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2gzYy9oMDkvODkzNDE3NzQ3MjU0Mi5qcGd8ZDk3YzMyZTBhMThlYzg0OGJhZGFlZDZhODJhYjNmNmRhNDRjZGYyY2RlYThlZTNjMDU5NWMyMmY0NDljOWRhZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea4"), + "name" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Coral Blue", + "price" : "957", + "sku" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Coral Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Coral-Blue-491379666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI0M3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDdkLzg5MzU3MDY3MjIzMzQuanBnfDUyNmQwMWY5ZTlkNGI0MDJmN2E5YTUxZGE2OTI3ZDUxMWE2NWIyMWUyMjRlMGNmMThlYjRkOGVhNzI0YzhhMTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea5"), + "name" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "description" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "price" : "85", + "sku" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Smart-Phone-Rose-Gold-491419889-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTEyfGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oOWIvODk5NzM0MDg3MjczNC5qcGd8MzhhZTU2ZjE3YWQ5ZWRlNzRhMzM0NzUyZDIwMjE1ZmQxNmViY2Y0OWMyZGJiOTliMGUwN2I3MWNhZDIwODExMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.05" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea6"), + "name" : "Motorola moto G6 Play Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Motorola moto G6 Play Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "189", + "sku" : "Motorola moto G6 Play Smart Phone 32 GB, 3 GB RAM, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-moto-G6-Play-Smart-Phone-Blue-Mobile-Phones-491392291-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTg2N3xpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGQwLzkwMDI4NzgxNzMyMTQuanBnfDA4MmE2NTk3M2M3NmI3YmQ0YTNmNjNiZTYzNWZlOGRiMzU0Y2ZmMjRlOTAzODFkMTZhOTAxOWYxOTAwNmQ2MWQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G6 Play" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 32 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2 EDR & BLE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430 processor with a 1.4 GHz octa-core CPU and 450 MHz Adreno 505 GPU" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.22" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice control - Google Assistant
  • Device sync - Cross Share software compatible
  • Polymer Glass Body
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • TurboPower wall charger
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro-USB" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea7"), + "name" : "Moto E5 Smart Phone 16 GB, 2 GB RAM, Flash Grey", + "description" : "Moto E5 Smart Phone 16 GB, 2 GB RAM, Flash Grey", + "price" : "160", + "sku" : "Moto E5 Smart Phone 16 GB, 2 GB RAM, Flash Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Smartphones-491433184-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODA5M3xpbWFnZS9qcGVnfGltYWdlcy9oMzkvaDgwLzkwMDc2NTQ4OTU2NDYuanBnfGMzYzJjZjkwNDUyNzFkOGY3YzE0ZjhhN2EzMmMwZjBiYWU5MzY5MGI1YmFhZjg4Nzg2ZWMxYTcyMjFjODM3YTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Flash Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "E5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "14 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM band 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA band 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD LTE band- 1/3/5/8 TDD LTE band-38/40/41 (2535–2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.22" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Expandable Storage
  • \n
  • Resolution: HD+ (1440 × 720)
  • \n
  • NFC
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "manufacturer" : "Moto", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea8"), + "name" : "Motorola moto G6 Smart Phone 64 GB, 4 GB RAM, Indigo Black", + "description" : "Motorola moto G6 Smart Phone 64 GB, 4 GB RAM, Indigo Black", + "price" : "261", + "sku" : "Motorola moto G6 Smart Phone 64 GB, 4 GB RAM, Indigo Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G6-Smart-Phones-491392293-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTU1MXxpbWFnZS9qcGVnfGltYWdlcy9oNGQvaDU0LzkwNTM4NTAzNzAwNzguanBnfDdjNDgyMTc2ZjA4ZGU1NzdjNGExODYwZmE0OWNhYmJjZDJkNzcyM2NhMGJmM2FhMTkyOGI2ZjdiYjc1OGM4OGY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Indigo Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G6" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2, B3, B5, B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1, B2, B5, B8, B19" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1 (2100) B2 (1900) B3 (1800) B5 (850) B7 (2600) B8 (900) B26 (850+) B28 (700 APT) B38 (TD2600) B40 (TD2300) B41 (2535M to 2655M)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "167" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "TurboPower wall charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea9"), + "name" : "Motorola moto E5 Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "description" : "Motorola moto E5 Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "price" : "160", + "sku" : "Motorola moto E5 Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Smart-Phones-491433185-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDQ5OXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDZmLzkwNTM4NDc0MjA5NTguanBnfGRlZjQ1NjE4Y2IxNTY3NGNjOTQ3YTRkOTJmOGVjNGZiMGZhYTA2OWQ2NDNhN2ZjMzYwZTVhYzkwZDdlNDE1NmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones" + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto E5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TDD LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 Qualcomm Snapdragon 425 GHz Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10 W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eaa"), + "name" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Lime Green", + "description" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Lime Green", + "price" : "29", + "sku" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Lime Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-ProBuds2-BT-535-Wireless-Earphone-Lime-Green-491362738-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTg2fGltYWdlL2pwZWd8aW1hZ2VzL2g2Yy9oODkvODkwMzA3MDEyMjAxNC5qcGd8YzFjZmRmZWUxZDRkOTk3OWJhNTc5NzQ3MGJiOTJhMmY1YWM0MzU4ZGNkZjVkMDNhODUyZDQ5OWE4Y2Q0MGRkNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging Cable
  • User Manual
  • Warranty Card
  • Carry Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "ProBuds2" + }, + { + "attributeName" : "Model", + "attributeValue" : "BT-535" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Green" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + } + ], + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eab"), + "name" : "JBL T110BT Wireless Earphone, Black", + "description" : "JBL T110BT Wireless Earphone, Black", + "price" : "37", + "sku" : "JBL T110BT Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110BT-Headphones-and-Headsets-491377967-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDkwN3xpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDdiLzg5MzY4MjQ3MDA5NTguanBnfDkxOTc1YmI0MWVhYzhiOWNmNDZhOWNhODVlYmEzMjFiODYyYjQ5NWFlMGRkZDliM2RjOGNlZGVjNjBhYWFhMTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.2" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "96" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eac"), + "name" : "Sony WI-C300 Wireless Earphone, Blue", + "description" : "Sony WI-C300 Wireless Earphone, Blue", + "price" : "50", + "sku" : "Sony WI-C300 Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WI-C300-Headphones-and-Headsets-491378322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzQ1OXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaGVmLzg5MzY4NjIzNTEzOTAuanBnfGE2ZGU0MWM5NzMzNTY1ZGJiNGQ5YTVkZWM0MTFlNWIzOTNjZGViM2QxYTcyMWY3MGFkOGEzNGVjMGJlMDc0N2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Micro-USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm neodymium drivers for dynamic sound
  • \n
  • Comfortable behind-the-neck style
  • \n
  • Smartphone compatible with hands-free calling
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ead"), + "name" : "Reconnect Collar Buddy RAWEB1002 Wireless Earphone, Black", + "description" : "Reconnect Collar Buddy RAWEB1002 Wireless Earphone, Black", + "price" : "44", + "sku" : "Reconnect Collar Buddy RAWEB1002 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Wireless-Earphone-RAWEB1002-491430965-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjM5fGltYWdlL2pwZWd8aW1hZ2VzL2hhMy9oNTMvOTA4ODM1MzYzMjI4Ni5qcGd8YTZlMWVmODc5MmI5OWFmNTZmZjExZTlmMWE0YjQ3NDE5ODZmNDUxYzg4OWZjZDA5YzE2OTBjZjAzOGY1N2Y4NA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "Up to 1.5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "320" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Model", + "attributeValue" : "RAWEB1002" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "10" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eae"), + "name" : "Sony WH-1000XM3 Wireless Headphone, Black", + "description" : "Sony WH-1000XM3 Wireless Headphone, Black", + "price" : "435", + "sku" : "Sony WH-1000XM3 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-92480181-Headphones-And-Headsets-491431107-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY1fGltYWdlL2pwZWd8aW1hZ2VzL2hiYi9oZDAvOTA2OTkyMzAwODU0Mi5qcGd8Mjg2OGFlYTRlYjBkZjljOWQyOGQ1YmFmNDU5NzZmODRjZjk1NTMwNmUxOGNmZDkzMDIxMDZlNTRhZGJmMThkZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-1000XM3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Carrying case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless freedom" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "47" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "101" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "104.5" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "225" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "30" + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eaf"), + "name" : "Sony WF-SP700N Wireless Earphone, Black", + "description" : "Sony WF-SP700N Wireless Earphone, Black", + "price" : "189", + "sku" : "Sony WF-SP700N Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WF-SP700N-Headphone-Headset-491430855-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTg4MXxpbWFnZS9qcGVnfGltYWdlcy9oMjgvaGIzLzg5OTk0Njk4NDI0NjIuanBnfGNhMjI5OWFkNDA4MDQ2MjhlYzVhZjY4ODYyNjNjZjcyMjI0ZjJhODFjZGVjYzQwMWZiN2U3NDQxNWQ1MWY3Y2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • 8 hours (Waiting Time)
  • 3 hours (Continuous Music play Back Time)
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WF-SP700N" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Easy Hands-Free Calls At The Click Of A Button
  • \n
  • NFC
  • \n
  • 9 Hours Of Music Playback
  • " + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6.09" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "9" + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb0"), + "name" : "itek HD BTHP001 Wireless Headphone, Black", + "description" : "itek HD BTHP001 Wireless Headphone, Black", + "price" : "29", + "sku" : "itek HD BTHP001 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/iTek-BTHP001-Headphones-and-Headsets-491229646-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTk1NXxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGRmLzg5MzY4NTg0MTkyMzAuanBnfDkzYzllOTM3NDZmNWQ5ZDVjOWViNjQ4NTQzMDZjM2Y0OTg3Mzc2MTExYTliZmQ0OWY3MGYwNDY2YjllZTlkNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTHP001_BK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "3" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "itek", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb1"), + "name" : "Samsung EHS64AVFBECINU Wired Headphone, Black", + "description" : "Samsung EHS64AVFBECINU Wired Headphone, Black", + "price" : "7", + "sku" : "Samsung EHS64AVFBECINU Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EHS64AVFBECINU-Headphone-Headset-491430862-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODU3OHxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaDUyLzg5OTk0Njg4NTk0MjIuanBnfDMxYWMxODRhNmE5Njk1NzNmZTE1MzFhZWMyY2YzZTFkY2U2ODE0NWQ2NjJmOTNjZWVjNTgxZDI4NDM3NDRhN2U", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EHS64AVFBECINU" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "116" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "18 Hz -20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "59" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb2"), + "name" : "JBL T110 Wired Earphone, Black", + "description" : "JBL T110 Wired Earphone, Black", + "price" : "19", + "sku" : "JBL T110 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphones-Headsets-491377941-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjAyOXxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDNlLzg4Nzk3MDcwOTUwNzAuanBnfGRlNTRiZjFmNTIyMzVlN2I3ZDU0OWIyNWE2NDk3ODAwNjY1ZDdiMTJjNmEzZGY4Zjk5YWY4MmJjZThhMGJlMTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb3"), + "name" : "Sony MDR-XB55AP Wired Earphone, White", + "description" : "Sony MDR-XB55AP Wired Earphone, White", + "price" : "37", + "sku" : "Sony MDR-XB55AP Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB55AP-Headphones-and-Headstes-491336251-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjk4OHxpbWFnZS9qcGVnfGltYWdlcy9oNmYvaDY0Lzg5NDY3ODMwOTI3NjYuanBnfDUzZmU4YTk2Yjg0ZmZlOWY5ZjUwNjRiMzFlZTkzNmU0MmQzOGEwYmY1ZDk4MDNmYzdmN2NkOTA5NTViMGVjMzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB55AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Carrying Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • Approx. 1.2 m cord length
  • " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb4"), + "name" : "Reconnect REVERB RAWHB1001 Wireless Headphone, Black/Silver", + "description" : "Reconnect REVERB RAWHB1001 Wireless Headphone, Black/Silver", + "price" : "29", + "sku" : "Reconnect REVERB RAWHB1001 Wireless Headphone, Black/Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-RAWHB1001-Headphone-Headsets-491336259-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDUyN3xpbWFnZS9qcGVnfGltYWdlcy9oOTgvaDcwLzkwNDY5Mzg2NDg2MDYuanBnfDU2NDgyMWM2NjQ2ZGY2MzBhMzM5YmZiODJhYWUzODY1YTAwNTQ4Mzk5MTc2ODgxYzIzZTgxZTczYWU2MTFlYjg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "REVERB" + }, + { + "attributeName" : "Model", + "attributeValue" : "RAWHB1001" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curvy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Silver" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb5"), + "name" : "Philips SHE1505 Wired Earphone, Black", + "description" : "Philips SHE1505 Wired Earphone, Black", + "price" : "6", + "sku" : "Philips SHE1505 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE1505-Headphones-and-Headstes-491378220-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI5MHxpbWFnZS9qcGVnfGltYWdlcy9oNTEvaGQ2Lzg5MTMwMTE2MzgzMDIuanBnfDFlNGI2NzgwNTk0MjE1MTVlNTFiZjg3NDI1ZTk3MjAwOTAxN2E5YzcxNDQxNzQxY2M2N2M5ZjQzYTk5YjQ3OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHE1505" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "10 x 3 x 2 cms" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb6"), + "name" : "Sony MDR-AS210 Wired Earphone, Blue", + "description" : "Sony MDR-AS210 Wired Earphone, Blue", + "price" : "12", + "sku" : "Sony MDR-AS210 Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-AS210-Wired-Earphone-Blue-491277336-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDM2MnxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDE4Lzg4NzcxOTEyMzM1NjYuanBnfGFjYjUxMGJkNWY0ZDRhYjE4YjVjNWUxNjE1YWU4YjliNDdlMTU1ZTE0MjAyODZlYWE1OWZhYzVlMTJiNGYyODA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb7"), + "name" : "Sony MDR-XB550AP Wired Headphone, Red", + "description" : "Sony MDR-XB550AP Wired Headphone, Red", + "price" : "44", + "sku" : "Sony MDR-XB550AP Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Headphones-Headsets-491320705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjAxOHxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaGM3Lzg5MjExMDE2OTcwNTQuanBnfGM0MmNiYmVhMGVlMzQ2MTlhMzJmMTg5ZDVmMzcwNGY2YWNhN2Q1ZTM3YWMzM2Y1ODg3YzBjMDc4MzkxNmVmNGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb8"), + "name" : "Sony MDR-EX255AP Wired Earphone, Red", + "description" : "Sony MDR-EX255AP Wired Earphone, Red", + "price" : "29", + "sku" : "Sony MDR-EX255AP Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Headphones-and-Headstes-491336247-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjM4OXxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGFlLzg5NDY3ODI3NjUwODYuanBnfDljY2VmNTE4NTIyY2M2Nzc1ODc0ZjUyZTA0YzQ3NzE4NGIzZDNhOWQyMzM3YjYxYTk5ZWFhMGQyYWFmODY0ZWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 25000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • \n
  • Approx. 1.2 m cord length
  • " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb9"), + "name" : "Skullcandy JIB S2DUFZ-385 Wired Earphone, Lime & Gray", + "description" : "Skullcandy JIB S2DUFZ-385 Wired Earphone, Lime & Gray", + "price" : "11", + "sku" : "Skullcandy JIB S2DUFZ-385 Wired Earphone, Lime & Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUFZ-385-Headphones-and-Headsets-491167097-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTQ2NnxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDhjLzg5MjIzNTE3NjM0ODYuanBnfDc0ZWY4NWU3MmU3Y2ZlMDcyOTg0OTMyOTY0NzM0MmNjNTdmYjNhZjFlZTgwMTBmM2ZkNTU5MjZjNjA4ODAzYWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime & Gray" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eba"), + "name" : "Sony MDR-XB510AS Wired Earphone, Black", + "description" : "Sony MDR-XB510AS Wired Earphone, Black", + "price" : "41", + "sku" : "Sony MDR-XB510AS Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB510AS-Wired-Earphone-Black-491320672-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDExMnxpbWFnZS9qcGVnfGltYWdlcy9oODkvaGY4Lzg5NDczODYxNTUwMzguanBnfGYwMjI5ZTExNTBkNjViZTE3N2ExMTRjNWI2NTYzNDJhNDc0ZGQ3NmMxMmM1NmM4MjZkNmFiMTE1MmViMzNlNmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB510AS" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebb"), + "name" : "Samsung U Flex EO-BG950CBEGIN Wireless Earphone, Black", + "description" : "Samsung U Flex EO-BG950CBEGIN Wireless Earphone, Black", + "price" : "73", + "sku" : "Samsung U Flex EO-BG950CBEGIN Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EO-BG950CBEGIN-Headphones-Headsets-491362828-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjEyNHxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaDk1Lzg4Nzk3MDE4NTIxOTAuanBnfGVhY2YxNGQ3ZWFhYzQxMmM5OTUzN2VkM2JkYjcxNmEzZTBmMzA4NDVhM2FjYjAyOWY0YTc3MGM1YTQyYjk2YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "U Flex EO-BG950CBEGIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebc"), + "name" : "Philips SHE1525 Wired Earphone, Black", + "description" : "Philips SHE1525 Wired Earphone, Black", + "price" : "14", + "sku" : "Philips SHE1525 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE1525-Headphones-and-Headstes-491378222-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODI4M3xpbWFnZS9qcGVnfGltYWdlcy9oYTcvaGZjLzg5MTQ2Mjk0MjcyMzAuanBnfDNhMTY5MGJiMmRmMmMzZTA4ZDRlMWJmZGEzOTYxYTA2NjBiMGM5YTI0N2E3NGU1NWIyODEzYmRjNmU3YjNiMmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE1525" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "3.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebd"), + "name" : "JBL T290 Wired Earphone, Gold", + "description" : "JBL T290 Wired Earphone, Gold", + "price" : "27", + "sku" : "JBL T290 Wired Earphone, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T290-Headphones-and-Headstes-491377949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTY2OHxpbWFnZS9qcGVnfGltYWdlcy9oNmQvaDZjLzg5NDY4OTE0ODkzMTAuanBnfGUyOWM2ZDBmZDRmNDc2MDM1NjM1MmUyMDhhOWE1MzA5ODhlODM4OTExYzNiNjQxNTQzMmYxYTVhNjM4ZWRlYjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebe"), + "name" : "JBL T290 Wired Earphone, Silver", + "description" : "JBL T290 Wired Earphone, Silver", + "price" : "27", + "sku" : "JBL T290 Wired Earphone, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T290-Headphones-and-Headstes-491377951-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTAyOXxpbWFnZS9qcGVnfGltYWdlcy9oMmYvaGZlLzg5NDY4NzUyMzYzODIuanBnfDZkY2M2M2RmOTUyNjk3M2Q0OWZjMWU5YTYxM2EyNTRkZDZiYTM2MzdlOWEzNWQxN2U5YTMyZjNhMDg1NjhmM2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebf"), + "name" : "JBL E35 Wired Headphone, Blue", + "description" : "JBL E35 Wired Headphone, Blue", + "price" : "58", + "sku" : "JBL E35 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-and-Headsets-491377964-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mzc1OHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDdjLzg5MjIyNzM5MDY3MTguanBnfGYwZGM1MTkwZTI4Y2MzMzhkNWEzZTgyM2E2YzNiMWYyYTUyNGQ1ZjZiN2ExZDAwNzUxNGFlYTI3OWU1YmM1NTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec0"), + "name" : "JBL E35 Wired Headphone, Red", + "description" : "JBL E35 Wired Headphone, Red", + "price" : "58", + "sku" : "JBL E35 Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-and-Headsets-491377965-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDUwMnxpbWFnZS9qcGVnfGltYWdlcy9oNzcvaDgxLzg5MjIyNzQ4ODk3NTguanBnfDRhN2Y3ZjFiNjUzNzliMzFlNzA5M2VlM2NiM2FhYWU1YjBkNTY3YjZlODk4YzE0ZGVmZTRmY2VlM2QyZWIxMTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec1"), + "name" : "JBL E35 Wired Headphone, White", + "description" : "JBL E35 Wired Headphone, White", + "price" : "58", + "sku" : "JBL E35 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-and-Headsets-491377966-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTAxN3xpbWFnZS9qcGVnfGltYWdlcy9oMTQvaDk4Lzg5MjIyNzQyMzQzOTguanBnfGZmMGExODdiZjZkMDBkYTRiYWM3YTcxZjdhODBjODkwNGM1YzFlYTAyZWM3M2VlNjYwMTBmNzdmYjc1NjgzZDg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec2"), + "name" : "JBL Inspire 300 Wired Earphone, Teal", + "description" : "JBL Inspire 300 Wired Earphone, Teal", + "price" : "27", + "sku" : "JBL Inspire 300 Wired Earphone, Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Inspire-300-Headphones-and-Headstes-491377958-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzY3NHxpbWFnZS9qcGVnfGltYWdlcy9oYjMvaDVjLzg5NDY4NzI2MTQ5NDIuanBnfDJmZjI5OTAxNjViZjcwNTYwZmZhYWQzYzA5MzBmN2MwOGEwMTYyZTI2YzdlMmQxOWMxNzU2ZmQxMjBjYTg3NTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Inspire 300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sport carry pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec3"), + "name" : "JBL E55BT Wireless Headphone, Red", + "description" : "JBL E55BT Wireless Headphone, Red", + "price" : "102", + "sku" : "JBL E55BT Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E55BT-Headphones-and-Headstes-491377981-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDc2N3xpbWFnZS9qcGVnfGltYWdlcy9oNTEvaGI5Lzg5NDY4NjM3Njc1ODIuanBnfGVlZmJlMDRmNTk4Y2IzMDhmY2UzZWE2NWE4ZmEwZDE2ZGU2ZTcyYjkzYmUzOTkxNjEyNGMwMDk0MWNjYjJlZjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec4"), + "name" : "JBL E55BT Wireless Headphone, White", + "description" : "JBL E55BT Wireless Headphone, White", + "price" : "102", + "sku" : "JBL E55BT Wireless Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E55BT-Headphones-and-Headstes-491377982-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTkyOHxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDFiLzg5NDY4Njc2OTk3NDIuanBnfGNmNWQ0NGI1ZTA1MWE0ZWZkYmRlNmJmZTAyY2ExNjRlMGIxMjRhODU5YzVlMWNiNzdkMDMwYTlkMjFiNTRjODM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec5"), + "name" : "Sony MDR-EX255AP Wired Earphone, White", + "description" : "Sony MDR-EX255AP Wired Earphone, White", + "price" : "29", + "sku" : "Sony MDR-EX255AP Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Headphones-and-Headstes-491336246-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTMxNXxpbWFnZS9qcGVnfGltYWdlcy9oYTgvaGE2Lzg5NDY3ODI0Mzc0MDYuanBnfDM1MmRkMDU2MWJjYzBlYjA5N2VhY2E1YTk0ZmFkZGNkMDc3NTM0NTkwNmE1ODI1ZGVhODk3MWM1OTc3YzBhM2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 25000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec6"), + "name" : "Sony MDRXB510ASRQE Wired Earphone, Red", + "description" : "Sony MDRXB510ASRQE Wired Earphone, Red", + "price" : "41", + "sku" : "Sony MDRXB510ASRQE Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB510ASRQE-Headphones-and-Headstes-491320671-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjg5N3xpbWFnZS9qcGVnfGltYWdlcy9oMzUvaGIzLzg5NDY4MDA0NTk4MDYuanBnfGU2MzYzOGYwZGYzYjczMTkwMDYyMjMyMGZkYzc0ZTRhMWI3YWVlYWUzNzU4NmJiOTFkODAzNWU5Y2EyMGI0YTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB510ASRQE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Cord length: Approx.1.2 m
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec7"), + "name" : "Sony MDRXB510ASLQIN Wired Earphone, Blue", + "description" : "Sony MDRXB510ASLQIN Wired Earphone, Blue", + "price" : "41", + "sku" : "Sony MDRXB510ASLQIN Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB510ASLQIN-Headphones-and-Headstes-491320673-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDIyNnxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaGRhLzg5NDY3ODc5NDI0MzAuanBnfGJjMGIwZTZjNDljNjdjZDY4MTU2YjNlZDQwMzRiMjBkNjY5NGM2M2E3ZWVkODRkN2Q0NTQyMjM4OTAzODg4Mzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB510ASLQIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Cord length: Approx.1.2 m
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec8"), + "name" : "Sony MDRXB510ASGQIN Wired Earphone, Green", + "description" : "Sony MDRXB510ASGQIN Wired Earphone, Green", + "price" : "41", + "sku" : "Sony MDRXB510ASGQIN Wired Earphone, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB510ASGQIN-Headphones-and-Headstes-491320674-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE1NnxpbWFnZS9qcGVnfGltYWdlcy9oZTYvaDM5Lzg5NDY3ODc0MTgxNDIuanBnfGY0NWIyOTU0YTdkMmViYzhkYTE5NjgzMmJhMDVmNGQyYzRjZmQ1ODkxNDUyMTQzMDkzNmE4NDQ4NzExOTYyYTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB510ASGQIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Cord length: Approx.1.2 m
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec9"), + "name" : "Sony WH-CH400 Wireless Headphone, Red", + "description" : "Sony WH-CH400 Wireless Headphone, Red", + "price" : "73", + "sku" : "Sony WH-CH400 Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-WH-L600-HEADPHONES-491430999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzA5MXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDY0LzkwNTA2MTA3OTQ1MjYuanBnfDlmMzQ0YzU1ZjgyOTk5ODBiODVlZjdiYjYzOGQzYzE5MGJlMTRmOWNmZDZjMjNkMTM2MDY0M2VmMTAxMDU4YjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "WH-CH400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "107" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eca"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Black", + "description" : "JBL Endurance SPRINT Wireless Headphone, Black", + "price" : "58", + "sku" : "JBL Endurance SPRINT Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431089-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzY0OXxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaDU3LzkwNjk5MTI5ODE1MzQuanBnfGMyYzMzM2RhMzg3NTI3MGM5YTY0M2ZhYTBkODNlMGZiMzY0MDZhM2VmNjI0NDhlOGRiMTEyNjM4NmI3N2RlNGU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecb"), + "name" : "Sony WH-CH500 Wireless Headphone, Black", + "description" : "Sony WH-CH500 Wireless Headphone, Black", + "price" : "87", + "sku" : "Sony WH-CH500 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH500-Headphone-Headsets-491430916-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDUzNXxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDEyLzkwNDY5MzQzMjMyMzAuanBnfDA1NWMxMWQ3OTE4NjMzZmZiMzRlMWI5Y2NiMWNmMzUzY2Q2NTFkYWU0MDE4NzNlMTY1NDQzNWE2OTUxZjk3YWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Continuous Music Playback Time: 20 hours
  • Waiting Time: 200 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "WH CH500" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecc"), + "name" : "Sony MDR-XB650BT Wireless Headphone, Black", + "description" : "Sony MDR-XB650BT Wireless Headphone, Black", + "price" : "116", + "sku" : "Sony MDR-XB650BT Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB650BT-Wireless-Headphone-Black-491229616-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzYzOHxpbWFnZS9qcGVnfGltYWdlcy9oNzcvaDMzLzg5Mjc3NjI5MDcxNjYuanBnfGU4NjY1ODA0MmM2YTBjMTJmMjFkNDM1ODIxNWEwNmQ0NDY5NjYwNTE1OWVhNGUyZDI5Zjg3NzFiN2UwMTk2OGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "30 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB650BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Warranty card
  • USB Cable(50cm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium dynamic drivers deliver precise sound
  • NFC One-touch for instant connectivity
  • EXTRA BASS 2 for deep" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "95" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecd"), + "name" : "Sennheiser HD 205 II Wired Headphone, Black", + "description" : "Sennheiser HD 205 II Wired Headphone, Black", + "price" : "51", + "sku" : "Sennheiser HD 205 II Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-205-II-Wired-Headphone-Black-491004801-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDIxM3xpbWFnZS9wbmd8aW1hZ2VzL2g5Mi9oYjMvODkyNzgxODAyMjk0Mi5wbmd8N2VkMzM4ZWZkMDQyZmZiMTkxZWY2YmI0ZDgwMjc0OTM5YjUyZjA2YTJkNmMwNTcwZjg1NzBlMGRlN2FiY2IzMw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "HD" + }, + { + "attributeName" : "Model", + "attributeValue" : "205 II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Weight", + "attributeValue" : "206" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Jack plug: 3.5/6.3 mm Stereo
  • Transducer principle: Dynamic" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Protective Pouch
  • " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ece"), + "name" : "Sennheiser CX 2.00i Wired Earphone, Black", + "description" : "Sennheiser CX 2.00i Wired Earphone, Black", + "price" : "58", + "sku" : "Sennheiser CX 2.00i Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-2.00i-Wired-Earphone-Black-491005008-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTk4NXxpbWFnZS9qcGVnfGltYWdlcy9oNmIvaDFmLzg5Mjc3MzU0NDc1ODIuanBnfDg5NGQ3MjJhNDdiZDU4OWRlNTU4YjE3MTc4ZjExZTQ2ZTk5NmNmMjNkOGZhNDUxOTk4YjQzNDQ4MjMzMDA2MmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 2.00i" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "28" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Ear adapter set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Headset with vibrant sound and deep bass
  • Optimized shape and size for perfect fit and outstanding comfort
  • 4 ear adapter sizes (XS" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecf"), + "name" : "Skullcandy Uproar Wireless Headphone, Black", + "description" : "Skullcandy Uproar Wireless Headphone, Black", + "price" : "73", + "sku" : "Skullcandy Uproar Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Uproar-Wireless-Headphone-Black-491315304-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTEzMnxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaDFmLzg5Mjc3OTg3NTUzNTguanBnfGU2NmU0YzZlYzFlODZjNTQxZjJjZmQ3ZTRkZWJiNTJiYzY5ZDEzMzQwNDU4N2Y0MzU4MDcxMGJiMGQzMGRhNzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Uproar" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Low-profile fit and lightweight design
  • Bluetooth wireless with 10-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed0"), + "name" : "Sennheiser HD 4.30i Wired Headphone, Black", + "description" : "Sennheiser HD 4.30i Wired Headphone, Black", + "price" : "116", + "sku" : "Sennheiser HD 4.30i Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.30i-Wired-Headphone-Black-491320579-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTA4MXxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaGRmLzg5Mjc2NzI0MDE5NTAuanBnfGE3MTA4ZGQ1ZmMyYjZhZjQ5YjU2YjgxODc2MTI0ZWYyM2E3ZDZmY2RjNGJlNjAyODU5ZjczNTg2OTdkZWVmYzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 4.30i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 4.30 - 1.4m detachable single-sided cable with 3-button remote / 3.5 mm angled plug for Apple variants
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed1"), + "name" : "Sennheiser HD 4.40 BT Wireless Headphone, Black", + "description" : "Sennheiser HD 4.40 BT Wireless Headphone, Black", + "price" : "160", + "sku" : "Sennheiser HD 4.40 BT Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.40-BT-Wireless-Headphone-Black-491320588-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Nzk4OHxpbWFnZS9qcGVnfGltYWdlcy9oYjUvaGNkLzg5Mjc3NTI0MjE0MDYuanBnfDUwZWY2NjYyYjQzMDg5MmExNjg0MmNkNWU5N2YxODdlZjcxNDZiM2Q4MTAwNGMyNzUyYTdkMDViMTRmNmZjMjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "HD 4.40 BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed2"), + "name" : "Sennheiser HD 4.20s Wired Headphone, Black", + "description" : "Sennheiser HD 4.20s Wired Headphone, Black", + "price" : "87", + "sku" : "Sennheiser HD 4.20s Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.20s-Wired-Headphone-Black-491320577-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY2NHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaGRiLzg5Mjc2NzU2Nzg3NTAuanBnfGVlZDQzMDgwY2ViZmJlMWNmMTAzODI3MWZhYTRlYmQxYmE1NWZkZTIwZTlhYjlhYTZhNzc5OWQzNGNmMDdhNTg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 4.20s" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed3"), + "name" : "Sennheiser HD 2.30i Wired Headphone, Black", + "description" : "Sennheiser HD 2.30i Wired Headphone, Black", + "price" : "102", + "sku" : "Sennheiser HD 2.30i Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-2.30i-Wired-Headphone-Black-491320575-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjEzfGltYWdlL2pwZWd8aW1hZ2VzL2g5ZS9oMTAvODkyNzY4MDAwNDEyNi5qcGd8NGE4Zjg4Mjk5MDYwZGRkNTgxZjE2Y2FmNTAyMmYwMmI5ZDk5MjFjYzM4ZDdmMmY5YmI5MDhhOGNmZjY2N2E3Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.30i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "22" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "262" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 2.30 - 1.4m detachable single-sided cable with 3-button remote
  • 3.5mm plug
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed4"), + "name" : "Sennheiser HD 2.30G Wired Headphone, Black", + "description" : "Sennheiser HD 2.30G Wired Headphone, Black", + "price" : "102", + "sku" : "Sennheiser HD 2.30G Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-Headphone-HD2-30G-20-BLACK-491320573-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjMwfGltYWdlL2pwZWd8aW1hZ2VzL2hjMC9oOGQvODkyNzY3Nzk3MjUxMC5qcGd8MTY3OGJkMjZiOWU2YzY1NDJhOTkxMDU2ZDdlYzA0YTZjYjA3ZjJmZDc0YWQ5YTVlY2VkMTc3YTI4YzQxOWQ3ZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.30G" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "22" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "262" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 2.30 - 1.4m detachable single-sided cable with 3-button remote
  • 3.5mm plug
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed5"), + "name" : "Sennheiser HD 2.20s Wired Headphone, Black", + "description" : "Sennheiser HD 2.20s Wired Headphone, Black", + "price" : "73", + "sku" : "Sennheiser HD 2.20s Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-2.20s-Wired-Headphone-Black-491320572-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjQwNnxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaGE2Lzg4NzcxNzg1ODUxMTguanBnfGNlNjZhZjAxY2QwZTcyNGMyNWI4MWE2MTYyZmUyMjA5MmFkMDdjMTIyMzY4NjAwNmI1MzI3ZjVkNjMzYjI3YzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.20s" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Weight", + "attributeValue" : "246" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1.4m single sided cable with 1-button remote
  • 3.5mm angled plug
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed6"), + "name" : "Reconnect Sporty EP SE-MIC Wired Headphone, Green", + "description" : "Reconnect Sporty EP SE-MIC Wired Headphone, Green", + "price" : "17", + "sku" : "Reconnect Sporty EP SE-MIC Wired Headphone, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/6417c778-bdec-4871-82a5-320edc48853e-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzAyNnxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaGYxLzg4MDUwMDE3MjM5MzQuanBnfGFkYTI2NDFhYTVlNDk5NDFjZDE3YWQ1NWZkYjU3NWY1OWUzNDQ3NWNhNDA2ZmU0ZTRjODJjNjNlNTVjYzEyMWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EP SE-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "93" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sporty look - Stylish & adjustable clip basis ear size
  • 2*13.5 mm speaker size - Dynamic stereo experience
  • 3.5 mm gold plated plug - Better sound quality
  • " + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed7"), + "name" : "JBL E65BTNC Wireless Headphone, Black", + "description" : "JBL E65BTNC Wireless Headphone, Black", + "price" : "145", + "sku" : "JBL E65BTNC Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE65BTNCBLK-Headphones-and-Headstes-491377983-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTkxMnxpbWFnZS9qcGVnfGltYWdlcy9oZTUvaGE4Lzg5MDQyMzgwMDYzMDIuanBnfDNiOTI4ZWYwMGI4MzlhMGVlNGMzZTY5MDRlYTFjNGMzYTllNDExOTE3NTdiZDg4M2Y3ZDM3NjQwNTZlYWUxZTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLE65BTNCBLK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Fabric" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "258" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed8"), + "name" : "Sony MDR-EX155AP Wired Earphone, White", + "description" : "Sony MDR-EX155AP Wired Earphone, White", + "price" : "19", + "sku" : "Sony MDR-EX155AP Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Headphones-and-Headstes-491336244-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODc4MnxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaGEwLzg5MDQyNDU1NDI5NDIuanBnfDE5MGRkYmZmODZiYjFkMjUyMTRmYmZiMTg5ZmRkOTg3Yjg3OWJkYzk5ZmFmNWZjMWI1ZWQzMTM4MjY2OWM5MzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "5Hz - 24000Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed9"), + "name" : "Sony MDRXB950B1LCE Wireless Headphone, Blue", + "description" : "Sony MDRXB950B1LCE Wireless Headphone, Blue", + "price" : "203", + "sku" : "Sony MDRXB950B1LCE Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB950B1LCE-Headphones-and-Headstes-491320708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDI4M3xpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDI3Lzg5NDY3ODg1OTc3OTAuanBnfDZiMWQyZTM4YTZjMzIxNmNlZWNiMGM3YmJhOWJjOWExZjJlMmFkMmQxYjVjNzFjNjVlNGRkZmE4Y2RhNDUzOGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "18 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB950B1LCE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Connection Cable: YES Headphone cable (approx. 1.2 m" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Optimize sound settings with Sony | Headphones Connect app
  • \n
  • Approx. 4 hours chargr time
  • " + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eda"), + "name" : "JBL T450BT Wireless Headphone, Blue", + "description" : "JBL T450BT Wireless Headphone, Blue", + "price" : "51", + "sku" : "JBL T450BT Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450BT-Headphone-and-Headsets-491332666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTQwNHxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDQzLzg5Nzk3MDg4Mzc5MTguanBnfGE4NjRjOGJhYmUxODgwYTczZTg4Mzc0ODVkM2Y2MjcwYTU5NTk5NmNiMTFlNzk2ZWZmODEwMGRlNjVlNzQ5YWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T450BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dynamic Driver: 32mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edb"), + "name" : "Creative Outlier Sports EF0730 Wireless Earphone, Neon Green", + "description" : "Creative Outlier Sports EF0730 Wireless Earphone, Neon Green", + "price" : "102", + "sku" : "Creative Outlier Sports EF0730 Wireless Earphone, Neon Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0730-Headphones-and-Headsets-491430841-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzUxNnxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDQyLzg5OTQ3MzI2NzEwMDYuanBnfDViZGY0MjA5YWNkZmIyMjRiZDdlYzcyYjBjNDAyZTU4OGIxNTEwOTNlNGI1ZDNkYzBlMmNkZGIyZjQ2ZGJjN2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 11 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Outlier" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0730" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6mm Neodymium Drivers
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Neon Green" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edc"), + "name" : "Creative Aurvana 3 Plus EF0680 Wired Earphone, Bronze", + "description" : "Creative Aurvana 3 Plus EF0680 Wired Earphone, Bronze", + "price" : "174", + "sku" : "Creative Aurvana 3 Plus EF0680 Wired Earphone, Bronze", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0680-Headphones-and-Headsets-491430838-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTU5MXxpbWFnZS9qcGVnfGltYWdlcy9oNDYvaDBiLzg5OTQ3Mjk3ODc0MjIuanBnfDU1YmIxMjIwZjA0NWRiZGU2MTRlMGQ5NDljOTgxODVhN2FlMWM0YjUwZjNmN2E5NmVhZTVjNTY2MTJiYmRlMDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aurvana 3 Plus" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0680" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 Hz - 17 kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bronze" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Inline Control
  • \n
  • Volume Control
  • \n
  • Driver: Dual Balanced Armature Drivers
  • \n
  • Cable Length: 1.3 meter
  • " + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edd"), + "name" : "JBL Reflect Mini Wired Earphone, Blue", + "description" : "JBL Reflect Mini Wired Earphone, Blue", + "price" : "51", + "sku" : "JBL Reflect Mini Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-Headphones-and-Headstes-491377960-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjQyfGltYWdlL2pwZWd8aW1hZ2VzL2hkYi9oNDgvODk0Njg3Njg3NDc4Mi5qcGd8ZDVjZmQxZTIxMjFmYzc2ZGNhNzhjMDk5ODUyMDZmOTdiZGM0MmQ3NTVmOGY3MGQ1OWNlNzE0NGFlYzBhYjU4OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 kHz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ergonomic sport ear-tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ede"), + "name" : "Skullcandy Method S2CDGY-405 Wired Headphone, Gray", + "description" : "Skullcandy Method S2CDGY-405 Wired Headphone, Gray", + "price" : "37", + "sku" : "Skullcandy Method S2CDGY-405 Wired Headphone, Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/491167109-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDgxMXxpbWFnZS9wbmd8aW1hZ2VzL2gwNC9oZmYvODkyNzg1NjI5NTk2Ni5wbmd8N2MxZTBlMjNiMjc4ZDQyMTM2OThlNjNmMTJjZGNhYzA5YzJiYTMyYmM2YzQwNGRmY2M5MzU0YmE3OTVhNWIwOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDGY-405" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edf"), + "name" : "Logitech G Series G233 Wired Headphone, Black", + "description" : "Logitech G Series G233 Wired Headphone, Black", + "price" : "102", + "sku" : "Logitech G Series G233 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Logitech-G233-Headphone-and-Headset-491392227-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTk5fGltYWdlL2pwZWd8aW1hZ2VzL2gxNy9oZGMvOTAxMTM5OTY4ODIyMi5qcGd8Yzk5ZDJhMTdiNjFjMzkxM2JlYjdmODdmMDFjOTllOGM4MGQ4NjNjNTJjZDAzNjgwNGY3N2JmNjMyODViYzgyZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "G Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "G233" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "8.17 (W) x 18.2 (D) x 17.2 (H) cms" + }, + { + "attributeName" : "Weight", + "attributeValue" : "259" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable microphone boom with micro pop filter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Logitech", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee0"), + "name" : "Sennheiser CX 180 II Headphone, Black", + "description" : "Sennheiser CX 180 II Headphone, Black", + "price" : "15", + "sku" : "Sennheiser CX 180 II Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-180-II-Headphone-Black-490552411-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDYxM3xpbWFnZS9wbmd8aW1hZ2VzL2gyYy9oOWIvODkyNzgwODkxMzQzOC5wbmd8YjQ1ZGJhYzA4ZDBkMTQzOTk2ZGJjOWIzMWY3YmZmYmI2NTQzM2U1NTNhYjJiMjJhNWY5NzJjMTU2NTZhMDNlMA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "CX" + }, + { + "attributeName" : "Model", + "attributeValue" : "180 II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Innovative finger-contoured housing design enables for easy adjustment and optimal wearing comfort (different sizes of ear adapters included in delivery)
  • Powerful" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee1"), + "name" : "Skullcandy Uproar Wireless Headphone, White/Gray", + "description" : "Skullcandy Uproar Wireless Headphone, White/Gray", + "price" : "73", + "sku" : "Skullcandy Uproar Wireless Headphone, White/Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Uproar-Wireless-Headphone-White-Gray-491315305-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODY3NnxpbWFnZS9qcGVnfGltYWdlcy9oYzEvaDJmLzg5Mjc3OTg0Mjc2NzguanBnfDEwMGExN2NkNDYzMGY3MzcxODYyMDM3Nzk2Y2U3NGMyZDA0Y2NkOWJlMTMwZjE0ODFiOTEyYzE5OTU3M2FlYmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Uproar" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Low-profile fit and lightweight design
  • Bluetooth wireless with 10-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Gray" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee2"), + "name" : "Skullcandy Stim On Ear Wired Headphone, Red", + "description" : "Skullcandy Stim On Ear Wired Headphone, Red", + "price" : "29", + "sku" : "Skullcandy Stim On Ear Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Stim-On-Ear-Wired-Headphone-Red-491336160-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDAxNnxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaDE0Lzg4NzcxODA4Nzg4NzguanBnfGViMDNmZTlhN2JmYzkwYzMzNzA4Mjc1ZjRhODkyMGNmZmFhZGFjNGQ3NDMwMGYxNjUyOWQyYzNlZDYwM2RiMTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Stim" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee3"), + "name" : "Skullcandy Hesh 2 Wireless Headphone, Black", + "description" : "Skullcandy Hesh 2 Wireless Headphone, Black", + "price" : "124", + "sku" : "Skullcandy Hesh 2 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Hesh-2-Wireless-Headphone-Black-491315306-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTMzNHxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaDYzLzg4NzcyMTcwNTQ3NTAuanBnfDFlOTc0ZDRmYjk2MTk3ZDhiOTUxNzhmN2ZjMTQxMzIwOTg3OWQ1ZjIyOTIzYTlmMGZlMDBkOTI2ZmMwOGIzZWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Hesh 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee4"), + "name" : "Skullcandy Grind Wireless Headphone, Black/Chrome", + "description" : "Skullcandy Grind Wireless Headphone, Black/Chrome", + "price" : "95", + "sku" : "Skullcandy Grind Wireless Headphone, Black/Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Grind-Wireless-Headphone-Black-Chrome-491315296-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODkyOXxpbWFnZS9qcGVnfGltYWdlcy9oYTcvaGU4Lzg5Mjc2NzQwNDAzNTAuanBnfGMzMTY0NTExOTZjZWRkZmI3Mzg5NmE5OTIyNTA4Yzg1M2YzMWZhODA3OTdkNDc2N2VhMzQ5MTM3MThhYzEyMWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Grind" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium materials and widely celebrated acoustics
  • Bluetooth wireless with 12-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee5"), + "name" : "Jabra Sport Pace Wireless Headset, Blue", + "description" : "Jabra Sport Pace Wireless Headset, Blue", + "price" : "87", + "sku" : "Jabra Sport Pace Wireless Headset, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/60306c60-73eb-42b6-97c2-0ea82bc5330b-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQ3MXxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaDRhLzg4MDQ5OTQ4NDI2NTQuanBnfGE3NjIzMjk0NTFlZWM0YmU4ODIwNTBhOTdlMjUwNmIwZmQ5N2I0MDkyZjhhYzIyZjI3MWJmMTdiMzM0MGE4YjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of EarGels
  • FitClip
  • USB cable
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sport" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pace" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Standby time - Up to 5 days
  • Charging time - Approximately 2 hours
  • Talk/Music time - Up to 5 hours
  • Operating range - Up to 10 meters (33 feet)
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "109" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee6"), + "name" : "Sennheiser HD 2.10 Wired Headphone, Black", + "description" : "Sennheiser HD 2.10 Wired Headphone, Black", + "price" : "58", + "sku" : "Sennheiser HD 2.10 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-2.10-Wired-Headphone-Black-491320571-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjM3M3xpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDhiLzg5Mjc2NDA2MTY5OTAuanBnfDE5NmIwNmM1Yzg2MmU3ZDUwYTIwYWU3YjAzNDZlYTdhNDdlNjUzNzJmNjlmY2YxZmQyZWJjYWQwNTBiZWZkNWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.10" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "26" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1.4m symmetrical cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee7"), + "name" : "Reconnect Sporty EP SE-MIC Wired Headphone, Blue", + "description" : "Reconnect Sporty EP SE-MIC Wired Headphone, Blue", + "price" : "17", + "sku" : "Reconnect Sporty EP SE-MIC Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Sporty-EP-SE-MIC-Wired-Headphone-Blue-491228712-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTU2N3xpbWFnZS9qcGVnfGltYWdlcy9oMjAvaDZjLzg5Mjc2NTY2NzMzMTAuanBnfDhkNmY3ZjA1MzMxZWJlMGQyNzM3OGNmNjA4ODFhMzllMTBiMmYyOGZjYTNhMjhiNmFhZGMwMzI1YWY0YTdlNjQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EP SE-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "93" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sporty look - Stylish & adjustable clip basis ear size
  • 2*13.5 mm speaker size - Dynamic stereo experience
  • 3.5 mm gold plated plug - Better sound quality
  • " + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee8"), + "name" : "Sennheiser CX 2.00G Wired Earphone, Black", + "description" : "Sennheiser CX 2.00G Wired Earphone, Black", + "price" : "58", + "sku" : "Sennheiser CX 2.00G Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-2.00G-Wired-Earphone-Black-491005007-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzAwOXxpbWFnZS9qcGVnfGltYWdlcy9oMDcvaGUwLzg5Mjc3MjA4MzMwNTQuanBnfDFjOGI4MWExOTljYjQ3MjlmOWFjNzdjODZkMzQyNTI3OWZlNThmNzM4YzllODUyOTJhZGQ2MGY2YjI2Y2FiOTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 2.00G" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee9"), + "name" : "Skullcandy Smokin Buds 2 S2PGFY-003 Wired Earphone, Black", + "description" : "Skullcandy Smokin Buds 2 S2PGFY-003 Wired Earphone, Black", + "price" : "29", + "sku" : "Skullcandy Smokin Buds 2 S2PGFY-003 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds-2-S2PGFY-003-Wired-Earphone-Black-491167105-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjY4MnxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaGY1Lzg5Mjc4NzU2MjkwODYuanBnfDgzZWJmYjEzYmZhN2RiZGNiMzlmODU5MmMwYTMzMzE0YzU3NmUzNDJhY2JiMmI3ODAzNGNjZjE5NDJhZjI3Yzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eea"), + "name" : "Sony MDR-XB650BT Wireless Headphone, Red", + "description" : "Sony MDR-XB650BT Wireless Headphone, Red", + "price" : "116", + "sku" : "Sony MDR-XB650BT Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB650BT-Wireless-Headphone-Red-491229617-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTUyMXxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaGNhLzg5Mjc3Nzg1MDQ3MzQuanBnfGU0OTA5N2U2Mzk2MzY2MTQ3ZjM3ZjAzNTM5MDRiM2MxZjU5NmIxNmFmMTIwZGZmOGQyYTFiMmMzMTAxMWI3NzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "30 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB650BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Warranty card
  • USB Cable (50 cm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium dynamic drivers deliver precise sound
  • NFC One-touch for instant connectivity
  • EXTRA BASS for deep" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "95" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eeb"), + "name" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Blue", + "description" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Blue", + "price" : "80", + "sku" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/bc29a728-a463-424d-a6dc-571193c58413-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjI5M3xpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGJjLzg4MDUwMDQ2NzMwNTQuanBnfDBmMGJkMTFkM2FhNTBiMDVkY2M5NDQ1ODg4YjUyYjFkNzdjZDUzMTNmNjIxNTFjYzhjYWQ0NzU1MWUwODRmNzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Freebit Ear Tips(Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MZX856" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Average Battery Life : Up to 20 Hours
  • IP67 Waterproof Rated Bluetooth Sport Ear Buds
  • Freebit Ear Tips
  • 9MM Neodymium Drivers
  • Certification : IP67
  • Wireless Range : 33 feet
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eec"), + "name" : "SHINECON VR Play G-04 3D Virtual Reality Headset", + "description" : "SHINECON VR Play G-04 3D Virtual Reality Headset", + "price" : "58", + "sku" : "SHINECON VR Play G-04 3D Virtual Reality Headset", + "imageUrl" : "https://www.reliancedigital.in/medias/SHINECON-VR-Play-G-04-3D-Virtual-Reality-Headset-491277000-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDcyNnxpbWFnZS9qcGVnfGltYWdlcy9oNWQvaGJmLzg5Mjc2MDcwNjI1NTguanBnfDJmZTdjOTc1ZGIyYzBjODk4NTFjMWZiYWI1YjM4MzAyNjUxZGYwZTZkZDgzM2U5MzRmODUyZGY1OGNjMGQwZmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "G-04" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SHINECON" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pupil distance: Adjustable(65-72mm)
  • Adjustable Focal length
  • " + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Strap (420 x 40x 2mm)
  • Cloth (131 x 131 mm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "SHINECON", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eed"), + "name" : "Skullcandy JIB Wireless Earphone, Purple", + "description" : "Skullcandy JIB Wireless Earphone, Purple", + "price" : "44", + "sku" : "Skullcandy JIB Wireless Earphone, Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wireless-Earphone-Purple-491350398-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODY0fGltYWdlL2pwZWd8aW1hZ2VzL2hlOC9oNDYvODg3NzIyMDY1OTIzMC5qcGd8NGI5OTVjMDZjZDA5OTA4OGU4OTBkNDU3YWY0Y2RlNDA4ZGZlNzZmZDk2NWFhYmQ1Yjg3ZDJkZDdiNjY5YTM1Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Purple" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eee"), + "name" : "Sony MDR-XB450AP Wired Headphone, Blue", + "description" : "Sony MDR-XB450AP Wired Headphone, Blue", + "price" : "37", + "sku" : "Sony MDR-XB450AP Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/491182129-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTM3MnxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaDVlLzg5Mjc4NTMwMTkxNjYuanBnfDAwMjgxMWZlNGFhYTc0NmE0MDY4MjRjMTIzODU3N2Q4NmJlMDc2Yzc4YjAyMGNmZDNiZWQ0NjRmODZiMzBmZjc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm driver unit
  • Deep" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eef"), + "name" : "Sony MDR-EX155AP Wired Earphone, Red", + "description" : "Sony MDR-EX155AP Wired Earphone, Red", + "price" : "19", + "sku" : "Sony MDR-EX155AP Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Wired-Earphone-Red-491336242-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDY1fGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oNjUvODg3NzIxNTA4ODY3MC5qcGd8NmFiOWJkMTg1NTBkMmU1MjhmZmIxYzE3NWM3OWQ1Y2JhNzIxY2Y1NTkxMWU1MmNmNTVmYjkwNmY5YWQ1NWE3ZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Cable adjuster
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef0"), + "name" : "Sony MDR-XB450AP Wired Headphone, Red", + "description" : "Sony MDR-XB450AP Wired Headphone, Red", + "price" : "37", + "sku" : "Sony MDR-XB450AP Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491182130-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjE0OHxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaDBjLzg5Mjc4NTcxNDc5MzQuanBnfDI4M2Q2MWJmZjE1Y2E3NTRjZTI3NjU0MGYyNWI2NGYyYjBlNmRjMmYzMDU2MmM3NDA3ZWMxMTgwMWRhYmU0OTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - L-shaped Gold-plated Four-conductor Stereo Mini
  • Microphone Directivity - Omni Direction
  • Effective Frequency of Microphone - 20 Hz - 20" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef1"), + "name" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Red", + "description" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Red", + "price" : "44", + "sku" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-BTH-BT-S-MIC-Bluetooth-Headset-Red-491183557-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzQ1MXxpbWFnZS9qcGVnfGltYWdlcy9oZTkvaGY5Lzg5Mjc2MDU3NTE4MzguanBnfGRhMDkzNDBkM2I0Njk4NzViODc2YzUwN2VkNzQxMTY3NWZiY2Q2Njk3ZGQ1NjgwMDMwNjJiZGJjZTdiOWZjYmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "60" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTH BT-S-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfort fit - Suitable while Sports activity & Travel
  • Music on the GO - Interrupted music for 8 hrs
  • " + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef2"), + "name" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Black", + "description" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Black", + "price" : "80", + "sku" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/60fd794a-5a0f-4272-8557-f48d433acd40-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU2MHxpbWFnZS9qcGVnfGltYWdlcy9oYTQvaDZlLzg4MDUwMDIzNzkyOTQuanBnfGQyMWQ1NGFkYmU2YWY1MzZhMWFhYzE1MjBjODE1ZTZjOTdiZjg1MWQ3NTA2YjljYTc1YjJkMWY3NjllNDMwNDc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Freebit Ear Tips (Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MZX856" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Average Battery Life : Up to 20 Hours
  • IP67 Waterproof Rated Bluetooth Sport Ear Buds
  • Freebit Ear Tips
  • 9MM Neodymium Drivers
  • Certification : IP67
  • Wireless Range : 33 feet
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef3"), + "name" : "JBL E35 Wired Headphone, Black", + "description" : "JBL E35 Wired Headphone, Black", + "price" : "58", + "sku" : "JBL E35 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-Headsets-491377963-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODEyOXxpbWFnZS9qcGVnfGltYWdlcy9oZDYvaDE0Lzg4Nzk3MTE0MjA0NDYuanBnfGU0OTcyNTdhMDBhZmZkMzFlM2NjYTk1Y2VlMTY3MjYzM2IzYjk1NGI3MmNhMjNhM2VkZTZhYjcyZjJiODZhYzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef4"), + "name" : "Philips SHQ6500CL Wireless Bluetooth Earphone, Green/Black", + "description" : "Philips SHQ6500CL Wireless Bluetooth Earphone, Green/Black", + "price" : "53", + "sku" : "Philips SHQ6500CL Wireless Bluetooth Earphone, Green/Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ6500CL-Wireless-Bluetooth-Earphone-Green-Black-491277058-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODY0NHxpbWFnZS9qcGVnfGltYWdlcy9oMGMvaDM0Lzg5Mjc3OTI4NTcxMTguanBnfDhmYjJjOGZmY2NkZGMwZDQ4N2NmYTY5M2JjNWI4NDQzOThlMTViNzk2MTFhMzNkZGJlY2QwYzBlZDBmOTRkOTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Quick start guide
  • USB cable: Included for charging
  • Ear fit stabilizer: 2 pairs
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ6500CL" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music playtime: 4.5 hr
  • Standby time: 55 hr
  • Talk time: 4.5 hr
  • Sound Enhancement: Echo Control" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green/Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "14" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef5"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Teal", + "description" : "JBL Reflect Mini BT Wireless Earphone, Teal", + "price" : "87", + "sku" : "JBL Reflect Mini BT Wireless Earphone, Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLREFMINIBTTEL-Headphones-Headsets-491377978-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYyN3xpbWFnZS9qcGVnfGltYWdlcy9oNTYvaDlmLzg4ODk4NjMwNDUxNTAuanBnfGI1ZDQyNGE3YTc4YTNlOGZmYTM0Yjc3NTY4YTQ0YTRhMGZmOGYzNjk5ZjFkMDM3ZDRhNTk3MjE1MTFlNmY2ZTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 Button In-Line Control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef6"), + "name" : "JBL E55BT Wireless Headphone, Blue", + "description" : "JBL E55BT Wireless Headphone, Blue", + "price" : "102", + "sku" : "JBL E55BT Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE55BTBLU-Headphones-Headsets-491377980-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzY2OXxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaGI2Lzg4ODk4NjIwNjIxMTAuanBnfDBlM2ZlZGZkYWEzYTk0YzU2YjBkMjdkZWQ5ZDExZWNlMjA0OThhOTFlNTAyNWU0MmVkOWQ5MjY2YmRlYzY1N2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef7"), + "name" : "JBL E15 Wired Earphone, Red", + "description" : "JBL E15 Wired Earphone, Red", + "price" : "29", + "sku" : "JBL E15 Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE15RED-Headphones-Headsets-491377954-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTQwNXxpbWFnZS9qcGVnfGltYWdlcy9oZDAvaDMzLzg4ODk4NDYzMzM0NzAuanBnfDRiYzhhNTY3MzA1ODJkMGE2NmFiNDg5MGI0ZjhmNzU2NWJmYTIzYTk5NDMwZTNjYTZmMGNjYzFmMTY1ZjBhY2E", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear Tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef8"), + "name" : "JBL E65BTNC Wireless Headphone, Blue", + "description" : "JBL E65BTNC Wireless Headphone, Blue", + "price" : "145", + "sku" : "JBL E65BTNC Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE65BTNCBLU-Headphones-and-Headstes-491377984-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTEwN3xpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDY2Lzg5MDQyMzQwNzQxNDIuanBnfDlhZjE2NTRmZTdlZGI4ZWYzNzE0NTgzMTJmZTRhNTQ1Y2JlMWZlYzhhMmM0NzAwMTAzMjk5NDhlNmI3YzViNmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLE65BTNCBLU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Fabric" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "258" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef9"), + "name" : "Audio Technica ATH-CKR30iS Wired Earphone, Blue", + "description" : "Audio Technica ATH-CKR30iS Wired Earphone, Blue", + "price" : "56", + "sku" : "Audio Technica ATH-CKR30iS Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Audio-Technica-ATH-CKR30IS-Headphones-and-Headstes-491378345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjk3NXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDk4Lzg5MTMwMjA0ODU2NjIuanBnfGNhYmE4OWJhZDMxMzA1MzFiMmMwYzJmZDIzZTdjNmQxNjE5MjMxMmViZDk2ZTdkZmQyYmM1MmU4YmYyMDJhOGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "ATH-CKR30iS" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Audio Technica" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Cable with smartphone controller and mic (1.2 m)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Audio", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efa"), + "name" : "JBL T290 Wired Earphone, Rose Gold", + "description" : "JBL T290 Wired Earphone, Rose Gold", + "price" : "27", + "sku" : "JBL T290 Wired Earphone, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T290-Headphones-and-Headstes-491377950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQzNnxpbWFnZS9qcGVnfGltYWdlcy9oYTcvaDRkLzg5NDY4NzE2MzE5MDIuanBnfGVjMzg2MzdjZWI0MGZmZDgzOWUxYmNiNDhhNzAzMjhiNjY5OGU4MmI3MThjN2NiM2VmYjcxMTRhMWYzMmMzNDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efb"), + "name" : "Samsung U-Flex EO-BG950CWEGIN Wireless Earphone, White", + "description" : "Samsung U-Flex EO-BG950CWEGIN Wireless Earphone, White", + "price" : "73", + "sku" : "Samsung U-Flex EO-BG950CWEGIN Wireless Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EO-BG950CWEGIN-Headphones-and-Headstes-491362830-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzgyNHxpbWFnZS9qcGVnfGltYWdlcy9oMTEvaDk3Lzg5NDY5NDM3MjE1MDIuanBnfDJkZTg4MDgzOGU0MThhNjBjMjMyZmI0NzBjMzVkYmJjZDQxZmIxYjI2NDBlYmExNzg5ZTI1NDQzNDEwNWZiY2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "U-Flex" + }, + { + "attributeName" : "Model", + "attributeValue" : "EO-BG950CWEGIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efc"), + "name" : "Skullcandy Jib S2DUW-K012 Wireless Earphone, Blue", + "description" : "Skullcandy Jib S2DUW-K012 Wireless Earphone, Blue", + "price" : "44", + "sku" : "Skullcandy Jib S2DUW-K012 Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUW-K012-Headphones-and-Headstes-491350397-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI2MnxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaDQxLzg5NDY5MzAwOTAwMTQuanBnfDZmMzAzMmRiYzdmZjMyYjVhZjNlZTZiMzk4ZmQ5MjY0MmVmODljNDQ4ODUwMGMxN2MyMDkyZmUxYjc0MDBiOGU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUW-K012" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efd"), + "name" : "Skullcandy Method S2CDW-J477 Wireless Earphone, Blue", + "description" : "Skullcandy Method S2CDW-J477 Wireless Earphone, Blue", + "price" : "80", + "sku" : "Skullcandy Method S2CDW-J477 Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2CDW-J477-Headphones-and-Headstes-491336154-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTAxMnxpbWFnZS9qcGVnfGltYWdlcy9oNjUvaDc3Lzg5NDY5Mjg3MTM3NTguanBnfDgxMDhiYmZhZWNkNGI0MGE4Nzk4YTBkZWM4OWU4ZjFiYTZkMmMyMmQwMTYyOTM0N2I0OWY5NmMzYWRiZDg3NGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDW-J477" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efe"), + "name" : "Skullcandy STIM Wired Earphone, White", + "description" : "Skullcandy STIM Wired Earphone, White", + "price" : "29", + "sku" : "Skullcandy STIM Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-STIM-Headphones-and-Headstes-491336158-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxNXxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaDc5Lzg5NDY5MjY3NDc2NzguanBnfDVlY2E3NTkyMzZiMjQ0OTdhNjUxY2ZkNTc3YTUxYzU3ZDA0Nzc3M2E4NGM3MjVlODQ5YzVlNjRhZmY4Y2ZlNWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "STIM" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eff"), + "name" : "JBL Inspire 300 Wired Earphone, Black", + "description" : "JBL Inspire 300 Wired Earphone, Black", + "price" : "27", + "sku" : "JBL Inspire 300 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Inspire-300-Headphones-and-Headstes-491377956-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjA5NnxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDFkLzg5NDY4Njk2NjU4MjIuanBnfDViOTgyOWRlMjZiNGIyMDlkODkzNzE4NWZlZjgyYjBjMjVmMjkyY2Y0MmExNjYzMmY4OTU2ZWMwZDg5M2U4ZTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Inspire 300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sport carry pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f00"), + "name" : "JBL Reflect Mini Wired Earphone, Teal", + "description" : "JBL Reflect Mini Wired Earphone, Teal", + "price" : "51", + "sku" : "JBL Reflect Mini Wired Earphone, Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-Headphones-and-Headstes-491377962-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzQ0NXxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaGQ4Lzg5NDY4NjA5NDk1MzQuanBnfDA3MWI3OWIzZDFhOWM2ZTA0ZDQ3MGIxMTc1YWUzOGU4NjE2ODg1ZDg2NzBiZGMwMTkyZTVhYTgwOGFiY2I4YTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 kHz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ergonomic sport ear-tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f01"), + "name" : "JBL Reflect Mini Wired Earphone, Red", + "description" : "JBL Reflect Mini Wired Earphone, Red", + "price" : "51", + "sku" : "JBL Reflect Mini Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-Headphones-and-Headstes-491377961-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzMwNnxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGJkLzg5NDY4NTU1NzU1ODIuanBnfGNmNjZjZjRkMDBhYWFjZjUzOTcwMzZmY2I2ZmIzYmNlMzRmYWVlZGNiY2ViODA5Njk3YmRjZmQxYTkyNWZhMzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 kHz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ergonomic sport ear-tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f02"), + "name" : "Skullcandy Jib S2DUYK-630 Wired Earphone, Pink", + "description" : "Skullcandy Jib S2DUYK-630 Wired Earphone, Pink", + "price" : "15", + "sku" : "Skullcandy Jib S2DUYK-630 Wired Earphone, Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-630-Headphones-and-Headstes-491362790-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oNWIvaDgyLzg5NDY5MjgzODYwNzguanBnfDBiNjMyNTdmOWY0ZDIxZjgwNTQ3NTEwZWQ0ZDY1NzUxZWRlODM1MTQ0MTE1NzI4OWVmZWM4ODM4ZmQzYjgxZWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-630" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f03"), + "name" : "Skullcandy Jib S2DUYK-629 Wired Earphone, Purple", + "description" : "Skullcandy Jib S2DUYK-629 Wired Earphone, Purple", + "price" : "15", + "sku" : "Skullcandy Jib S2DUYK-629 Wired Earphone, Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-629-Headphones-and-Headstes-491362789-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzAzM3xpbWFnZS9qcGVnfGltYWdlcy9oMjEvaGM1Lzg5NDY5MTg4ODMzNTguanBnfDFhYWI2Mjg2NmE4NzA3M2ViZWM1NTViM2Y0MDllYTJlNmU5NWI2N2Q3OWYxY2YzOGNkNTU4ZDBmMDY0M2MxMjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-629" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Purple" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f04"), + "name" : "Skullcandy Method S2IKW-K610 Wireless Earphone, Grey", + "description" : "Skullcandy Method S2IKW-K610 Wireless Earphone, Grey", + "price" : "58", + "sku" : "Skullcandy Method S2IKW-K610 Wireless Earphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2IKW-K610-Headphones-and-Headstes-491336157-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTYxOXxpbWFnZS9qcGVnfGltYWdlcy9oOTIvaDg0Lzg5NDY5NDExMDAwNjIuanBnfDAxZmQ5ZWI0MjFmMzUzNjJiMTc2ZjFhYmYzZTIxZjc0ZTNhZGI0YmUyYTY5YTYyYmViZmFjZGRkNTI4Yzk3ZDQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2IKW-K610" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f05"), + "name" : "Skullcandy Method S2CDW-J523 Wireless Earphone, Black", + "description" : "Skullcandy Method S2CDW-J523 Wireless Earphone, Black", + "price" : "80", + "sku" : "Skullcandy Method S2CDW-J523 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2CDW-J523-Headphones-and-Headstes-491336155-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTEwNXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDQ1Lzg5NDY5Mzk0NjE2NjIuanBnfGNiYjBiYTdjN2ZhNDYyMGY5N2JhMzBhOGY3OTA4NzkzYmE1MDBjZDQ1ZDg1ZjEyOWY4YTEwMmQwMzAzMDczZTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDW-J523" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f06"), + "name" : "Skullcandy Jib S2DUYK-441 Wired Earphone, White", + "description" : "Skullcandy Jib S2DUYK-441 Wired Earphone, White", + "price" : "15", + "sku" : "Skullcandy Jib S2DUYK-441 Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-441-Headphones-and-Headstes-491362787-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTk4MnxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGE1Lzg5NDY5Mzg0Nzg2MjIuanBnfDA1NGU3Mjg3MDQzMjIyNzk0MDI4ZDFjYjhhNGU5ZTk3MTQzYjIxZDJhYmVlMmZkMGFhMWRmMDA3MDJmMWQzNzU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-441" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f07"), + "name" : "Sennheiser Momentum M2IEBT Wireless Earphone, Black", + "description" : "Sennheiser Momentum M2IEBT Wireless Earphone, Black", + "price" : "218", + "sku" : "Sennheiser Momentum M2IEBT Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-M2IEBT-Headphones-and-Headstes-491336175-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDg3MnxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaDQ0Lzg5NDY3OTQyMzM4ODYuanBnfDU4NDMzMWY2YzJmMWI5ZDcxODAwYzU3MTk2NmI4YzJlODFkMWI0YTgyMjE3MmRjZTVjMTcyOTQxNmVkMzJlZjQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Momentum" + }, + { + "attributeName" : "Model", + "attributeValue" : "M2IEBT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Leather neckband
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15 - 22000 Hz" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f08"), + "name" : "Sony MDR-XB550AP Wired Headphone, Grayish White", + "description" : "Sony MDR-XB550AP Wired Headphone, Grayish White", + "price" : "44", + "sku" : "Sony MDR-XB550AP Wired Headphone, Grayish White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Headphones-Headsets-491320707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODU4OHxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaGViLzg5MjEwODYwOTk0ODYuanBnfDY4ZTQ4OWE4YzIxMzQxMmMxNGQwY2E3ZDViNzBkYjcyMDJiYWUzNjg3Yjg2Y2IwZDExMjQ4YjUyNjQyZGI5ZDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grayish White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f09"), + "name" : "Philips ActionFit SHQ4300OR/00 Sports Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ4300OR/00 Sports Wired Headphone, Orange", + "price" : "22", + "sku" : "Philips ActionFit SHQ4300OR/00 Sports Wired Headphone, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ4300OR-00-Sports-Wired-Headphone-Orange-491183214-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTA5N3xpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDI3Lzg5Mjc4ODU2NTYwOTQuanBnfGIwODc2MjE1NDhhYjU2NDM3ODJmNTFhNzQzZDEwM2RhMGIwYzE3OGVlYTY1N2RmYjVhOGU3N2EzNjA3NDkxMTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ4300OR/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Weight", + "attributeValue" : "29.9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Connector : 3.5 mm
  • Finishing of connector : gold-plated
  • Magnet type : Neodymium
  • Speaker diameter : 8.6 mm
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0a"), + "name" : "Sennheiser CX 6.00 BT Wireless Earphone, Black", + "description" : "Sennheiser CX 6.00 BT Wireless Earphone, Black", + "price" : "109", + "sku" : "Sennheiser CX 6.00 BT Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-6-00-BT-Headphones-and-Headsets-491378224-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzcyNHxpbWFnZS9qcGVnfGltYWdlcy9oYzMvaGJiLzg5MzY4NDgzOTIyMjIuanBnfDVlZTBiMmY0ODQwNmYwMDE0YzMyYzM3MzQ4NzNiNGI1MDZlNjIyMmQwMzc2ZDExYjQ5MTRkYzMxNmI0M2I1OGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 6.00 BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "17-21" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0b"), + "name" : "Philips SHL3070BK Wired Headphone, Black", + "description" : "Philips SHL3070BK Wired Headphone, Black", + "price" : "22", + "sku" : "Philips SHL3070BK Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3070BK-Headphones-Headsets-491362704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjg1NHxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDFiLzg4Nzk2OTUzNjQxMjYuanBnfGU3OGZjMjVjOTg1ZTU1ZWYzZTA2M2RjYjMzOGM3MDA2MDYzNWI2YzQ2OTYxMjNkNzFiODMyNWRlMTQ1NDQxNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3070BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0c"), + "name" : "JBL LIVE 200BT Wireless Earphone, Blue", + "description" : "JBL LIVE 200BT Wireless Earphone, Blue", + "price" : "77", + "sku" : "JBL LIVE 200BT Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-LIVE-200BT-Headphones-and-Headsets-491430945-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTg2fGltYWdlL2pwZWd8aW1hZ2VzL2gxOS9oMTMvOTA4NTA5NDMzMDM5OC5qcGd8NGQ5NzU2YzgxYzVjNTcxMDQ1ZTBlM2QzMTM5OWZkMDYwYjNmM2VjZGM2YjExNWNiMmQwMjhjNTNmOTA3NWNmNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x Sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "LIVE 200BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0d"), + "name" : "JBL LIVE 200BT Wireless Earphone, Black", + "description" : "JBL LIVE 200BT Wireless Earphone, Black", + "price" : "77", + "sku" : "JBL LIVE 200BT Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-LIVE-200BT-Headphones-and-Headsets-491430944-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDk0N3xpbWFnZS9qcGVnfGltYWdlcy9oNDIvaGQxLzkwODUwOTY5NTE4MzguanBnfDZiZGEyNmUwNWRjMWE5MjE0NDE4NTczOTQ4M2IwM2NkNTAyMTViZjBjMmQ0NWUwMDRiZjdhOTRmZjc0MDdlZTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x Sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "LIVE 200BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0e"), + "name" : "itek AER VA S450_BK Wireless Headphone, Black", + "description" : "itek AER VA S450_BK Wireless Headphone, Black", + "price" : "37", + "sku" : "itek AER VA S450_BK Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-S450-BK-Headphone-and-Headsets-491431364-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjAyfGltYWdlL2pwZWd8aW1hZ2VzL2g5MS9oOTUvOTEzMDM1NzY1MzUzNC5qcGd8NTAxYmNiOTk5ZGM2NzNiOWZiMzhkODU5Zjg0MzQ2NWE0NTVhOGQzZWIzOTZkNzljMWQ5YmI5ZTNlZTlkNzE0OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "S450_BK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Optimized for Google Assistant and Siri
  • \n
  • Passive noise cancellation
  • \n
  • HD sound with deep bass
  • " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0f"), + "name" : "Skullcandy JIB Wireless Earphone, Black/Red", + "description" : "Skullcandy JIB Wireless Earphone, Black/Red", + "price" : "44", + "sku" : "Skullcandy JIB Wireless Earphone, Black/Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUW-K010-Headphones-Headsets-491350396-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODc0MXxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaGQzLzg4Nzk2ODkxMzgyMDYuanBnfDQxZTljNTY0NGM2ZWVjOGUzNjZlZjRjYTZlMzVkNjVjNmIxNGNjODhmMWEwMGE4OGZhNTNmN2QxZmQ1YzNlM2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "6 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "40.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f10"), + "name" : "Sony MDR-XB950B1 Wireless Headphone, Black", + "description" : "Sony MDR-XB950B1 Wireless Headphone, Black", + "price" : "203", + "sku" : "Sony MDR-XB950B1 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB950B1-Wireless-Headphone-Black-491320709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDMwMHxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaGM0Lzg5Mjc3NDk0NzIyODYuanBnfDYxMmZkMzhhNWU1ZjcwZmY4NGQ2NmY4OGZkNzcyYzQ4NjE0OWU1ODdhZTNlNjczMDQwMDFmMjA3YTlhNzhlY2E", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "18 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB950B1" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headphone cable (approx. 1.2 m" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f11"), + "name" : "Sennheiser HD 4.50 BTNC Wireless Headphone, Black", + "description" : "Sennheiser HD 4.50 BTNC Wireless Headphone, Black", + "price" : "218", + "sku" : "Sennheiser HD 4.50 BTNC Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.50-BTNC-Wireless-Headphone-Black-491336148-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTEzOXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaGVjLzg5Mjc3NDQzNjA0NzguanBnfGZiMTk5NDdjMmRkZjY1N2NkN2JhZTE4OWFkOThlMzRmNjFiNTBhMGJjNWQ2YjQxNDNiZjcyYzAxNTFlYzc1YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 19 hours (it lasts up to 25 hours with NoiseGard switched off)." + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "HD 4.50 BTNC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f12"), + "name" : "Bose SoundSport Wireless Earphone, Black", + "description" : "Bose SoundSport Wireless Earphone, Black", + "price" : "193", + "sku" : "Bose SoundSport Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Wireless-Earphone-Black-491281271-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTU3MnxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaGRiLzg5Mjc2NTM3MjQxOTAuanBnfGU3MjkzMWRkNTljNGYzZDFiNTlmZjhmNTVjY2NhNzYwMmMxYjM0MjNlYjI4MGNlYWY0NzI5OTM3NWY5Yjg3ODE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of StayHear+ Sport tips
  • USB charging cable
  • Carrying case
  • Quick setup guide
  • Warranty card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.67" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f13"), + "name" : "Bose QuietControl 30 Wireless Earphone, Black", + "description" : "Bose QuietControl 30 Wireless Earphone, Black", + "price" : "392", + "sku" : "Bose QuietControl 30 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QuietControl-30-Wireless-Earphone-Black-491277322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzUxMHxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaDhmLzg5Mjc2OTUyNzQwMTQuanBnfDI0NWViM2NhMThiYjI1NmZlZGQ4YmE0ZDBlZmZiNTQxNGEzOWU1ZmMxMjExNDQ0Njk2M2QzNGVmN2FkNzAxOWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carrying case
  • 3 sizes of QC tips: S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "QuietControl" + }, + { + "attributeName" : "Model", + "attributeValue" : "30" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f14"), + "name" : "Sony MDR-100ABN Wireless Headphone, Black", + "description" : "Sony MDR-100ABN Wireless Headphone, Black", + "price" : "319", + "sku" : "Sony MDR-100ABN Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-100ABN-Wireless-Headphone-Black-491229619-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDA5OXxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDRhLzg5Mjc3ODA3OTg0OTQuanBnfGVjZTMxOGU5MzM0NDQ2ZDExNDQ2MmFkMDBlNGI5NDlhNmRlYTdmNTVmMDVmN2Q4ODIzYzczNTNkYWQzYjE3N2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-100ABN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carring Case
  • Connection Cable
  • USB Cable
  • Warranty Card
  • Operating Instructions
  • Reference Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Gold-plated L-shaped stereo mini
  • Neodymium Magnet
  • NFC One-touch for instant connectivity
  • Digital Noise Cancelling for fewer distractions
  • Clear hands-free calling
  • Listen for longer with up to 20 hours of battery life
  • " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "290" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f15"), + "name" : "Bose SoundSport Wireless Earphone, Aqua", + "description" : "Bose SoundSport Wireless Earphone, Aqua", + "price" : "193", + "sku" : "Bose SoundSport Wireless Earphone, Aqua", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Wireless-Earphone-Aqua-491281270-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjI4MnxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaDI2Lzg4NzcxOTgxMTQ4NDYuanBnfGM1NmIyYzU3MTFjZTBjZDgwOTA2MDMzNDllNDgwOWIwYzNmZTIyMzU3OWZmMjE2NzhjMTUzNDA0NzBjMjgzZTg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of StayHear + Sport tips
  • USB charging cable
  • Carrying case
  • Quick setup guide
  • Warranty Card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 hours per full charge" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f16"), + "name" : "Sennheiser CX 7.00BT Wireless Earphone, Black", + "description" : "Sennheiser CX 7.00BT Wireless Earphone, Black", + "price" : "218", + "sku" : "Sennheiser CX 7.00BT Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-7-00BT-Headphones-Headsets-491363109-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTQwNHxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDA2Lzg4Nzk3MTMyNTU0NTQuanBnfDg3YjdkODE3MmYwMWIzYzg1ZTMyYzA3ZjA1ZTFhZjczZDk1Yjk0ODRmMWRiNDYwZGFjNjE5OThkM2M5NGRkMmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 7.00BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "17-21000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f17"), + "name" : "Bose BT QC35 II Wireless Headphone, Silver", + "description" : "Bose BT QC35 II Wireless Headphone, Silver", + "price" : "426", + "sku" : "Bose BT QC35 II Wireless Headphone, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QC35-II-Headphones-and-Headstes-491363146-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTUyMXxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDNlLzg5MDQyMjczMjM5MzQuanBnfDlhMjhmZTRkYTQyYTVhMmI4N2FlZDA1ZTkwMzBjNTliYzk4MDIzZWZiYmUyNGEyNzk5NTZhYWRkYjY0MWExNDc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "QC35 II" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Corrossion resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "17 cms (W) x 8.1 cms (D) x 18 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f18"), + "name" : "Bose BT QC35 II Wireless Headphone, Black", + "description" : "Bose BT QC35 II Wireless Headphone, Black", + "price" : "426", + "sku" : "Bose BT QC35 II Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QC35-II-Headphones-and-Headstes-491363145-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjM2MnxpbWFnZS9qcGVnfGltYWdlcy9oNDcvaDhlLzg5MDQyMjc2NTE2MTQuanBnfDUxNzc5NWQwMzk1NmU3MDBhOTAxZTYwMmQ4MzY5NmRiOGUxMTMxNjk3NGI0YmI1YjU0YzA1M2U4OTE4OWQ0NGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "QC35 II" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Corrossion resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "17 cms (W) x 8.1 cms (D) x 18 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f19"), + "name" : "Bose SoundSport Free Wired Earphone, Blue", + "description" : "Bose SoundSport Free Wired Earphone, Blue", + "price" : "276", + "sku" : "Bose SoundSport Free Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Free-Headphones-and-Headstes-491378155-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjA5OXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDBiLzg5NDY5MzE5MjUwMjIuanBnfGVjNDBjNzZhZTQ5YWEzMmQ3YmQ4N2U2YzI0MjQ2NWM2NTI3NGU3YWYwYmM5NWEzOGQxY2QyNzJiOGVmYzgyNDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport Free" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "2.5 cms (W) x 3.12 cms (H) x 3 cms (D)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "5 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Portable charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1a"), + "name" : "Motorola Pulse Escape SH012 Wireless Headphone, Black", + "description" : "Motorola Pulse Escape SH012 Wireless Headphone, Black", + "price" : "58", + "sku" : "Motorola Pulse Escape SH012 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-SH012-Headphone-and-Headsets-491378373-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDExN3xpbWFnZS9qcGVnfGltYWdlcy9oODMvaGU1Lzg5Nzk3MDc0NjE2NjIuanBnfGQ4MWExZDU5ZGNhMmJkNGFlMzE3MjAzYjhhYTFmZWM5OWYyODMwMGQ4OTg1MzA2N2RkNDAzNjBjMWYyNzBhOWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SH012" + }, + { + "attributeName" : "Series", + "attributeValue" : "Pulse Escape" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "227" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "10" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1b"), + "name" : "Skullcandy JIB Wireless Earphone, Black", + "description" : "Skullcandy JIB Wireless Earphone, Black", + "price" : "44", + "sku" : "Skullcandy JIB Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wireless-Earphone-Black-491350395-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjU4OXxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaGM0Lzg5Mjc2NDM4OTM3OTAuanBnfDVkZmVhYzY4M2Q2NDg1MTc0ZmJkMzM5NmZhOTEyYWNmNDk2NTQ2OTU1ZWY1NzQwOGQwYTVkMjg2MjRkZGE3ZGM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 6 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1c"), + "name" : "Philips SHE4305BK/27 Wired Earphone, Black", + "description" : "Philips SHE4305BK/27 Wired Earphone, Black", + "price" : "19", + "sku" : "Philips SHE4305BK/27 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE4305BK-Headphones-Headsets-491362700-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDA0NHxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDc3Lzg4Nzk2ODc0OTk4MDYuanBnfDIzMjE4ZTQ5Zjk4N2FkM2E4NTM1NmQ5ZWEwN2NmZTRhZjExNjQ2NGY0NjI0NjkzZjlhYjcxNzlkOGVjOGMxZTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE4305BK/27" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 23 000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "8 (H) x 3 (W) x 2.8 (D) cms" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1d"), + "name" : "Sennheiser HD 206 Wired Headphone, Black & Silver", + "description" : "Sennheiser HD 206 Wired Headphone, Black & Silver", + "price" : "22", + "sku" : "Sennheiser HD 206 Wired Headphone, Black & Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-206-Headphones-and-Headsets-491378223-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDY5MHxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaDFjLzg5MjIzMzIxMDI2ODYuanBnfDBiMzc1NzUyZTg2ZDJhZGJhNTliNTE2YWY0MjAwMzU4NTE0MDkxYTg5NTRiZGJlYzZiZmU1M2RiNjAyOGM3ZTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 206" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "21-18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "<0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "215" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black & Silver" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High-Quality Leatherette Ear Pads
  • \n
  • Gold-Plated 1/4\" (6.3 mm) Jack Adaptor
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1/4\" (6.3 mm) stereo jack adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1e"), + "name" : "JBL TUNE600BTNC Wireless Headphone, Black", + "description" : "JBL TUNE600BTNC Wireless Headphone, Black", + "price" : "102", + "sku" : "JBL TUNE600BTNC Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T600BTNC-Headphone-and-Headsets-491430950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM5NnxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaGFjLzkwODMwNDA1NjMyMzAuanBnfDhiNDVlYzRmNzM0ZjU3NmIwNDY4NmY1MzVkOGUxYzg5NjBjMzgyOWY5MTQwNDZhMzUxY2U1MDUyMjllMDc1MjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "22 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE600BTNC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • JBL Pure Bass Sound
  • Active Noise Cancelling
  • 12h Battery Life With BT+NC On
  • Hands-free Calls
  • Maximum music play time with ANC off: 22.0 Hours
  • Maximum music play time with ANC on: 12.0 Hours
  • " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "173" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1f"), + "name" : "Skullcandy Jib S2DUYK-628 Wired Earphone, Blue", + "description" : "Skullcandy Jib S2DUYK-628 Wired Earphone, Blue", + "price" : "15", + "sku" : "Skullcandy Jib S2DUYK-628 Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-628-Headphones-and-Headstes-491362788-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODI2OHxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDk0Lzg5NDY5MzkxMzM5ODIuanBnfDBlNDIyY2FiY2U1YzBhNTMwYTVkMjBiZTc3N2RiYjhkZDZjYTgzNzNlYjE5YzU1NjI5NmQ5OTlhNjU2YjQxN2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-628" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f20"), + "name" : "Apple MV7N2HN/A Wireless Airpods with Charging Case, White", + "description" : "Apple MV7N2HN/A Wireless Airpods with Charging Case, White", + "price" : "216", + "sku" : "Apple MV7N2HN/A Wireless Airpods with Charging Case, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Airpods-BTStereo-CC-491431363-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTExOHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDQ4LzkxMjg1Mzk1MjEwNTQuanBnfGE1NWQzMjYzY2E3OTBkNjA5YzE5YjhhMGJlMmQ4OTQxY2I3NDBmMmM3NzE3NTkwNTI3NmNkNGU4NDIwYWYwMjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Up To 24 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV7N2HN/A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f21"), + "name" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Red", + "description" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Red", + "price" : "77", + "sku" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds-2-Wireless-Earphone-Black-Red-491315295-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDAxMnxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDIyLzg5Mjc3NjczNjM2MTQuanBnfDY1ZWRlNDg0Y2JjNTg2YWU5NmI1N2U1ZGU1OGEwY2YzMjAyZWJjYTE3ZTgwNGE2NjI5ZDJhZjE4NGJkMDUxYjg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Customizable fit with lightweight and fully removable collar
  • Call" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f22"), + "name" : "itek BTHP005 Wireless Headphone, Black", + "description" : "itek BTHP005 Wireless Headphone, Black", + "price" : "37", + "sku" : "itek BTHP005 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itek-Headphones-491362659-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQ5NHxpbWFnZS9qcGVnfGltYWdlcy9oMDMvaDJlLzkwMDU2Mjc3MzYwOTQuanBnfDgzY2JmZmY1ZTZhNzIwYzQ5Yjk2MWY1MTNjMGZiNzNmNDBmMjQzYWM0YzNkNDgyYzY1OTNmODU5ZDVlOTczNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "BTHP005" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Micro SD card slot
  • \n
  • FM radio
  • \n
  • Auxiliary Input
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f23"), + "name" : "Philips SHL3075BL/27 Wired Headphone, Blue", + "description" : "Philips SHL3075BL/27 Wired Headphone, Blue", + "price" : "26", + "sku" : "Philips SHL3075BL/27 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075BL-Headphones-Headsets-491362707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIwNnxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDU4Lzg4Nzk2OTU3NTczNDIuanBnfGZmYWI0MmQ1YWFjY2Y4OTFkNjRlNDliOWJhOWRkNTliYTBhZWIzNmNhY2MxMzc3ZWU2NTA1ZmE4MzdlYjg1ZjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075BL/27" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 23 000  Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f24"), + "name" : "Skullcandy Ink'd Wireless Earphone, Navy", + "description" : "Skullcandy Ink'd Wireless Earphone, Navy", + "price" : "58", + "sku" : "Skullcandy Ink'd Wireless Earphone, Navy", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Ink-d-Wireless-Earphone-Navy-491315286-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTUzM3xpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGY0Lzg5Mjc3MDkzNjQyNTQuanBnfDFkOTMwNGUwZmU3N2UzNGYyMTVlZWVlZDY3MGY4MTk0MGJlZDVmMWRkY2VkMTVkM2VhZjUxYTk1ZTNmNjliNGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Ink'd" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight and low-profile around-the-neck collar
  • Bluetooth wireless with 8-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Navy" + }, + { + "attributeName" : "Weight", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f25"), + "name" : "JBL E55BT Wireless Headphone, Black", + "description" : "JBL E55BT Wireless Headphone, Black", + "price" : "102", + "sku" : "JBL E55BT Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE55BTBLK-Headphones-Headsets-491377979-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzcwNXxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGNiLzg4ODk4NjUzMzg5MTAuanBnfGQ4ODU3OTk4ZTVkNDJiMTQ2ZjhjMmJlZWRjMzViYTA2YjBiOTIwODI1OTY5MGQwZWJjY2I4M2JkMmZmYTQxYzU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f26"), + "name" : "JBL T210 Wired Earphone, Rose Gold", + "description" : "JBL T210 Wired Earphone, Rose Gold", + "price" : "18", + "sku" : "JBL T210 Wired Earphone, Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT210RGD-Headphones-Headsets-491377947-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjYyOXxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDFiLzg4ODk4NDYwMDU3OTAuanBnfGU1M2JjMmU4OTM3ODVhNjUxZTVlODdhMjc5OWFjNGIyNTM3ZTI3MjlhNWU4YTA1MmQzMWFkZGE1MDZiY2FmM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T210" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear Tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f27"), + "name" : "Sony MDR-EX155AP Wired Earphone, Light Blue", + "description" : "Sony MDR-EX155AP Wired Earphone, Light Blue", + "price" : "19", + "sku" : "Sony MDR-EX155AP Wired Earphone, Light Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Headphones-Headsets-491336243-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTU0M3xpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDBhLzg4Nzk2Nzc0MDcyNjIuanBnfDdjZTU0ZTgwODdiZWFjOTg3M2JlNzVjYmUwOWJkYzg2NTVmYTU5MDFjNWJlMGJmNjU0N2QxZjdhMzhlMmUxYTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Light Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f28"), + "name" : "Sony MDR-ZX110/B Wired Headphone, Black", + "description" : "Sony MDR-ZX110/B Wired Headphone, Black", + "price" : "15", + "sku" : "Sony MDR-ZX110/B Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110-B-Wired-Headphone-Black-491115961-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjkwN3xpbWFnZS9wbmd8aW1hZ2VzL2hhYy9oOWQvODkyNzgzNTMyNDQ0Ni5wbmd8ZGM5ZmRlYTNjOGNjYmJmZDg5Nzc5NDc0YjUwN2YyMGM3MjRkY2M5ZWQ4ODE0ZWIyNmQ3NWQ3NzUzMmFjZTBhYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX110/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "120" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Foldable design
  • Superb style
  • Powerful sound
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f29"), + "name" : "Sony MDR-EX15AP Wired Earphone, Black", + "description" : "Sony MDR-EX15AP Wired Earphone, Black", + "price" : "13", + "sku" : "Sony MDR-EX15AP Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX15AP-Wired-Earphone-Black-490970605-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTI4fGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oZTYvODg3MTM3MTI3NjMxOC5qcGd8MDEwM2I3YzJlMDcxOTdkYzEyMmUyNjJjMjg3NGVkYTM4NDUxYTVlZGE2Yjc3NDU2NTI0YjU0MWIyZjgxOWFhMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX15AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earbuds - S x2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2a"), + "name" : "Sony WH-CH400 Wireless Headphone, Black", + "description" : "Sony WH-CH400 Wireless Headphone, Black", + "price" : "73", + "sku" : "Sony WH-CH400 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH400-Headphones-and-Headsets-491378316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjk3M3xpbWFnZS9qcGVnfGltYWdlcy9oYTIvaGY0Lzg5MjIzMzQzOTY0NDYuanBnfGE2NTliZGIzNjMwMGI3ZWVhZjA5NWEyODgwZGFmZWU0NjdmZmY0NjFlNWFjZGY5ZmMzYzZlNmQzYjdiOWZkM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-CH400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "107" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2b"), + "name" : "Sony MDR-EX155AP Wired Earphone, Black", + "description" : "Sony MDR-EX155AP Wired Earphone, Black", + "price" : "19", + "sku" : "Sony MDR-EX155AP Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Headphones-and-Headstes-491336241-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzc2M3xpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDMxLzg5MTMwMTMyNzY3MDIuanBnfDkzYjkyYWQyNThkYjM2MmFjMmQxMTc2MTg3NWVmMDkyYmNmODIyMzUwMjE0MjFkZTE0YTIzYTMxYmYwMzI4MTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2c"), + "name" : "Sony MDR-XB550AP Wired Headphone, Blue", + "description" : "Sony MDR-XB550AP Wired Headphone, Blue", + "price" : "48", + "sku" : "Sony MDR-XB550AP Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Wired-Headphone-Blue-491320704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTExM3xpbWFnZS9qcGVnfGltYWdlcy9oNTQvaDI2Lzg5Mjc2NTExMDI3NTAuanBnfGVjM2MxNTJjOTA0ZjNlMGIxM2Y0YzU2ODFjOWFjMDJiMmU4OTk1YjNiYzMwMzE2NjU1ZjY0OGJlMmI4MmQ2NzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2d"), + "name" : "Sony MDR-XB55AP Wired Earphone, Black", + "description" : "Sony MDR-XB55AP Wired Earphone, Black", + "price" : "37", + "sku" : "Sony MDR-XB55AP Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB55AP-Headphones-and-Headstes-491336249-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDEzOHxpbWFnZS9qcGVnfGltYWdlcy9oN2EvaGFjLzg5NDY3ODQ3MzExNjYuanBnfDMyOGJjNTIzNTQyMDlhZjFhOWY0MDEzMWRjMmYzNDlkNzllZmRkZjA3NGE4YzVmNDVmMDZiNGQwMmRkN2I1ODk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB55AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Carrying Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • \n
  • Approx. 1.2 m cord length
  • " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2e"), + "name" : "Sony MDR-XB75AP Wired Earphone, Black", + "description" : "Sony MDR-XB75AP Wired Earphone, Black", + "price" : "58", + "sku" : "Sony MDR-XB75AP Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB75AP-Wired-Earphone-Black-491336252-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzQ4fGltYWdlL2pwZWd8aW1hZ2VzL2hjOC9oMzUvODkyNzY5MjY1MjU3NC5qcGd8MmYyNjEyMTk4ZGYwNmNjM2E5MDhmOTE0NTJjYTdjMmNhNmE5MjBkYzg4ZjMzZGM4OGUwOGQ4Mjk4OGE2MjVkNg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB75AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "9" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Carrying Pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2f"), + "name" : "Sony MDR-EX15AP/L Wired Earphone, Blue", + "description" : "Sony MDR-EX15AP/L Wired Earphone, Blue", + "price" : "13", + "sku" : "Sony MDR-EX15AP/L Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX15AP-L-Wired-Earphone-Blue-491181320-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTg3NnxpbWFnZS9wbmd8aW1hZ2VzL2gzNy9oMDEvODg3NzA1NTMxMTkwMi5wbmd8ZTE0Nzk4OWUwYThlOGYyZGYyYjA2MTY4ZTM5MjY4N2MyOTZlODM1ZWUwNTE4MGQyMDNjMThiNGU0NTViZGQxMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX15AP/L" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid silicone rubber earbuds (Sx2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Four-conductor gold-plated L-shaped stereo mini plug
  • Magnet - Neodymium
  • Power Handling Capacity - 100mW
  • Driver Unit - 9mm
  • Diaphragm - PET
  • Type - Closed" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f30"), + "name" : "JBL T210 Wired Earphone, Black", + "description" : "JBL T210 Wired Earphone, Black", + "price" : "18", + "sku" : "JBL T210 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T210-Headphones-and-Headstes-491377945-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzMyNHxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaDNlLzg5NDY4ODg1NDAxOTAuanBnfGJkZWUxMDgyOGVkNmYxNzYwNjJmMTBjYWZmMTVkYzE1ZDkzMjk4N2FjMTJhNzE0ZmQyMWFmMjc2YWIyODZjNzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f31"), + "name" : "Sony MDR-XB450AP Wired Headphone, Black", + "description" : "Sony MDR-XB450AP Wired Headphone, Black", + "price" : "37", + "sku" : "Sony MDR-XB450AP Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB450AP-Wired-Headphone-Black-491182128-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTg0MXxpbWFnZS9wbmd8aW1hZ2VzL2hiYy9oZGUvODkyNzg4MTA2ODU3NC5wbmd8ZmNlNDU2N2MzOGFiNTllYjI2ODUyYzVhYTQ1ZDAzZjdjZWMwNzY3ZGY2NWZlZjA3NzA5NjgzMDMyZGU5Yjc3MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm driver unit
  • Deep" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f32"), + "name" : "Sony MDR ZX110AP Headset, Black", + "description" : "Sony MDR ZX110AP Headset, Black", + "price" : "25", + "sku" : "Sony MDR ZX110AP Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110AP-Headset-Black-491072967-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzY5MnxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oOTIvODkyNzYxNDI3MTUxOC5wbmd8NTM4NDE3M2EyOThmOWE5YmFkOGRiMjhlZjdkYTMzODkzMTIzNDI2YWY1MzVjYWNiZTI2M2YyNTdmYjVhZWY3MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "ZX110AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "120" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • In-line microphone for phone calls
  • 9 mm High sensitivity driver
  • Hybrid Silicone Rubber Earbuds
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f33"), + "name" : "Reconnect BTH M-BTV2.1 Wireless Bluetooth Headset, Black", + "description" : "Reconnect BTH M-BTV2.1 Wireless Bluetooth Headset, Black", + "price" : "14", + "sku" : "Reconnect BTH M-BTV2.1 Wireless Bluetooth Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/3e0b9014-6ba2-473b-89ee-be84e55ea3c1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjIxMnxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDFjLzg4MjAyMTcxODQyODYuanBnfGY2YjQyNDFjMjVjNDhiNDQxMDNjY2Y5NjA2YjExZjJjM2E1MTM3Y2Y0Y2IwOTQ4M2VlOTI2ZDhlMGJiNzczOTg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "7" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4 hours talk time - Convenient for long use
  • Weighs only 7 gm - Convenient for continuous
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "BTH M-BTV2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "48" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f34"), + "name" : "Sony MDR-AS410AP Wired Earphone, Grey", + "description" : "Sony MDR-AS410AP Wired Earphone, Grey", + "price" : "32", + "sku" : "Sony MDR-AS410AP Wired Earphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/7591b401-d555-4c31-ac96-a97d93b6e0d4-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDgzNXxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDI2Lzg4MDUwMTI0MDYzMDIuanBnfGE3NzIxYTUyODVhN2UxNDVlZGVhYzAyZWVlYjZlYTY1YWY2OTgwY2E3ZmQyOTJmMDU3N2I4NWZmZjU5MjY0YTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS410AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "10" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • Carring Pouch
  • Hybrid earbuds (SS/S/M/L)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm driver unit provides deep bass sound
  • Splash-proof and secure with an over-ear fit
  • Four sizes of silicone earbuds for a good seal and fit
  • L-shaped gold-plated 4-pole mini plug
  • " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f35"), + "name" : "Sony MDR-XB55AP Wired Earphone, Blue", + "description" : "Sony MDR-XB55AP Wired Earphone, Blue", + "price" : "37", + "sku" : "Sony MDR-XB55AP Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB55AP-Wired-Earphone-Blue-491336250-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Nzc4fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oM2MvODg3NzE4Nzk1Njc2Ni5qcGd8Njk2NDIzNGE0ZjM0MTZlMDdhMmUyZTBjOGM5NzZkMGRmN2NhZTQ5YmE1NDM2MzBlYWM4Nzk0NmU1NTFjMDAzZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB55AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Carrying Pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f36"), + "name" : "JBL T290 Wired Earphone, Black", + "description" : "JBL T290 Wired Earphone, Black", + "price" : "27", + "sku" : "JBL T290 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT290BLK-Headphones-Headsets-491377948-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTA3N3xpbWFnZS9qcGVnfGltYWdlcy9oM2EvaDE5Lzg4ODk4NTAwMDM0ODYuanBnfDJiNTQwMmJjMjk4ZTg3OTlkYWRiMGQ3M2I5MzkxNzk5YzY4OTZhZjYwMGM5YThkOGNjYWY0MWYwYWY5NDIxMmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear Tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f37"), + "name" : "JBL T110 Wired Earphone, Red", + "description" : "JBL T110 Wired Earphone, Red", + "price" : "19", + "sku" : "JBL T110 Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT110RED-Headphones-and-Headstes-491377943-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzkyMHxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaGViLzg5MDQyMjQzNzQ4MTQuanBnfGNhNTQ2ZjNkMTMyYTU2OGQwMWM5OGNkMmZkYjI3OTJjODg4ZWE2YjBiNjkwZjY5NTgwZTc3ZWNiNjk0MGNmNzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLT110RED" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "6.1 cms (W) x 4.2 cms (D) x 17.5 cms (H)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f38"), + "name" : "Sony MDR-EX255AP Wired Earphone, Blue", + "description" : "Sony MDR-EX255AP Wired Earphone, Blue", + "price" : "29", + "sku" : "Sony MDR-EX255AP Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Headphones-Headsets-491336248-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODM1MXxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaDQxLzg4Nzk2OTIwODczMjYuanBnfDhmNzZkZWZlNWNiMzllNzFmMzVjMjIwNzYwZjdiNzI4MWFhMWY4OTBkNjhmODBhNjY4OGJiMzAwNjFlYTRhOGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-25000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f39"), + "name" : "JBL E15 Wired Earphone, Black", + "description" : "JBL E15 Wired Earphone, Black", + "price" : "29", + "sku" : "JBL E15 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E15-Headphones-and-Headstes-491377952-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzEyOXxpbWFnZS9qcGVnfGltYWdlcy9oNGQvaGMyLzg5NDY4ODA2NzU4NzAuanBnfGZlOTg5M2VjYmU0OWM1OWRlYzg5NjgwNTBmM2JhYjQ0NDQ2MTE2YTBkNWVlMzFlN2JkZjg2Mzg0MjY2MGE1ZDA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E15" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3a"), + "name" : "Sony MDR-XB550AP Wired Headphone, Black", + "description" : "Sony MDR-XB550AP Wired Headphone, Black", + "price" : "48", + "sku" : "Sony MDR-XB550AP Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Wired-Headphone-Black-491320675-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDkzNnxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaGRjLzg5NDczODAzMjIzMzQuanBnfGUxNzJmYTY5NDZhNzkyZjM2NGJkN2ZjZjQwMmI3YmIwZWI4ZGEzZjJmNjZmZGZjMWMzOWJmZGI4OWM2YjUwNTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3b"), + "name" : "Sony MDR-EX255AP Wired Earphone, Black", + "description" : "Sony MDR-EX255AP Wired Earphone, Black", + "price" : "29", + "sku" : "Sony MDR-EX255AP Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Wired-Earphone-Black-491336245-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTI4fGltYWdlL2pwZWd8aW1hZ2VzL2gxYS9oNGIvODg3NzExOTg2NDg2Mi5qcGd8NzYyMzNmYTVlYmFiZjdjYmRiMDdmMGNiNmU4ZDMxNDk4MmZhMjJlYTRhMDM3YWEwZDhjZmM0MWE0MThlNzZiMw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Cable adjuster
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3c"), + "name" : "Bose SoundSport Free Wired Earphone, Black", + "description" : "Bose SoundSport Free Wired Earphone, Black", + "price" : "276", + "sku" : "Bose SoundSport Free Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Free-Headphones-and-Headstes-491378154-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjU2OHxpbWFnZS9qcGVnfGltYWdlcy9oMzIvaDNiLzg5NDY5MTU5MzQyMzguanBnfGZhOTBmZGIyYzkzY2Q1YzEwNDNjMWI1NDVlOGZlZjRlNjgyZTRkZDZlODhlYTEyNDg3MTMxMGVjMTIzZjUzYmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport Free" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "2.5 cms (W) x 3.12 cms (H) x 3 cms (D)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "5 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Portable charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3d"), + "name" : "Jabra Talk 15 Wireless Earphone, Black", + "description" : "Jabra Talk 15 Wireless Earphone, Black", + "price" : "28", + "sku" : "Jabra Talk 15 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-TALK-15-Headphone-and-Headsets-491503497-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzE4MHxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaDFmLzkwODc3MjUzMDU4ODYuanBnfGI4NDE0NjAyYTQ4ZGQwZWJiMmFlZGI1ZmQ3ODNhNTlmNzBhZjQ0MGQ1ZjY3NDRiYTRiZTAyMDA5ZmU1NDIzYzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8.9" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "53.5 x 16.6 x 24.2 mm" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Silicon Rubber" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "108" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "11" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 8 kHz" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Talk 15" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v3.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 eargels (one premounted standard eargel)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "6" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3e"), + "name" : "Jabra Talk 5 Wireless Earphone, Black", + "description" : "Jabra Talk 5 Wireless Earphone, Black", + "price" : "18", + "sku" : "Jabra Talk 5 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-TALK-5-Headphone-and-Headsets-491503496-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTk2NHxpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDdiLzkwODc3MTkwNzk5NjYuanBnfDZiNjYwNDE1OGFkZjQyOTg1ODA4MmJjYTk4MTdjMWIzOTMwZmRlNzdiYmQ3NzNjZjJlNzU5YmYzNzI0N2ZkYjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "54.3 x 16.3 x 25.5 mm" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Silicon Rubber" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 8 kHz" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Talk 5" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v2.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Eargel premounted" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3f"), + "name" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Red", + "description" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Red", + "price" : "29", + "sku" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-ProBuds2-BT-535-Wireless-Earphone-Red-491362737-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU5OXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDlhLzg5MDMwNjk3OTQzMzQuanBnfDZmNjYzZGYzNTA2YWJlMjI4NWExNmIwNjRlZTBmZWE3ZjQ3NzEwMjBlMmNjZDc4MTRhMzM4OTdjMTUxYjQ1NjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging Cable
  • User Manual
  • Warranty Card
  • Carry Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "ProBuds2" + }, + { + "attributeName" : "Model", + "attributeValue" : "BT-535" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + } + ], + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f40"), + "name" : "Samsung Level U Wireless Headphone, Blue/Black", + "description" : "Samsung Level U Wireless Headphone, Blue/Black", + "price" : "44", + "sku" : "Samsung Level U Wireless Headphone, Blue/Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Level-U-Wireless-Headphone-Blue-Black-491229556-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDg0NnxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaDdiLzg5Mjc3MjI0NzE0NTQuanBnfDdmMDA2ZWQ2YTUxNjc4MTlmMzM3NDk0NmU1NDlmZTYxYTUxMmJkNWE4ZTFmY2I4ZTM4YmFkNWU4MWYwYjE4NGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 2 sets standard ear gels
  • 1 set stabilizing ear gels
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "Level U" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk time - 11 Hours
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f41"), + "name" : "Apple Wireless Airpods, White", + "description" : "Apple Wireless Airpods, White", + "price" : "187", + "sku" : "Apple Wireless Airpods, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Wireless-Airpods-White-491296886-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTcwOHxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaGYxLzg5NjQwMzUyODA5MjYuanBnfDNlZmFmMTE4OWMxZTAwYTIyOGZhOTc2ZGQ0YzdhNTQ1NzBiZTc1NjIyODc4NzFmNjEzY2FjZDEwZThkZWFjOGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging Case
  • Lightning to USB Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Designed by Apple
  • Automatically on" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f42"), + "name" : "JBL E15 Wired Earphone, Blue", + "description" : "JBL E15 Wired Earphone, Blue", + "price" : "29", + "sku" : "JBL E15 Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E15-Headphones-and-Headstes-491377953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTE2NHxpbWFnZS9qcGVnfGltYWdlcy9oYzEvaDAyLzg5NDY4ODQ5MzU3MTAuanBnfDVhMzMyN2Q1YTg1ZDQ3MzU3NWU5YjcyMGQxYjMxYzBiNDQ5NDRmZGE0YWJhNGY2ZmNlZTQwOGM5NjZmYjlhZjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E15" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f43"), + "name" : "Philips ActionFit SHQ1200/10 Wired Headphone, Orange/Grey", + "description" : "Philips ActionFit SHQ1200/10 Wired Headphone, Orange/Grey", + "price" : "11", + "sku" : "Philips ActionFit SHQ1200/10 Wired Headphone, Orange/Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/e3b7b12f-52b2-41eb-9c34-f0386289a4c7-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjYwNXxpbWFnZS9wbmd8aW1hZ2VzL2gxOS9oZGYvODgwMjg5NzU1OTU4Mi5wbmd8MmJhNzAxZWM3NWM0MzcwY2I3NDE1OWEzNmNjYmRjODY0YTkzZDM2M2U3ZGY3YmIwN2E5NDhkYTRmZGFiMjZhMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1200/10" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange/Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable clip
  • " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3 choices of ear cap sizes for optimal fit
  • 13.6mm drivers deliver powerful sound
  • Reflective stopper in the cable
  • Closed Acoustic system
  • Cable Connection - two-parallel" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f44"), + "name" : "JBL T110 Wired Earphone, Blue", + "description" : "JBL T110 Wired Earphone, Blue", + "price" : "19", + "sku" : "JBL T110 Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphones-and-Headstes-491377942-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTExOXxpbWFnZS9qcGVnfGltYWdlcy9oMTYvaDk0Lzg5NDY4NTA5ODgwNjIuanBnfDY1ZDFkY2FiZTlmMTY3MzUyZjg3Mjc5MTA4ZGY0ZDJhMzk0OWZmZTEwNWJiMmI5ZjhiMTY4ZjMzYWFjZmZjNTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f45"), + "name" : "Sony MDR G45LP Headphone, Black", + "description" : "Sony MDR G45LP Headphone, Black", + "price" : "13", + "sku" : "Sony MDR G45LP Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/a85dfb13-6223-42c3-a2b2-97c706f51768-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIzOHxpbWFnZS9wbmd8aW1hZ2VzL2g2OC9oOTUvODgwMjg5MjI1MTE2Ni5wbmd8MzZiNmQ3ZTZkMDEzNzBjZWFkZmYzODBiNDlhZWMwNzlkNzg2MGQ0ZmI0MmZjYTY0NmVjYmNkZTI4Y2JlZmYxZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "G45LP" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Weight", + "attributeValue" : "55" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver Unit: 30mm
  • Sensitivity: 104dB/mW
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f46"), + "name" : "Samsung Level U Wireless Headphone, Gold", + "description" : "Samsung Level U Wireless Headphone, Gold", + "price" : "44", + "sku" : "Samsung Level U Wireless Headphone, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/a7f333fb-379c-40ef-94aa-4316dbaa1763-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE4OXxpbWFnZS9qcGVnfGltYWdlcy9oNDYvaDFhLzg4MDY0MTY2Nzg5NDIuanBnfGI4YjFiMmQ1MTVmZDEyN2Q0YjZkNGNmMWIzMjcyMTMxNThiMDVkMmQ1YzkyMTdkNWQ3N2UzZmQzMjVhMmQ2NWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 2 sets standard ear gels
  • 1 set stabilizing ear gels
  • Micro USB Charging Cable
  • Rubber Bands
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "Level U" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk time - 11 Hours
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f47"), + "name" : "Apple Wired EarPods with Lightning Connector,White", + "description" : "Apple Wired EarPods with Lightning Connector,White", + "price" : "37", + "sku" : "Apple Wired EarPods with Lightning Connector,White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Wired-EarPods-with-Lightning-Connector-White-491277319-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzUyMnxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaDcwLzg5MzI3MTk3MjI1MjYuanBnfDk3MmQ1OWQyNTk2MjJmYjQyOWY0MGJkYzYyM2M0MGVhZTFlMjVhZjU5ZjVhODNkYzgxMWJkMGQzZTdhNTdmZjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f48"), + "name" : "Philips SHP1901 Wired Headphone, Black", + "description" : "Philips SHP1901 Wired Headphone, Black", + "price" : "15", + "sku" : "Philips SHP1901 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHP1901-Headphones-and-Headsets-491320722-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTM1OHxpbWFnZS9qcGVnfGltYWdlcy9oZTgvaGFmLzg5MjIzNDk3OTc0MDYuanBnfGRiMmY3ZjJjNzFlYzRkNjBjZmM2NDI5MzI3NzJhYmYwNjU4NmUyYzVlMWM0ZWJhYjJhYzU2YmZkNjYxZGY1ZjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHP1901" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type : Neodymium
  • \n
  • Speaker diameter : 40 mm
  • \n
  • Finishing of connector : Chrome-plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f49"), + "name" : "Sony WI-C400 Wireless Earphone, Black", + "description" : "Sony WI-C400 Wireless Earphone, Black", + "price" : "58", + "sku" : "Sony WI-C400 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WI-C400-Headphones-and-Headstes-491350619-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjA1NXxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDY0Lzg5MDQyMzYwNDAyMjIuanBnfDk0MTMyODdmNjM1ZmU3NDc3MWUzZTA3YmMxYmFlZWEyODMyYTNlMGQ3ZWMxZmYwZDQ3ODM3ZjYwNjUyMWE1NDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400/BZ E" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Greyish Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4a"), + "name" : "Skullcandy JIB Wired Earphone, Black", + "description" : "Skullcandy JIB Wired Earphone, Black", + "price" : "15", + "sku" : "Skullcandy JIB Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-343-Headphones-Headsets-491362786-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkxNXxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaDQ2Lzg5MjExNTM2NjcxMDIuanBnfDk2MTBlNWJjNTdhMWQ5YTBmMjYyZGJiMmQyZGZiZmY5MjUyMTI4OWY2ZGMzOGQxZWViMzNiMGYzZGUwNTNkMTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "18.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4b"), + "name" : "JBL T110 Wired Earphone, White", + "description" : "JBL T110 Wired Earphone, White", + "price" : "19", + "sku" : "JBL T110 Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphones-and-Headstes-491377944-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM5NXxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDQ5Lzg5NDY4NzgxODU1MDIuanBnfGQ0NWQ2YzhmNDkyYzY3OGJiZDJlZDc5YTEyNzM2NmY2NTEyMjhjNmUyNzhiNzQ3MWU2NjAxYWVmNTNhNzk5ZWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4c"), + "name" : "JBL T210 Wired Earphone, Grey", + "description" : "JBL T210 Wired Earphone, Grey", + "price" : "18", + "sku" : "JBL T210 Wired Earphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T210-Headphones-and-headsets-491377946-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTM5M3xpbWFnZS9qcGVnfGltYWdlcy9oYzkvaDljLzg5OTQ3NTA4OTAwMTQuanBnfDM2OTkwNjA0NDNlZGJlOTI0ZDc2YjU1NDUwNDhiODUxOTBkODljMmRiMmFhNDE2NDRiYzc5Y2Q5NTk5ZDE4MTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 8.7 mm dynamic driver
  • Lightweight and compact design
  • Pure Bass
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4d"), + "name" : "Sony WH-CH400 Wireless Headphone, Blue", + "description" : "Sony WH-CH400 Wireless Headphone, Blue", + "price" : "73", + "sku" : "Sony WH-CH400 Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH400-Headphones-and-Headsets-491378317-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDczNXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDVlLzg5MjIzMzczNDU1NjYuanBnfGNhM2Q3ZjA5ODQ2ZDljZGRjZmU2ZjFhMjI4NjMzZjllYmIxYzdkNzkzMjM5ZGYxM2IxNTFkOTc5N2MzYzcyNTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-CH400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "107" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4e"), + "name" : "SoundBot SB305 Wired Earphone, Black", + "description" : "SoundBot SB305 Wired Earphone, Black", + "price" : "19", + "sku" : "SoundBot SB305 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB305-Headphones-and-Headsets-491431145-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxNHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDU0LzkwNjcxNDIwMjExNTAuanBnfDEyOGMxYTZkZjk3ODQ5NzhiNDAzNTcyYWE5NTI0YTY0YTU0NmZlMDRlZmEwZjgxZDdkMGUzMTNkMDAxMWM3NmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB305" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "45" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 pairs of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4f"), + "name" : "SoundBot SB250 Wireless Headphone + Speaker, Black", + "description" : "SoundBot SB250 Wireless Headphone + Speaker, Black", + "price" : "87", + "sku" : "SoundBot SB250 Wireless Headphone + Speaker, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB250-Headphones-and-Headsets-491431147-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTYwNXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDc2LzkwNjcxNDc5MTkzOTAuanBnfGQ2YmJmZTAzYThmZWQ5NGE3YjRkZGU1YzBlZGRiMDY4OTA1NDgxZTYxZDQ5Yzg2YTVmZmI5MWEwY2NlOTNiNmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Playback Time: Up to 25 hours in wired headset mode/Up to 3 hrs of playtime in external wireless speaker" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB250" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "Connection Range - Up to 33 feet of wireless range" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "204" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + } + ], + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f50"), + "name" : "JBL Endurance DIVE Wireless Headphone, Red", + "description" : "JBL Endurance DIVE Wireless Headphone, Red", + "price" : "102", + "sku" : "JBL Endurance DIVE Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431084-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjAyMXxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaDVmLzkwNjk4OTIyNzIxNTguanBnfGVmZDNmYmE5Yjk4N2RkODFkNmMxZmJlNTNhNjMyZTlmYWRjMGZlZjI2MjdkYmUwMmY2NGQzMDYxNGY2NjdiMDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f51"), + "name" : "SoundBot SB221 Wireless Headphone, Black", + "description" : "SoundBot SB221 Wireless Headphone, Black", + "price" : "44", + "sku" : "SoundBot SB221 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB221-B-Headphones-and-Headsets-491431144-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDAwNXxpbWFnZS9qcGVnfGltYWdlcy9oZTcvaGJlLzkwNjcxNDQ5NzAyNzAuanBnfDAzMjNlYjk4YzI2MTQ0OGY0ODIzZDRjYjJkN2M2ZDdlN2Q4OThhYzAwZDRiMzBhYzYyY2FjMGQxMWVlMTNjOWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Hands Free Calling: 25 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB221" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Water Proof Carry Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "72" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f52"), + "name" : "JBL Endurance DIVE Wireless Headphone, Yellow", + "description" : "JBL Endurance DIVE Wireless Headphone, Yellow", + "price" : "102", + "sku" : "JBL Endurance DIVE Wireless Headphone, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431083-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTg4fGltYWdlL2pwZWd8aW1hZ2VzL2gwZS9oODQvOTA2OTg5OTgwODc5OC5qcGd8NzAyNzFlZmQ3MjJlYmI4MjVlNDUxZmVlYmMyMTAzMDhhNTE4MTljYWUxNDIzNDQ5YWMwOWI5ZDhiYTlkNTg4MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f53"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Yellow", + "description" : "JBL Endurance SPRINT Wireless Headphone, Yellow", + "price" : "58", + "sku" : "JBL Endurance SPRINT Wireless Headphone, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431091-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTQyfGltYWdlL2pwZWd8aW1hZ2VzL2g5ZS9oYTkvOTA2OTkxODc0ODcwMi5qcGd8ZjA1MDNlNDg1NzAzNzk3Yjk3YWY2ZGU3MWNjZDcyZjhiNDExZDU4MzE2ZjI1Y2UxZDMxYmJkODRjMTcxNzdjMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f54"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Blue", + "description" : "JBL Endurance SPRINT Wireless Headphone, Blue", + "price" : "58", + "sku" : "JBL Endurance SPRINT Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431090-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTMyOHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDY2LzkwNjk5MTIzMjYxNzQuanBnfGZkNTQwZjVhNzhkMjY2YTFlZmViYjI1ZmMxMmU5NWQ2YWJhMmJjY2M5OGYxYTIzNDA2NWM4MjNjNjhiZmMzOTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f55"), + "name" : "SoundBot SB565 Wireless Earphone, Black", + "description" : "SoundBot SB565 Wireless Earphone, Black", + "price" : "44", + "sku" : "SoundBot SB565 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB565-Headphones-and-Headsets-491431146-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDczNXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDYyLzkwNjcxNDE2OTM0NzAuanBnfDhjZjY0YzQ5ZTJlMWY4ZDFkZmRiMjJmYTkyYWM3MWNkOTNlMWI1MjcyMmYzNDYyZjhiNTVmYjk1ZmIwZjE5YzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Silicone Earbuds & Stabilizer" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Talktime: 6.5 hours
  • \n
  • Standby time: Up to 6.6 days
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB565" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "68" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f56"), + "name" : "JBL Endurance JUMP Wireless Headphone, Red", + "description" : "JBL Endurance JUMP Wireless Headphone, Red", + "price" : "70", + "sku" : "JBL Endurance JUMP Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431088-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTgyMnxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGNkLzkwNjk5MDQ3MjM5OTguanBnfDhiZWE2YTNjNThmNmYzNDNiOWE0NzlhYWE1YzljMTAwMDc4MDI2ZjIxMjU3MjgyYWZlMDUzMDYxZTgyZTdmYWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f57"), + "name" : "Philips SHL5005 Wireless Headphone, Black", + "description" : "Philips SHL5005 Wireless Headphone, Black", + "price" : "22", + "sku" : "Philips SHL5005 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL5005-Headphone-Headsets-491378143-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjUxNnxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaDgxLzkwNDY5MzkzMDM5NjYuanBnfGZkNGQ1OTQ0MmFiYmQ3YjAyNDg2ZTkwMTcyNDAwYTg2OGU1Y2IyZTljMDNlMzUyMzgxZjA0MDY2ZWEyYmM1NDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL5005" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 24 000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 40 mW Power Input
  • 3.5 mm stereo Connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f58"), + "name" : "JBL Endurance JUMP Wireless Headphone, Black", + "description" : "JBL Endurance JUMP Wireless Headphone, Black", + "price" : "70", + "sku" : "JBL Endurance JUMP Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431085-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTU0NHxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaDk2LzkwNjk5MDIxMDI1NTguanBnfGVjNTkxNzgyNTU4OTllMWU3MjBiNTc2YjMwMmFjYTlmMTNjNDgzNDI5MzM4ODdkMjQ5MGM2YWEzNmZkMDNmMjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f59"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Red", + "description" : "JBL Endurance SPRINT Wireless Headphone, Red", + "price" : "58", + "sku" : "JBL Endurance SPRINT Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431092-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA2MHxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDFjLzkwNjk5MTgwOTMzNDIuanBnfGU4Y2E1MWFhZGE1OGMxMTliNTdkZmY5MjI0ZDI0YThkMzIzNmE0YThhNGI3YzVhZTY5ZGY2MDAyOTU0Yjk0MzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5a"), + "name" : "JBL Endurance JUMP Wireless Headphone, Yellow", + "description" : "JBL Endurance JUMP Wireless Headphone, Yellow", + "price" : "70", + "sku" : "JBL Endurance JUMP Wireless Headphone, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431087-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzkzOHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDg5LzkwNjk5MDcwMTc3NTguanBnfDUxMmQzYzY0OWU3ZTFkMjM3MGZiN2JiY2I2OWYxMDAyYmZhYWY3MGE0ODJlZWE4ZGFhMzNhN2JlZGFjNDU2Nzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5b"), + "name" : "Sony MDR-EX15LP Wired Earphone, Blue", + "description" : "Sony MDR-EX15LP Wired Earphone, Blue", + "price" : "10", + "sku" : "Sony MDR-EX15LP Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX15LP-Headphones-and-Headsets-491431149-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzM2NnxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaGZmLzkwNjQ2MzM5NTg0MzAuanBnfDM2MWQwYTk0OTE5ZWQ4YmQ4N2VlOTY1NjQ2ZTE1OGViMjRiNTMwZmFlN2ZlN2VlOGIyNWZlYjViN2I3YWY4YjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX15LP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "8 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earbuds - S x2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5c"), + "name" : "SoundBot SB221 Wireless Headphone, Grey", + "description" : "SoundBot SB221 Wireless Headphone, Grey", + "price" : "44", + "sku" : "SoundBot SB221 Wireless Headphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB221-G-Headphones-and-Headsets-491431143-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjM5OHxpbWFnZS9qcGVnfGltYWdlcy9oZmIvaDEzLzkwNjcxNDUyOTc5NTAuanBnfDZiMjIxMmQzNGI1ZDhhMzVjOTljYzZkMjJjNWY0OTYzMzdlYjRkNjQ3OWUwNDAzZjI5OTcwNTNmZTI5NjU3ZGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Hands Free Calling: 25 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB221" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Water Proof Carry Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "72" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5d"), + "name" : "Jabra UC VOICE 150 Wired Headphone, Grey", + "description" : "Jabra UC VOICE 150 Wired Headphone, Grey", + "price" : "44", + "sku" : "Jabra UC VOICE 150 Wired Headphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-JABRA-UC-VOICE-Headphones-And-Headsets-491431080-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjM5fGltYWdlL2pwZWd8aW1hZ2VzL2g2ZC9oMTgvOTA2OTg5MDk2MTQzOC5qcGd8MGM5Yjg5ZTkxN2ZjMDg4OGFkNmUyMmZmY2I1M2Y1MGEyOWU3Njc4YjVhMGFjNGNiNzczOTQ5OTRjZjY1ZTNmNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "UC Voice 150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5e"), + "name" : "JBL Endurance DIVE Wireless Headphone, Blue", + "description" : "JBL Endurance DIVE Wireless Headphone, Blue", + "price" : "102", + "sku" : "JBL Endurance DIVE Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431082-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzE2OXxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaGY2LzkwNjk4OTMyNTUxOTguanBnfGFmNzA2NWNiODEyMjYzNDMyMDgxOTMyY2E2MGM3ZTk1MjA5MmY4Mjk4MDE3ZGE2OThlMmJkNWNhYTc4MWE3ZTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5f"), + "name" : "JBL Endurance JUMP Wireless Headphone, Blue", + "description" : "JBL Endurance JUMP Wireless Headphone, Blue", + "price" : "70", + "sku" : "JBL Endurance JUMP Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431086-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkwMXxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaGU1LzkwNjk5MDI0MzAyMzguanBnfDYyYjk4MDI1NTAyNDUwZDIzMDM2ZTAwZWVlYWJjODk4M2EwMDc4NjViOTRlMWZiOGI0NTBlNzdiZmIxOTJjZTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f60"), + "name" : "SoundBot SB210 Wireless Beanie Headphone, Black", + "description" : "SoundBot SB210 Wireless Beanie Headphone, Black", + "price" : "58", + "sku" : "SoundBot SB210 Wireless Beanie Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB210-Headphones-and-Headsets-491431148-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTE1MnxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDk3LzkwNjcxNDcyNjQwMzAuanBnfDM1ZDljZjQ1NDRkZmZiMmEzM2JhMGU3YWJlNDJjNTVjZTRiYmEzMDg0ZDVjZjhkMmU5YjU1ZTM5YmZlZjg4MzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Music Streaming: 5 hours
  • \n
  • Hands-Free Talking: 7 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "60" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "MicroUSB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Connection Range - Transmission range: Up to 33 feet
  • \n
  • Fabric - 50% Acrylic and 50% Polyester
  • " + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "204" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f61"), + "name" : "Skullcandy Crusher Over-the-Ear Headphone, Black", + "description" : "Skullcandy Crusher Over-the-Ear Headphone, Black", + "price" : "174", + "sku" : "Skullcandy Crusher Over-the-Ear Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S6CRW-K591-Headphone-Headsets-491378158-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDg3MXxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDg2LzkwNTQ5Nzg4MDE2OTQuanBnfDQ2ZGM4NjA5NjFhMmQ4ZmIxNWNiN2YzMzBhMTg5Y2MzMTk1MWRmOWJlOGZlOTkyOThkZmIzOTk1YTZhY2JmZTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "40 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Crusher" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3.5mm Backup AUX Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "275" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f62"), + "name" : "Sony WH-1000XM3 Wireless Headphone, Silver", + "description" : "Sony WH-1000XM3 Wireless Headphone, Silver", + "price" : "435", + "sku" : "Sony WH-1000XM3 Wireless Headphone, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-92480111-Headphones-And-Headsets-491431108-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjQyfGltYWdlL2pwZWd8aW1hZ2VzL2gyZi9oZGIvOTA2OTkyMjY4MDg2Mi5qcGd8MTA3OTg5N2U4YmY2YWZiMmQzMGJjZjEwZmRiOTNlNzgxNWU4MzQwMGYwZmJmOGI0NzY2ZDNkZjc2ZGFkMGJjYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-1000XM3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Carrying case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless freedom" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "47" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "101" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "104.5" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "225" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "30" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f63"), + "name" : "JBL Endurance DIVE Wireless Headphone, Black", + "description" : "JBL Endurance DIVE Wireless Headphone, Black", + "price" : "102", + "sku" : "JBL Endurance DIVE Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431081-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTc2N3xpbWFnZS9qcGVnfGltYWdlcy9oYjgvaDM3LzkwNjk4OTI1OTk4MzguanBnfGEzMmZjNDViZjk3MWY3YzM1OTE2MzVlMGNmMzQ1MjRkMWZmNjFhOGQ5YjNkODBjZDVhZDhjYmUyZGVhYzc0Y2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f64"), + "name" : "Philips SHE3905BK/00 Wired Earphone, Black", + "description" : "Philips SHE3905BK/00 Wired Earphone, Black", + "price" : "14", + "sku" : "Philips SHE3905BK/00 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE3905BK-00-Wired-Earphone-Black-491163870-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODUzNXxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGMwLzg5Mjc4NDc0NDg2MDYuanBnfGM4YWEwMmNlMGRlNmNmYzdhYmRiYjZlYWViNjRmMmU4MzZjMWI5YjUwZGFiYzgyMmQ1MDQzNjRiZjIyMmY2ZDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE3905BK/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f65"), + "name" : "Philips SHL4600BK Wired Headphone, Black", + "description" : "Philips SHL4600BK Wired Headphone, Black", + "price" : "22", + "sku" : "Philips SHL4600BK Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-20Headphone-SHL4600-491315536-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjI5N3xpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDYzLzg5Mjc3NDMwNDk3NTguanBnfGFhOTQ1MTNiOGNmOTUyYjU3Y2ViZmFmNzI4MjQzOWIwNmY2N2NhMDU4YWI2Zjk4MzFjMWQ0NGU1Mzg1NzRjY2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL4600BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f66"), + "name" : "Philips SHL4400BK Wired Headphone, Black", + "description" : "Philips SHL4400BK Wired Headphone, Black", + "price" : "12", + "sku" : "Philips SHL4400BK Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL4400BK-Wired-Headphone-Black-491315532-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzgxN3xpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDE4Lzg5Mjc3MzkwNTIwNjIuanBnfGIwNGE0NmY2OTY3MDZhYTgyOGIzMGUyODhkMjg4MGY3NjlmNGY1NDYwM2Y3NmU4MjUwZjlhYTEyYWUwMjcyM2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL4400BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f67"), + "name" : "Philips SHB4000/00 Bluetooth Stereo Wireless Headphones, Black", + "description" : "Philips SHB4000/00 Bluetooth Stereo Wireless Headphones, Black", + "price" : "44", + "sku" : "Philips SHB4000/00 Bluetooth Stereo Wireless Headphones, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB4000-00-Bluetooth-Stereo-Wireless-Headphones-Black-491086943-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTA4MnxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaGU0Lzg5Mjc4NDg3NTkzMjYuanBnfDYzZjFmMWIzNTMwZDZkYjE2MDRhM2FmNWUyNDU0ZTRjMDA1MWEyNjNjMmZiODU1MzhlM2NjYTZhOWE0MzBlNzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB4000/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Quick start guide
  • USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 100 mW
  • Speaker diameter: 32 mm
  • Call Management: Answer/End Call" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "71" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f68"), + "name" : "Philips SHL3000RD/00 Wired Headphone, Red", + "description" : "Philips SHL3000RD/00 Wired Headphone, Red", + "price" : "15", + "sku" : "Philips SHL3000RD/00 Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3000RD-00-Wired-Headphone-Red-491086936-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjc5M3xpbWFnZS9qcGVnfGltYWdlcy9oYzUvaGJjLzg5Mjc4Mzk1ODQyODYuanBnfDNjODY4ZDNiYjdlZGJjMGRjZGFkYTM1ODNmOTdjMGIyMGYzZmUxOTBlM2NlYzVlMzUzZDQ1NThjOWIxMWI4MTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3000RD/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Closed type acoustic provide good sound isolation
  • 32mm speaker driver delivers powerful and dynamic sound
  • A 1.2m long cable that is ideal for outdoor use
  • Flat foldable for you easy to carry on the go
  • Adjustable earshells and headband fits the shape of any head
  • Soft ear cushions for comfortable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f69"), + "name" : "Skullcandy Uproar Wired Headphone, Black/Gray", + "description" : "Skullcandy Uproar Wired Headphone, Black/Gray", + "price" : "44", + "sku" : "Skullcandy Uproar Wired Headphone, Black/Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Uproar-Wired-Headphone-Black-Gray-491315302-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQ1M3xpbWFnZS9qcGVnfGltYWdlcy9oM2MvaGI5Lzg5Mjc2ODY0MjY2NTQuanBnfDg1NGJhNWQyMTBiNzMxMWNmMjI4MjMwMmIyN2Q4MDdiMTFmODQ3MzQ5MDI1Y2QxMTJjNDNlYTAxY2RjOTFhOTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Uproar" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Gray" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium materials and Supreme Sound acoustics
  • Soft on-ear cushions for lightweight and comfortable fit
  • Call and track control via the built-in microphone and remote on ear cup
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6a"), + "name" : "Skullcandy Grind Wireless Headphone, Black/Tan", + "description" : "Skullcandy Grind Wireless Headphone, Black/Tan", + "price" : "95", + "sku" : "Skullcandy Grind Wireless Headphone, Black/Tan", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Grind-Wireless-Headphone-Black-Tan-491315297-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTY5NnxpbWFnZS9qcGVnfGltYWdlcy9oOGMvaDNmLzg5Mjc2ODIxNjY4MTQuanBnfDc1MTYwYzNkMWY1ZDk2MTc5MGMyODQ4ZGExYjQ1YmVmN2JhNDQ0NDJjNDAyMzNkNjQwN2Q3MzVkYjNjM2Q0YjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Grind" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium materials and widely celebrated acoustics
  • Bluetooth wireless with 12-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Tan" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6b"), + "name" : "Skullcandy JIB Wired Earphone, Red/Black", + "description" : "Skullcandy JIB Wired Earphone, Red/Black", + "price" : "15", + "sku" : "Skullcandy JIB Wired Earphone, Red/Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wired-Earphone-Red-Black-491315282-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODA5MnxpbWFnZS9qcGVnfGltYWdlcy9oZGIvaDY3Lzg5Mjc2OTY1ODQ3MzQuanBnfGNhYmUzNjhlNzcwZjZkY2U3ZDc1YmM3NTZjOWNmNWQyZDlmYzAyYzk0NGM2NTg5NmIzMWY3NzI0NDBiYjAyZTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red/Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound technology for rich" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6c"), + "name" : "Bose AE2w Wireless Headset, Black", + "description" : "Bose AE2w Wireless Headset, Black", + "price" : "276", + "sku" : "Bose AE2w Wireless Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-AE2w-Wireless-Headset-Black-491086598-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjgzNHxpbWFnZS9wbmd8aW1hZ2VzL2hjNy9oNWUvODkyNzYwNjA3OTUxOC5wbmd8MTM1NzE0N2M5M2NmNDRjMDRkNjQ2YjY0MDFhMzk0NTI2YjU0MDU1ZmNlYTMzYTc4YjRhMzdjMmNmN2RhN2UwOQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Model", + "attributeValue" : "AE2w" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Bluetooth Control Module
  • USB Charging Cable
  • Optional Audio Cable
  • Drawstring Carry Bag
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Unwind without wires
  • Better sound built in
  • Wireless convenience
  • Versatile control module
  • Comfort and durability
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149.6" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6d"), + "name" : "Philips O'Neill SHO3305STKR/00 Wired Headphone, White", + "description" : "Philips O'Neill SHO3305STKR/00 Wired Headphone, White", + "price" : "29", + "sku" : "Philips O'Neill SHO3305STKR/00 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-O-Neill-SHO3305STKR-00-Wired-Headphone-White-491073385-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDM2N3xpbWFnZS9wbmd8aW1hZ2VzL2g3Mi9oY2MvODkyNzc2ODM0NjY1NC5wbmd8MWE3MjU1NDE4OTAyYzc2NWZjZTM3NGRhNDdiMTdlZWM0ZGQ2MGRlOTYwYzcwMDFlYmJiZGMyZmFkNmZmYmViZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "O'Neill" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHO3305STKR/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "118" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type - Neodymium
  • Maximum power input - 30 mW
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6e"), + "name" : "Sony MDR-IF245RK Wireless Headphone, Black", + "description" : "Sony MDR-IF245RK Wireless Headphone, Black", + "price" : "73", + "sku" : "Sony MDR-IF245RK Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-IF245RK-Wireless-Headphone-Black-491072966-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjk2NnxpbWFnZS9wbmd8aW1hZ2VzL2g3Yi9oYWEvODkyNzgxNzY5NTI2Mi5wbmd8YTVhMmVkNGYxNDk2YjYzY2ZkODg2MDQ4MzBiYzIzMjJiYzI4ODNlMmUwMzUxYmIyNzFkOTE5NzkyOTA4MDdhZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "604" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver Unit: 9 mm
  • Magnet: Neodymium
  • Stereo Connecting Cable
  • Battery Life: Approx. 28 hours
  • Battery Charging Time: Approx. 7 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-IF245RK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Transmitter Stand
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6f"), + "name" : "Skullcandy Ink'd 2 Wired Headphone, Black/Gold", + "description" : "Skullcandy Ink'd 2 Wired Headphone, Black/Gold", + "price" : "21", + "sku" : "Skullcandy Ink'd 2 Wired Headphone, Black/Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Ink-d-2-Wired-Headphone-Black-Gold-491064833-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTgxNnxpbWFnZS9wbmd8aW1hZ2VzL2g5Yy9oYjkvODkyNzgyNDI0ODg2Mi5wbmd8YjE0N2QyYmI0ZmE5ZDQ5YTY3Y2QxZWI1ZGQ0ODlkODhlMDI3MWZlNjRmZDQ3OGRkMzcyYWMxZjlhYzdkM2QzYg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Ink'd 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • THD: less than 0.1% (1 mW / 500 Hz)
  • Cable Type: TPE
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f70"), + "name" : "Jabra Wave Wireless Headphone, Black", + "description" : "Jabra Wave Wireless Headphone, Black", + "price" : "58", + "sku" : "Jabra Wave Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/caf481bf-8c08-4013-9094-245759df652f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ4OXxpbWFnZS9wbmd8aW1hZ2VzL2gxMy9oODYvODgwMjkwNTI5MjgzMC5wbmd8OGVmZTZkYzFjZmQ1MGRiYTUwZDdmODBlN2QyZGE4YWVjNWM1NzcyNzFiNDY0NDM5ODUxNWE0ZjdhNjdkZjc0NA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f71"), + "name" : "LG Tone Active+ HBS-A100 Wireless Earphone, Black/Grey", + "description" : "LG Tone Active+ HBS-A100 Wireless Earphone, Black/Grey", + "price" : "174", + "sku" : "LG Tone Active+ HBS-A100 Wireless Earphone, Black/Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-Tone-Active-HBS-A100-Wireless-Earphone-Black-Grey-491332663-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDMzMHxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDk0Lzg5Mjc2Mjk2MDY5NDIuanBnfGJiMGFiYjU0ODIxNTM5MDJmOWMzYzZmNzQ3YzQxYjg2OTJkMDRjZjkyY2MxOWQxNmVjNzFhNTM5MWQzYjNmODc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Talk Time: Up to 13 hours (Speaker Mode up to 9.5 hours)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "HBS-A100" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Grey" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "144.78 (W) x 147.32 (H) x 17.78 (D) mm" + }, + { + "attributeName" : "Weight", + "attributeValue" : "60" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f72"), + "name" : "JBL T280A Wired Earphone, Gold", + "description" : "JBL T280A Wired Earphone, Gold", + "price" : "44", + "sku" : "JBL T280A Wired Earphone, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T280A-Wired-Earphone-Gold-491099198-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjM2OHxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDZmLzg5Mjc3MDIyMjA4MzAuanBnfDk2ZGYwZDU2M2FkNDU1MzU3N2YwYTg3NmQwYzM2MGQyMTZjYWQyNmRjYjQyNWY4ODVmN2QzYjNkZmJmOTkzNGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T280A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single Button Mic and Remote
  • Legendary JBL sound
  • Durable tangle resistant flat cable
  • High Performance 9mm Drivers
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f73"), + "name" : "Sony MDR-XB50BS Wireless Earphone, Red", + "description" : "Sony MDR-XB50BS Wireless Earphone, Red", + "price" : "80", + "sku" : "Sony MDR-XB50BS Wireless Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB50BS-Wireless-Earphone-Red-491277345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTUxM3xpbWFnZS9qcGVnfGltYWdlcy9oOTAvaDE0Lzg5Mjc2NjA3MzY1NDIuanBnfGY1ZTc5ZjExM2QwZmNhODAzZThkZjYzMmEwZDVjOTI2NzFmZjNhMGE4OTE1NjBlZmY1ZDk4YzFiYWU5YmJiMmE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "8.5 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB50BS" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f74"), + "name" : "Sennheiser HD 202 II Headphone, Black", + "description" : "Sennheiser HD 202 II Headphone, Black", + "price" : "37", + "sku" : "Sennheiser HD 202 II Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-202-II-Headphone-Black-491004893-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDczNXxpbWFnZS9wbmd8aW1hZ2VzL2hkNS9oMDIvODkyNzgxNTQwMTUwMi5wbmd8ZDk0ODk4NzEwMTg3MTU2OWE0NjUxNGFlZDIzY2MyM2M2MmExNzQwNDY4NGJhMzJlOTA4YmNhOTk0Y2ZhZDI3Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "HD" + }, + { + "attributeName" : "Model", + "attributeValue" : "202 II" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Weight", + "attributeValue" : "130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1 Cord take-up with Clip
  • 1 Adaptor 3.5/6.3 mm Stereo Jack Plug
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f75"), + "name" : "Philips SHL3075 Wired Headphone, Red", + "description" : "Philips SHL3075 Wired Headphone, Red", + "price" : "26", + "sku" : "Philips SHL3075 Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075-Headphones-and-Headstes-491362708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzQ3MnxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaGUxLzg5NDY4ODIzMTQyNzAuanBnfDUyNDllYTZiZTczZTc3NzVmYzUzZWFlM2Q0ODI2M2ZmMDhjN2M4YWIwOTlkMjk1Y2M4NWExMDlhOGUwODY1Njc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f76"), + "name" : "Philips ActionFit SHQ1200TLF Wired Earphone, Green/Grey", + "description" : "Philips ActionFit SHQ1200TLF Wired Earphone, Green/Grey", + "price" : "11", + "sku" : "Philips ActionFit SHQ1200TLF Wired Earphone, Green/Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1200TLF-Wired-Earphone-Green-Grey-491315528-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTkyOXxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDBlLzg5Mjc2ODc0MDk2OTQuanBnfGMyY2FlMWI3ZTE5MzkxMDhkMzliNTMxYzc3YjJmNzY3ODZmZDM5NGU3YjI3M2YzOTkwOTZjODE1ZThjNzliZjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Running" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1200TLF" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green/Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "18" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f77"), + "name" : "Sony WS Series NW-WS623 Wireless Earphone, Black", + "description" : "Sony WS Series NW-WS623 Wireless Earphone, Black", + "price" : "131", + "sku" : "Sony WS Series NW-WS623 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-NW-WS623-Headphones-and-Headstes-491336183-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjA3M3xpbWFnZS9qcGVnfGltYWdlcy9oNDkvaDY2Lzg5NDY3OTMyNTA4NDYuanBnfDI0OTgxY2IyN2NkOWNlYTg4NDVmNjZiM2JmZjM4OGUzMjc0ZTA4MGRkN2E4M2EyNWJhZjg1MWFhOTY0MDFkZDQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cradle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "macOS (v10.8-10.12)" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "WS Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "NW-WS623" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Behind-the-neck" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "32" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f78"), + "name" : "JBL T450BT Wireless Headphone, White", + "description" : "JBL T450BT Wireless Headphone, White", + "price" : "51", + "sku" : "JBL T450BT Wireless Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450BT-Headphone-and-Headsets-491332667-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzc3NnxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaGY2Lzg5Nzk3MDgxODI1NTguanBnfGQxNDE1OGEyMWU0ODczMDY4N2VlODdkMDk0YzFiOTBiZTE0NDdkNjc2OGI1ZjQ4YjhiMDNmNmY5Njg0N2M3NjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T450BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dynamic Driver: 32mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f79"), + "name" : "Amkette Trubeats Street X7 Wired Earphone, Red/Black", + "description" : "Amkette Trubeats Street X7 Wired Earphone, Red/Black", + "price" : "8", + "sku" : "Amkette Trubeats Street X7 Wired Earphone, Red/Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Street-Swagger-Headphones-and-headsets-491320282-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDMwOXxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDBjLzg5OTQ3NTQ4MjIxNzQuanBnfDJiMGUyOWFkYWIzMWYwZDU4YzYxYmEzYmJlY2I3MzZhZjFiNWFmZWEzYzY2ZGNiMGQ2ZTAyZDc5YzFhOWVkYTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats Street" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red/Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 10mm Neodymium dynamic drivers 
  • Powerful bass and stereo sound quality
  • 3.5 mm Stereo
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7a"), + "name" : "Amkette Trubeats X9 Wired Earphone, Glittery Gold", + "description" : "Amkette Trubeats X9 Wired Earphone, Glittery Gold", + "price" : "12", + "sku" : "Amkette Trubeats X9 Wired Earphone, Glittery Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Trubeats-Earphone-X9-Headphones-and-headsets-491320287-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjY2N3xpbWFnZS9qcGVnfGltYWdlcy9oNGYvaGYyLzg5OTQ3NTkwODIwMTQuanBnfDJiZmQwYTE3MmFjMzNiMjY3ODA1YzMwZmIyZTNhODg4NTVmNzRlZGIzNmZkNzFiNWRiMWFjZjQ3NjQ3MWVhMWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz -20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glittery Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Isolation
  • li>10 mm neodymium dynamic driver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7b"), + "name" : "Amkette Trubeats X9 Wired Earphone, Bold-Bronze", + "description" : "Amkette Trubeats X9 Wired Earphone, Bold-Bronze", + "price" : "12", + "sku" : "Amkette Trubeats X9 Wired Earphone, Bold-Bronze", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Trubeats-Earphone-X9-Headphones-and-headsets-491320286-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDc3OXxpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDY3Lzg5OTQ3NTM1MTE0NTQuanBnfGZjY2QxYTU1NzE4MmJhZjY2Mzg1YzBiZjcyZTQ0M2ZhOWUxMDNiYTcwZDliN2U3OGE1OTQwZDI4MWQxNTYyMzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz -20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bold-Bronze" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Isolation
  • li>10 mm neodymium dynamic driver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7c"), + "name" : "Itek Stayfit BEB003 Wireless Earphone, Green", + "description" : "Itek Stayfit BEB003 Wireless Earphone, Green", + "price" : "25", + "sku" : "Itek Stayfit BEB003 Wireless Earphone, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-BEB003-Headphones-and-headsets-491378102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk1NHxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGM0Lzg5OTQ3NTAyMzQ2NTQuanBnfDMyYmVlNGY1Njc3NzNmYTNkMjk4MTVjZWEzYzMwYzI3MjFjODdjNTgxNDgwMDVjYTg2ZTc3NjA4ZTY4MjcxOWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "5 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BEB003" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth Connectivity
  • \n
  • 5 Hour Battery Life
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Weight", + "attributeValue" : "99.8" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7d"), + "name" : "Philips ActionFit Sports SHQ3400LF Wired Earphone, Lime Yellow/White", + "description" : "Philips ActionFit Sports SHQ3400LF Wired Earphone, Lime Yellow/White", + "price" : "18", + "sku" : "Philips ActionFit Sports SHQ3400LF Wired Earphone, Lime Yellow/White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ3400LF-Headphones-and-Headsets-491362747-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjUzNnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDVhLzg5OTQ3NDgwNzE5NjYuanBnfDM2ZDljYWI5MzgyYzkyNjc4YWY2ODE3MWI1YzhjMGI0YzkxZjIxNWU3MTMxYjVkM2Y5MzU1OWRhYTVkNWE5MzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3400LF" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Yellow/White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Eartips: 3 sizes S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Tangle-free Workout
  • \n
  • Ultralight design
  • \n
  • Magnet Type: Neodymium
  • \n
  • Maximum Power Input: 20 mW
  • " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7e"), + "name" : "Amkette Trubeats Street X7 Wired Earphone, Black/Grey", + "description" : "Amkette Trubeats Street X7 Wired Earphone, Black/Grey", + "price" : "8", + "sku" : "Amkette Trubeats Street X7 Wired Earphone, Black/Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Street-Uber-Headphones-and-headsets-491320284-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDg3MXxpbWFnZS9qcGVnfGltYWdlcy9oNTUvaGVhLzg5OTQ3NDgzOTk2NDYuanBnfDJhZDg1Mzg3OTdlYzhjMDRkMzg3ODVhYmZhODNhNzM2ODA3ODQ2MDQyYmVmN2FmMjU1ODgzNWRmMWVkMGZhZmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats Street" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Grey" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 10mm Neodymium dynamic drivers 
  • Powerful bass and stereo sound quality
  • 3.5 mm Stereo
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7f"), + "name" : "Creative Sound BlasterX H3 GH0340 Gaming Headset, Black", + "description" : "Creative Sound BlasterX H3 GH0340 Gaming Headset, Black", + "price" : "87", + "sku" : "Creative Sound BlasterX H3 GH0340 Gaming Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0340-Headphones-and-Headsets-491430847-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTE0N3xpbWFnZS9qcGVnfGltYWdlcy9oODAvaDRiLzg5OTQ3NDExOTA2ODYuanBnfDY3ODY3ZTUxODkwYjE2NjhkZWEwMjE4ZDljM2QyMDRhNzE0YWM3YWVmYjk3OGY0MDhiNTkyNmZlNjJmZTI0ZWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound BlasterX H3" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0340" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 15kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Versatile compatibility
  • Convenient In-line remote control
  • Warm sound signature
  • Detachable noise reduction microphone
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Tethered cable including inline control - 1.2m / 3.9ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f80"), + "name" : "Creative Draco HS880 EF0700 Gaming Headset, Black", + "description" : "Creative Draco HS880 EF0700 Gaming Headset, Black", + "price" : "72", + "sku" : "Creative Draco HS880 EF0700 Gaming Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0700-Headphones-and-Headsets-491430848-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzQwNnxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaDY0Lzg5OTQ3NDE4NDYwNDYuanBnfDBiZDQyMTk0MmYxMzQ2OTFmNzFkNTUzZDk4YWRmZDdkNGVmZjc5ZTY0NDA1NjMwZDNiNDFmNWIyYjhkNzBmNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Draco HS880" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0700" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 18kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "268" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Detachable Mic
  • Swivel earcups
  • Finely tuned Neodymium drivers
  • Steel Core Headband
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Tethered cable including inline control - 2.5m / 8.2ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f81"), + "name" : "Creative Sound BlasterX H5 GH0310 Gaming Headset, Black", + "description" : "Creative Sound BlasterX H5 GH0310 Gaming Headset, Black", + "price" : "174", + "sku" : "Creative Sound BlasterX H5 GH0310 Gaming Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0310-Headphones-and-Headsets-491430846-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTcyNHxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGIzLzg5OTQ3NDE1MTgzNjYuanBnfGI5ODU0ZWYxMWY3MmViYWU3ZDE4ZDRlNzgwN2E3YzA0YTAxYzE3YmI3NDYwY2RmM2VmZDBlZjI0YzdhZjcxOTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound BlasterX H5" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0310" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 15kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "338" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • BlasterX Acoustic Engine Lite
  • 50 mm fullspectrum audio driver
  • Detachable microphone
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Crystalline capsule carry case
  • \n
  • 1.2m Y-splitter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f82"), + "name" : "Creative Sound Blaster Blaze GH0320 Gaming Headset, Black", + "description" : "Creative Sound Blaster Blaze GH0320 Gaming Headset, Black", + "price" : "58", + "sku" : "Creative Sound Blaster Blaze GH0320 Gaming Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0320-Headphones-and-Headsets-491430849-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDUwNnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDQ2Lzg5OTQ3NDA4NjMwMDYuanBnfDFiZTJlYjllMWY0N2IwMTYyOWEyZTQ1NTg4NzdmMWVlZWY5MTdmYjUwZGI3ZGYyMDFiODhjM2E2MzBmMDU3YzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound Blaster Blaze" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0320" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 18kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight
  • Detachable microphone
  • Noise-reduction
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable microphone and in-line volume control - 2.5m / 8.2ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f83"), + "name" : "Creative Outlier Sports EF0730 Wireless Earphone, Fiery Orange", + "description" : "Creative Outlier Sports EF0730 Wireless Earphone, Fiery Orange", + "price" : "102", + "sku" : "Creative Outlier Sports EF0730 Wireless Earphone, Fiery Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0730-Headphones-and-Headsets-491430842-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTI1MHxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDFjLzg5OTQ3Mzc5MTM4ODYuanBnfDM0ZmQyNWNjZTY2NDE1ZjYwMGM3OTZhNjdlOTliOWQ1Yzc1ZTc0MDNlNzRmOTI4MWEwYTFhNjAwMzkwNzc5Y2Y", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 11 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Outlier" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0730" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6mm Neodymium Drivers
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fiery Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f84"), + "name" : "Creative Flex EF0710 Wired Headphone, Black", + "description" : "Creative Flex EF0710 Wired Headphone, Black", + "price" : "44", + "sku" : "Creative Flex EF0710 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0710-Headphones-and-Headsets-491430844-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTM3MHxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDJjLzg5OTQ3MzU5NDc4MDYuanBnfDg4ZWIyYTYzMWQ0Y2QyYjdiOWM5NTYyZDEwMjdjMGMxMmM0NDA4OWQyYjliNjAyY2NjNTMxMWE0MzZjNmNiYTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Flex" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0710" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "136" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 32mm Neodymium Drivers
  • 90 Degree Swivel Earcups
  • \n
  • Cable Length: 1.2 m
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Four Pairs of Changeable Color Tabs" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f85"), + "name" : "Creative Sound Blaster Jam GH0300 Wireless Headphone, Black", + "description" : "Creative Sound Blaster Jam GH0300 Wireless Headphone, Black", + "price" : "51", + "sku" : "Creative Sound Blaster Jam GH0300 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0300-Headphones-and-Headsets-491430843-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTI3NHxpbWFnZS9qcGVnfGltYWdlcy9oNWYvaDhkLzg5OTQ3MzY5MzA4NDYuanBnfGJmZDYzM2IwNjY1NTQwNmY3NTE2MDkwNjZiYzYwZTUwZGMyYjY1NDAzMzRkODUxMjU0NmY1ODM4YWU1YWFhNWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "12 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0300" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sound Blaster Jam" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1m USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Thick Foam Ear Cushions 
  • Near Field Communication (NFC) 
  • Ultra Light weight
  • \n
  • Cable Length: 1 m
  • \n
  • 32 mm Neodymium Magnet
  • \n
  • Bluetooth 4.1
  • \n
  • Operating Range: Up to 15 m
  • \n
  • Play time: 12 hours
  • " + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "83" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Foam" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "12" + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f86"), + "name" : "Creative Outlier Sports EF0730 Wireless Earphone, Midnight Blue", + "description" : "Creative Outlier Sports EF0730 Wireless Earphone, Midnight Blue", + "price" : "102", + "sku" : "Creative Outlier Sports EF0730 Wireless Earphone, Midnight Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0730-Headphones-and-Headsets-491430840-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDA2NXxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaGM2Lzg5OTQ3MzM5ODE3MjYuanBnfDdkZDhmZTA2MzJmOTA1MzRiZDUzOTE5M2JjMzQ5MTJiY2QyNmZlM2RiNGViZmI4NzMzZjJlMWYxZTA1MDFmYzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 11 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Outlier" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0730" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6mm Neodymium Drivers
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f87"), + "name" : "JBL T110 Wired Earphone, White", + "description" : "JBL T110 Wired Earphone, White", + "price" : "19", + "sku" : "JBL T110 Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphone-and-Headsets-491315591-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM3OXxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaGJmLzg5Nzk3MDYxNTA5NDIuanBnfDljOWQzYzAwMmZmMWMzZGU3ZjhiNzRhZmQ3NGNhOWVhOTUyNDYyYmY1MGJmMDNkMDdlYjQyMDJjMmZlZTJkZWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug: 3.5mm
  • \n
  • Dynamic Driver: 9mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f88"), + "name" : "JBL T110 Wired Earphone, Black", + "description" : "JBL T110 Wired Earphone, Black", + "price" : "19", + "sku" : "JBL T110 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphone-and-Headsets-491315590-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQzNXxpbWFnZS9qcGVnfGltYWdlcy9oNDQvaDJiLzg5Nzk3MTI1MDc5MzQuanBnfDM2ZTg3M2U5N2E4NTFlZjdmODkyMjViODFjOGIwMzM0NDc5YmQ2NjEzZjk3OTBiYzE3YThkNmUzYjA3MzQyN2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug: 3.5mm
  • \n
  • Dynamic Driver: 9mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f89"), + "name" : "Sony MDR-EX31BN/B Wireless Bluetooth Headset, Black", + "description" : "Sony MDR-EX31BN/B Wireless Bluetooth Headset, Black", + "price" : "102", + "sku" : "Sony MDR-EX31BN/B Wireless Bluetooth Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX31BN-B-Wireless-Bluetooth-Headset-Black-491158987-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTI2OHxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaGEyLzg5Mjc2MDE4MTk2NzguanBnfDNkNTlhYTY2YTJkYWMxYzQ2OWI3NjY2MmQwMTA5ZjRlNDg0NjNmMjFjMjdkYmRjZWEzNDg2ZTk3NzdjNDQyOWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB Cable
  • Hybrid silicone earbuds (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX31BN/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 13.5mm high sensitivity driver
  • Maximum Communication Range - Line of sight approx. 30ft (10m)
  • Omnidirectional Microphone
  • Battery Life - (NC ON) Approx. 9.0 Hours" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8a"), + "name" : "Samsung EHS64 Wired Earphone, White", + "description" : "Samsung EHS64 Wired Earphone, White", + "price" : "7", + "sku" : "Samsung EHS64 Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EHS64AVFWECINU-Headphone-and-Headset-491430863-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDU1fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oYjgvOTAxMTM5OTAzMjg2Mi5qcGd8YTFkMWY4MWQxMmI1NTU5YTQ5MjM0NmVkOTRiOWVhMDdjYzAwNzI1MmQ2MDMyOTA4ZjczY2ExYTEzNTUxNjAwMw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EHS64" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8b"), + "name" : "Sony WI-C400 Wireless Earphone, Blue", + "description" : "Sony WI-C400 Wireless Earphone, Blue", + "price" : "58", + "sku" : "Sony WI-C400 Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-WI-C400-BL-Headphone-and-Headsets-491431214-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzA5MXxpbWFnZS9qcGVnfGltYWdlcy9oYTgvaDkxLzkwODc3MTk3MzUzMjYuanBnfDE1ODZmZWZmZDc3YmMwMDBkNjczNmU4ZjdjYzNhYTc1N2MwYzhmNjljYWRkNjdmYTI3ZjBjYzFiMGU2ODMyOTM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8c"), + "name" : "Skullcandy JIB Wired Earphone with Mic, Gray/Hot Lime", + "description" : "Skullcandy JIB Wired Earphone with Mic, Gray/Hot Lime", + "price" : "15", + "sku" : "Skullcandy JIB Wired Earphone with Mic, Gray/Hot Lime", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wired-Earphone-with-Mic-Gray-Hot-Lime-491315281-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTMyOXxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaDE5Lzg5Mjc2OTkyMDYxNzQuanBnfGVlZDFkOGMwMTg5ZGQxZDM3MGE5MDMwN2ViZDY5MmNjNDZjNzczMzBhMjdkNWZjZTI2MmM1YjZlMjAwYTI5ZDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray/Hot Lime" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound technology for rich" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8d"), + "name" : "Skullcandy Grind Wired Headphone, Ill Famed Royal Blue", + "description" : "Skullcandy Grind Wired Headphone, Ill Famed Royal Blue", + "price" : "58", + "sku" : "Skullcandy Grind Wired Headphone, Ill Famed Royal Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/3f0bb654-cf8a-46c0-9ec1-820b24622101-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTE0MXxpbWFnZS9qcGVnfGltYWdlcy9oMTMvaDhmLzg4MTc5MjQ2MDM5MzQuanBnfDAxZDUxMTRlYjM3Yzc3Y2ZlNmI5NmIxNGFlMGEwYTMyMzEyYzdiMzBkMWExZDlmNDJkZGQ1Y2RkMjZiNjM5M2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Grind" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ill Famed Royal Blue" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8e"), + "name" : "Sony WI-C400 Wireless Earphone, White", + "description" : "Sony WI-C400 Wireless Earphone, White", + "price" : "58", + "sku" : "Sony WI-C400 Wireless Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-WI-C400-WHT-Headphone-and-Headsets-491431213-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjA3fGltYWdlL2pwZWd8aW1hZ2VzL2g1Yy9oNjYvOTA4NzcyMDM5MDY4Ni5qcGd8ZGI5NjljNWI0NWU1MDdmYWVlOTVmZDlkMTgwZTNhMDhiYTM2Y2YxNzgwMWFmYzdlODhiMzdjMmVhYWFlYmQ2Yg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8f"), + "name" : "Jabra Sport Coach Wireless Bluetooth Earphone, Blue", + "description" : "Jabra Sport Coach Wireless Bluetooth Earphone, Blue", + "price" : "131", + "sku" : "Jabra Sport Coach Wireless Bluetooth Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/4578b2da-48bf-4da9-b226-86f3748189b5-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTA5MnxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDhjLzg4MDUwMDAwODU1MzQuanBnfDlmNWI0NDU5NzI2Mjk3YmQ2ODVlMGNkNWM4MTQxMjQ2MzA1YTM4YTkwZGQ5N2QzMWYyMGUxYjRjMjg2MjQxNmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 4 sets of EarGels
  • 3 sets of EarWings
  • 2 FitClips
  • Protective Pouch
  • USB cable
  • Jabra Sound App unique registration leaflet
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Sport Coach" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • NFC for easy pairing
  • Answer/end call
  • Reject call
  • Voice dialling
  • Last number redial
  • Volume control
  • Track control
  • Play/pause music
  • Voice guidance
  • Dolby sound enhancement via application
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "94" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f90"), + "name" : "Sony WI-C400 Wireless Earphone, Red", + "description" : "Sony WI-C400 Wireless Earphone, Red", + "price" : "58", + "sku" : "Sony WI-C400 Wireless Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-WI-C400-RD-Headphone-and-Headsets-491431212-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjA1fGltYWdlL2pwZWd8aW1hZ2VzL2hkYi9oNmEvOTA4NzcyMTA0NjA0Ni5qcGd8Mjg5ZGY3NjAyNTM5NDVjZWUzZWZiYTkxNmNkYTRiZmVjYWZiMjc4YjA0OWI0MzczNDJjMWNhYTQ1NTE5ZGM1Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f91"), + "name" : "Philips SHQ1400LF Wired Earphone, Lime Yellow/White", + "description" : "Philips SHQ1400LF Wired Earphone, Lime Yellow/White", + "price" : "14", + "sku" : "Philips SHQ1400LF Wired Earphone, Lime Yellow/White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ1400LF-Headphone-and-Headsets-491362748-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQxfGltYWdlL2pwZWd8aW1hZ2VzL2g4Mi9oOGEvOTA4NzcyNDMyMjg0Ni5qcGd8YjNhMDhiY2Q3NDczMmZlODYxNjk3N2I5ZTM1YTlhZDk3MTIxOTRiZGJmZjViY2I3NjQ0ZTMxMjJhNDUyNmIxNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1400LF" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Yellow/White" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f92"), + "name" : "JBL Endurance Run Wired Earphone, Teal", + "description" : "JBL Endurance Run Wired Earphone, Teal", + "price" : "24", + "sku" : "JBL Endurance Run Wired Earphone, Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550855-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTc1fGltYWdlL2pwZWd8aW1hZ2VzL2g1ZS9oNjgvOTExNDUwODY4OTQzOC5qcGd8YzI5NzgyNTVlNmExOWVmZTZkYmMwMDA5NWI0NzI2ZTI5ZjlkNDQwY2YxNDMxN2Q4M2EzMWMzMmE0OGY1YzY0ZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f93"), + "name" : "JBL Endurance Run Wired Earphone, Yellow", + "description" : "JBL Endurance Run Wired Earphone, Yellow", + "price" : "24", + "sku" : "JBL Endurance Run Wired Earphone, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550853-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTY4fGltYWdlL2pwZWd8aW1hZ2VzL2hiOS9oOTMvOTExNDUwMDEwNDIyMi5qcGd8MmU0ZWYwMGI4NjkzMjkyYjllMWRjM2IxYzUwNmU5NjY4ZTkwODAzZDc2N2IzMjI2YzY0MWU4ODMzNGY5NTMxMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f94"), + "name" : "JBL TUNE 500BT Wireless Headphone, White", + "description" : "JBL TUNE 500BT Wireless Headphone, White", + "price" : "56", + "sku" : "JBL TUNE 500BT Wireless Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT500BTWHT-Headphone-and-Headset-491431264-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg0OHxpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDIzLzkxMjA3NDI1NzIwNjIuanBnfDhjM2EzYjAxMmRiMDBjNDk2OTVmYTE1MTFjZDg2YWQ5N2UzNzNlZDI1MmZmMzRhOWE4NDk1M2Q1NTdjM2NiYzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE 500BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "155" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "16" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f95"), + "name" : "JBL TUNE 500BT Wireless Headphone, Black", + "description" : "JBL TUNE 500BT Wireless Headphone, Black", + "price" : "56", + "sku" : "JBL TUNE 500BT Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT500BTBLK-Headphone-and-Headset-491431262-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzIxOXxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaDJjLzkxMjA3NDA5MzM2NjIuanBnfDE2OTY3MzQ0NjEzY2E0MjhiYWUxZDdhOTQ1NDJjNzk2N2NjNDZiMmZjODJlZjg5MTViZDYyYjQ1N2MxMDlhZmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE 500BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "155" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "16" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f96"), + "name" : "JBL Endurance Run Wired Earphone, Blue", + "description" : "JBL Endurance Run Wired Earphone, Blue", + "price" : "24", + "sku" : "JBL Endurance Run Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550852-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDkxfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oY2QvOTExNDUwMDc1OTU4Mi5qcGd8MmM5NWY3MWQyNTRmMmJlOTg4MzBlN2VjYmQ1MzUwZWEyYmM1MjM0NzAwODA2NTE3ODhjODg0NTI2MjUyNzMyNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f97"), + "name" : "Philips SHB3060BK/00 Wireless Headphone, Black", + "description" : "Philips SHB3060BK/00 Wireless Headphone, Black", + "price" : "46", + "sku" : "Philips SHB3060BK/00 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/73e3c5af-75d9-4a39-8185-b25cf3e753e3-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODI2N3xpbWFnZS9qcGVnfGltYWdlcy9oNDQvaGZhLzg4MDQ5OTEyMzgxNzQuanBnfGJhZmU5ZmFjNjFlZjYzNGY1YzliZTY5OWY5NWE2YjBhMGRlYjY2NGEwNDNiMWQwZWM2M2VhODk0MmU0OWJiNDA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3060BK/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB cable
  • Quick start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 30 mW
  • Music playtime: 11 hours
  • Standby time: 200 hours
  • Talk time: 11 hours
  • " + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "141" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f98"), + "name" : "Philips SHE5305BK/00 Wired Earphone, Black", + "description" : "Philips SHE5305BK/00 Wired Earphone, Black", + "price" : "21", + "sku" : "Philips SHE5305BK/00 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/f2b97562-e997-47c4-a517-d01f5ad70328-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDQ2M3xpbWFnZS9qcGVnfGltYWdlcy9oNzUvaDdlLzg4MDUwMTQwNDQ3MDIuanBnfGZjODJkOTliZWMzYTliMTViZmVmNDI4ZWU4N2IxNTM0YWZkODg2ZmNhMzE2NjI3YWViNzkwYWFhZjIwNjg5Zjc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE5305BK/00" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Speaker diameter: 8.6 mm
  • Maximum power input: 20 mW
  • Finishing of connector: gold-plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f99"), + "name" : "Philips SHQ6500BL Wireless Headphone, Blue", + "description" : "Philips SHQ6500BL Wireless Headphone, Blue", + "price" : "53", + "sku" : "Philips SHQ6500BL Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ6500BL-Wireless-Headphone-Blue-491277057-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQzOHxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDJjLzg5Mjc3OTM4NDAxNTguanBnfGE1YWExMzJhMWUzNmFlZjRlM2M4ZjljNWYxZGIyMTMzNDg4MGY1YmY4MzQwMjhmNzU3ZmVmZjg5NGNiMzNkZmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Quick start guide
  • USB cable
  • Ear fit stabilizer
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ6500BL" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Best for outdoor use
  • Bluetooth
  • Sweat/ water proof
  • Earbud
  • Acoustic system: Semi-closed
  • Call Management: Answer/End Call" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9a"), + "name" : "JBL C300SI Wired Headphone, Black", + "description" : "JBL C300SI Wired Headphone, Black", + "price" : "44", + "sku" : "JBL C300SI Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C300SI-Wired-Headphone-Black-491281253-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzYwNHxpbWFnZS9qcGVnfGltYWdlcy9oNTMvaGM0Lzg5Mjc3MzcwODU5ODIuanBnfDJhNDIxYzg4OTA5MWM0MzVmZDQzZGMzNWE4N2U4MWE3NDdjZmM5MDZhNTE0ZDhmODI0NGE1MGRiNTQ1Y2IyMjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "C300SI" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power drivers deliver JBL sound with bass you can feel
  • Lightweight construction
  • Self-adjust ear-cups for a comfortable fit
  • 3.5mm gold plated connector for high quality music reproductions
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9b"), + "name" : "Sony MDR-HW300K Wireless Headphone, Black", + "description" : "Sony MDR-HW300K Wireless Headphone, Black", + "price" : "116", + "sku" : "Sony MDR-HW300K Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-HW300K-Wireless-Headphone-Black-491134889-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODM5NHxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaGM1Lzg5Mjc4Mzc5NDU4ODYuanBnfDBmMDNiMTQ3ZTAzNmFkNjJlM2NhZWFiNThlYzliNTY5YzhkOWUwNWVjZTdlZmI1NzM1NmY1MjJiOWQxOWU3YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Frequency Response: 10Hz-22" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-HW300K" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • AC Power Adaptor(1)
  • Connection Cable (1)
  • USB Cable (1)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9c"), + "name" : "Sony MDRXB50AP/LQIN Wired Headphone, Blue", + "description" : "Sony MDRXB50AP/LQIN Wired Headphone, Blue", + "price" : "37", + "sku" : "Sony MDRXB50AP/LQIN Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB50AP-LQIN-Wired-Headphone-Blue-491134887-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM5NnxpbWFnZS9qcGVnfGltYWdlcy9oODMvaGNlLzg5Mjc4MzM0ODk0MzguanBnfDIzOGUwOThiZjhhZDJjMzg1ZjBkMjE3YWRkYWViN2E4MDEyY2I2ZjZiZjkzMGQ0YmQ1M2E5MTRiZDM3ODBjNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDRXB50AP/LQIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid silicone rubber earbuds: SS (1 line) (2)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Type: Electret condenser
  • Open circuit voltage level: -40 dB (0 dB = 1 V/Pa)
  • Effective frequency range: 20 Hz - 20" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9d"), + "name" : "Jabra PLAY Wireless Headset, White", + "description" : "Jabra PLAY Wireless Headset, White", + "price" : "48", + "sku" : "Jabra PLAY Wireless Headset, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-PLAY-Wireless-Headset-White-491072802-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzg5OXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDQwLzg5Mjc2MjM3MDg3MDIuanBnfGE3MzY3OTIwZDc2NzJmYTg5NGJmM2IwYzQ4Zjk1NzIyY2MzNzY0YjNhYjI0MGM2ZDlmNWM4YWI1NDI4YjE5OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Rubber USB Cable
  • Eargel Pack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "PLAY" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Clip Wearing Style
  • USB Charging
  • Mute function
  • Hifi Frequency Response
  • Auto Pairing
  • AVRCP
  • Talk Time: Up to 6 hours
  • Standby Time: Up to 192 hours
  • Music Play Time: 6 hour
  • Supports Bluetooth for wireless connectivity
  • MultiUse
  • Play/Pause music
  • Frequency Response: Hifi
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "10.6" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9e"), + "name" : "Sony MDR-XB450 Wired Headphone, Black", + "description" : "Sony MDR-XB450 Wired Headphone, Black", + "price" : "29", + "sku" : "Sony MDR-XB450 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB450-Wired-Headphone-Black-491064847-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTM2OXxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaGZmLzg5Mjc4MTU3MjkxODIuanBnfDc1NDgyMDkxNjZhMmIxMTI1OTM2NTk1NzJlZmU0NmVmNjFhNWQxNzcxNTZlN2VjMjBhMjcyMjU3OTI0YmUyMDc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30 mm driver reproduces powerful bass
  • Plug : Gold-plated L-shaped stereo mini
  • Electro Bass Booster enhances deep beats without distorting vocals
  • Bass Booster delivers powerful bass
  • Swivel design for listening on the go
  • Cushioned earpads for extra comfort
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9f"), + "name" : "Skullcandy 2XL Shakedown X5SHFZ-819 Wired Headphone, White", + "description" : "Skullcandy 2XL Shakedown X5SHFZ-819 Wired Headphone, White", + "price" : "22", + "sku" : "Skullcandy 2XL Shakedown X5SHFZ-819 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-2XL-Shakedown-X5SHFZ-819-Wired-Headphone-White-491064774-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTc4MXxpbWFnZS9qcGVnfGltYWdlcy9oODcvaDNkLzg5Mjc4NjE3MzU0NTQuanBnfGUzNWVkYzQzYTJkMWU5YjU3ZDMzM2EwZWRlZjU5N2M1NDkzYzZmYzMzNGQ5NzY1YjkzODQ1NTI5M2I0NzM0YWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Shakedown" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Model", + "attributeValue" : "X5SHFZ-819" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm gold plated Plug
  • Driver Diameter: 30 mm
  • Max. Input Power: 100 mW
  • Magnet Type: NdFeb
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa0"), + "name" : "Sony MDR-XB450 Wired Headphone, Red", + "description" : "Sony MDR-XB450 Wired Headphone, Red", + "price" : "32", + "sku" : "Sony MDR-XB450 Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491167020-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTc4N3xpbWFnZS9wbmd8aW1hZ2VzL2gzZi9oMWIvODkyNzg3NzEzNjQxNC5wbmd8ZmU5NDczNzgzMWVlZGJkNmJkYzNjNjIxN2Q3MjQyMzRhMjU4ZjUxM2UxMmQxZDMwMDU2ZTIzN2EwNjI1M2EzOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm dynamic driver unit for powerful sound
  • Portable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa1"), + "name" : "Philips SHB7000WT/00 Wireless Headphone, White", + "description" : "Philips SHB7000WT/00 Wireless Headphone, White", + "price" : "58", + "sku" : "Philips SHB7000WT/00 Wireless Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB7000WT-00-Wireless-Headphone-White-491163851-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjU5NHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaDUwLzg5Mjc4NTM2NzQ1MjYuanBnfDg5ZjI5MzE1ZDJiM2EwZjQ3NzQwZGE1ODQwMDU2N2YyMjk3Njk0MzM0ZTM0ZTJmMmE2YjY5ZDY2ODExODBmYzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB7000WT/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB cable charging
  • 1.2 m audio cable
  • Quick start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth profiles: A2DP" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "176" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa2"), + "name" : "Apple Headset, White", + "description" : "Apple Headset, White", + "price" : "61", + "sku" : "Apple Headset, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Headset-White-490540759-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzk0MHxpbWFnZS9qcGVnfGltYWdlcy9oODMvaDJjLzg5Mjc2MTgyNjkyMTQuanBnfDM1OWFhMjU0N2I0YWQxODZkMGM2NjY3NjE5ZmU4YzgzOTg0MzcyOTNkMmNmNTcwNTNhMzRkMmRmMWMwNWYzNTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "23" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "109" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "10.2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Remote and Mic
  • Carrying Case
  • Three Sets of Silicone Ear Tips (Small" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Drivers: Custom Two-Way Balanced Armature (Woofer and Tweeter In Each Earpiece)
  • Cable Length: 1065 mm from Audio Jack to Splitter; 330 mm to Earpiece
  • Four-Conductor 3.5 mm Audio Jack
  • Compatibility Information: the Remote and Mic are Supported Only by iPod Nano (4Th Generation or Later)" + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa3"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Navy Blue", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Navy Blue", + "price" : "211", + "sku" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Navy Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Apple-devices-Navy-Blue-491228934-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDYzM3xpbWFnZS9qcGVnfGltYWdlcy9oZmUvaDBhLzg5Mjc2OTk4NjE1MzQuanBnfGNjNDRmMzM1ZmYyZTQ0NzA0OWI4MDI2YmM0NzA5NGRkODVjNGEyNjI3ZjEwNGIzYjU4YmY3OGEyOTcyNGU3YWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Apple" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Navy Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa4"), + "name" : "Jabra Sport Coach Wireless Bluetooth Earphone, Red", + "description" : "Jabra Sport Coach Wireless Bluetooth Earphone, Red", + "price" : "131", + "sku" : "Jabra Sport Coach Wireless Bluetooth Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Sport-Coach-Wireless-Bluetooth-Earphone-Red-491228919-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzA0NXxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaDA4Lzg5Mjc2ODM4MDUyMTQuanBnfDkzYWY1ZjMyMDZmZjQ4Mjg2ZGQ5MmU5YWUzNmFkMmE3OThkNTYyOGJmYmYyMmU0MTFiODZhNzQ2OTc1OGUwNGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 4 sets of EarGels
  • 3 sets of EarWings
  • 2 FitClips
  • Protective Pouch
  • USB cable
  • Jabra Sound App unique registration leaflet
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Sport Coach" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • NFC for easy pairing
  • Answer/end call
  • Reject call
  • Voice dialling
  • Last number redial
  • Volume control
  • Track control
  • Play/pause music
  • Voice guidance
  • Dolby sound enhancement via application
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "94" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa5"), + "name" : "Sennheiser PX 30 II Headphone, Black", + "description" : "Sennheiser PX 30 II Headphone, Black", + "price" : "22", + "sku" : "Sennheiser PX 30 II Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491004798-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjQ0MXxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDU4Lzg5Mjc4MjE5NTUxMDIuanBnfDcwOTNiZjFjMzY5ZmJlNGZiZWQwZGNmZDNmYjY3ODRiMWVmMDdjMDc5YWJjNTkyNjRmNDkzMjIxNmRiN2VhY2U", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "PX" + }, + { + "attributeName" : "Model", + "attributeValue" : "30 II" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Weight", + "attributeValue" : "65" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Transducer principle: Dynamic" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa6"), + "name" : "Jabra Talk Wireless Bluetooth Headset, Grey", + "description" : "Jabra Talk Wireless Bluetooth Headset, Grey", + "price" : "28", + "sku" : "Jabra Talk Wireless Bluetooth Headset, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/1f0bff29-7afb-443f-9c1f-40fc056b7edc-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzE0MHxpbWFnZS9wbmd8aW1hZ2VzL2hmNi9oODYvODgwMjkwNzI1ODkxMC5wbmd8MDU0NTI2ZTM2MzU0Mzc1MGJmNmFlMmQ0NjNiYmM2ZGFmZGE1MDEzODllOTIxNGYyYTlkMTI2MzZiOTU3Yjg3Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa7"), + "name" : "Philips SHL3060BK Wired Headphone, Black", + "description" : "Philips SHL3060BK Wired Headphone, Black", + "price" : "16", + "sku" : "Philips SHL3060BK Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/ee55de6c-8c22-4711-8ccb-01bab1abc7dc-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTc3N3xpbWFnZS9qcGVnfGltYWdlcy9oNzMvaGE1Lzg4MDQ5OTM1MzE5MzQuanBnfDEwMTgxNmIzZjU0NzlkMWE3YWYyODE1ZjQyODZhMzA3ZDRkYWJiZDU0YzY0NGNiMzg2ZTAwYTY2ZTUxYjE3ODE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3060BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "125" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa8"), + "name" : "B&O BeoPlay Form 2i Wired Headphone, Grey", + "description" : "B&O BeoPlay Form 2i Wired Headphone, Grey", + "price" : "182", + "sku" : "B&O BeoPlay Form 2i Wired Headphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/296b9db8-8e14-4038-8124-a4c557b9af11-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjc4OHxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDI5Lzg4MTc5MjU0NTU5MDIuanBnfDk4ZmJjMTc0MjUzY2MxZjI3ZTA2ZDdmODEzZDE4OGQ3OWZkZDg3NTcyN2U4MjlmZWU5ZDcyNjQxZDlmMDc4OWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "Form 2i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "90" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa9"), + "name" : "Bang & Olufsen Form 2i Wired Headphone, Blue", + "description" : "Bang & Olufsen Form 2i Wired Headphone, Blue", + "price" : "182", + "sku" : "Bang & Olufsen Form 2i Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bang-Olufsen-Form-2i-Wired-Headphone-Blue-491159197-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY5OXxpbWFnZS9wbmd8aW1hZ2VzL2hlZS9oYjEvODkyNzg0MDU2NzMyNi5wbmd8NTYzZTk4NDU3ZTgwMGM4M2UwMGY5MTE2Y2FiOTcyMzhmMjMyNDZlZTkyNmJkZDUxYzU3N2RlMzVjZmVlNWExMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Form 2i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "90" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Portable Quality
  • True Design Icon
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Bang", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637faa"), + "name" : "Sony SBH52 Smart Wireless Bluetooth Headset, Black", + "description" : "Sony SBH52 Smart Wireless Bluetooth Headset, Black", + "price" : "109", + "sku" : "Sony SBH52 Smart Wireless Bluetooth Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/cda3f60c-1068-42b8-9748-36ccb2f2d813-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODc4M3xpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDIxLzg4MDcxMTE1NTcxNTAuanBnfGUyZjlmMzM0YWJkYWJmY2Q0NWI4M2U5OTZlZTQ0ZmQ4YjYzYTk4MjAzY2Q0YjcyMzkyOTZlYTgzZGZmOGMzZWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SBH52" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth 3.0
  • NFC
  • Multipoint connectivity
  • FM radio with RDS
  • Android app enabled
  • HD Voice ready
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fab"), + "name" : "Sony SBH20 Stereo Bluetooth Wireless Headset, Black", + "description" : "Sony SBH20 Stereo Bluetooth Wireless Headset, Black", + "price" : "39", + "sku" : "Sony SBH20 Stereo Bluetooth Wireless Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-SBH20-Stereo-Bluetooth-Wireless-Headset-Black-491158981-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIxMHxpbWFnZS9wbmd8aW1hZ2VzL2g5OC9oNGQvODkyNzYyNDY5MTc0Mi5wbmd8NDllNjk0ZjQ4NmYwMzA1MzRhMmY2ZDExYTk0N2FkMDJkNWRkOTNmYmYzYTgxMWNiOGJkNTMxMDJhNTlhYzhmMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SBH20" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12.3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Micro USB charger connector
  • 3.5 mm headphone connector
  • Speaker type: 9.2 mm dynamic" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fac"), + "name" : "Jabra Sport - Corded Wired Headphone, Yellow/Black", + "description" : "Jabra Sport - Corded Wired Headphone, Yellow/Black", + "price" : "58", + "sku" : "Jabra Sport - Corded Wired Headphone, Yellow/Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491134824-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDQ5MXxpbWFnZS9qcGVnfGltYWdlcy9oMDAvaDYyLzg5Mjc4MzgyNzM1NjYuanBnfGNjZmM1ZDQzNWVmODJkNWI5NzIyM2FhNTAzMTE5NjQxNjBjNzdjYzEyNjM2MGRlNDM2NmIyYWZlODhmMTAyZGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "Sport - Corded" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow/Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Phone Adapter Cable
  • Extension cable
  • 3 different pairs of Ultimate Comfort Eargels
  • Quick Start Manual
  • Carry case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Water Resistant
  • Life Proof
  • Listen to music and talk
  • Adjustable earhooks
  • Microphone wind-noise protection
  • " + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fad"), + "name" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Blue", + "description" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Blue", + "price" : "34", + "sku" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/96c1d4c8-85ce-4d7e-823c-9cece35cfeee-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTI3NXxpbWFnZS9wbmd8aW1hZ2VzL2g2OS9oZDIvODgwMjgwNzA4NzEzNC5wbmd8MTYyMjUyNjljNWMzNDQ1NGJmOTgyMTExN2Y3ODk5MmM0MWNkMDVhZjc4MDYyMDY1NjNlYmQyZjZkNjUyNmYyZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Battery: 120 mAh
  • Wireless Range: Upto 10m
  • " + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Micro USB Charging Cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fae"), + "name" : "Philips O'Neill SHO3305BOARD/00 Wired Headphone, Blue/Red", + "description" : "Philips O'Neill SHO3305BOARD/00 Wired Headphone, Blue/Red", + "price" : "29", + "sku" : "Philips O'Neill SHO3305BOARD/00 Wired Headphone, Blue/Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-O-Neill-SHO3305BOARD-00-Wired-Headphone-Blue-Red-491073383-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDE5NXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaGJkLzg5Mjc3ODcwODk5NTAuanBnfDg3NWNjZWVmMGJhNDgwODljNTljZTA1NGJhNzhiYzRjYjdmZTRiYzU4YThjMTJiOTdkMzBkMWM1ODYzZDJlNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "O'Neill" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHO3305BOARD/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "118" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Red" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type - Neodymium
  • Maximum power input - 30 mW
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637faf"), + "name" : "JBL C150SI Wired Headphone, Black", + "description" : "JBL C150SI Wired Headphone, Black", + "price" : "29", + "sku" : "JBL C150SI Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/6f3664f2-71b4-462a-8c3d-874c2a779013-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDM5NXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDgzLzg4MDY0MzUzNTY3MDIuanBnfGI3ZjAyZWE2Mjg2ZDc0MDYwMjQwODNhMTM2MWU2YWI4MjYwNGZjNWEyYzE2OWU2Mzg4NWE0OGZiNzE4NTkwZDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C150SI" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb0"), + "name" : "Skullcandy JIB Wired Earphone, Black/Green", + "description" : "Skullcandy JIB Wired Earphone, Black/Green", + "price" : "15", + "sku" : "Skullcandy JIB Wired Earphone, Black/Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wired-Earphone-Black-Green-491315283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU5NnxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaGJiLzg5Mjc3MDkwMzY1NzQuanBnfDE3ZTAxOWUyMzI4Y2Q0OGVlZDZhODFiZmMyOGEzMGY5MWNhOGU1MzQzZTIwZTQ4NWY3NmU5OGQxNTVmYWE5NzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound technology for rich" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb1"), + "name" : "Sony MDR-EX100LP/R Wired Headphone, Red", + "description" : "Sony MDR-EX100LP/R Wired Headphone, Red", + "price" : "15", + "sku" : "Sony MDR-EX100LP/R Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX100LP-R-Wired-Headphone-Red-491042550-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTcxM3xpbWFnZS9wbmd8aW1hZ2VzL2gyOC9oMTMvODkyNzgzMzE2MTc1OC5wbmd8MjRlMGE4YmIzNzNmMTAzMTlhMjk5NjU3YjA2NWUxODYxMDEzMGUyYzFlN2IyOTljNTI5MTBjZGVmMDE1YzI4Nw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX100LP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headphone Cord Length Adjuster X1
  • Hybrid Silicone Earbuds (Ss X2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet: Neodymium
  • Plug: Gold-plated L-shaped Stereo Mini
  • " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb2"), + "name" : "Logitech H340 Headset, Black", + "description" : "Logitech H340 Headset, Black", + "price" : "31", + "sku" : "Logitech H340 Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Logitech-H340-Headset-Black-491018323-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjk5MnxpbWFnZS9wbmd8aW1hZ2VzL2hmNy9oZjUvODkyNzYxMzk0MzgzOC5wbmd8ZWYzYTRiNzE5OGM0N2U5NzAyMTQ0NjZmZDk2MjhmZDY5OGYyY2U3NDcwYTI2NTIxN2EyOWQ3NTJkYjU4MGFjZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "H340" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • System Requirements: Windows or Mac OS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • User Documentation
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Logitech", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb3"), + "name" : "Skullcandy Uprock S5URDZ-074 Wired Headphone, White", + "description" : "Skullcandy Uprock S5URDZ-074 Wired Headphone, White", + "price" : "29", + "sku" : "Skullcandy Uprock S5URDZ-074 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/491009089-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTk0OXxpbWFnZS9wbmd8aW1hZ2VzL2gyZi9oNGUvODkyNzg1ODQ1ODY1NC5wbmd8YTY5NzhkN2NjOTc4NGM4ZGUwN2Q1ZGU2NDFjMzNjNzJlNzgwOWMyNGFlYTU4OTE5MjlhMzYxMDE4OThkN2I0Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Uprock" + }, + { + "attributeName" : "Model", + "attributeValue" : "S5URDZ-074" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb4"), + "name" : "Skullcandy Uprock S5URFZ-033 Wired Headphone, Black", + "description" : "Skullcandy Uprock S5URFZ-033 Wired Headphone, Black", + "price" : "29", + "sku" : "Skullcandy Uprock S5URFZ-033 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491009085-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDU3MnxpbWFnZS9wbmd8aW1hZ2VzL2hjYS9oODgvODkyNzg2MTA4MDA5NC5wbmd8OTI5MTc4ZDM5YzE2Nzk2ODA3NDI1ZWJhYTI0OWQ3NDQ1MmE2YTgxMjdlM2MwMDE5NzczZjcwYmU2NWZkYmM4OQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Uprock" + }, + { + "attributeName" : "Model", + "attributeValue" : "S5URFZ-033" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb5"), + "name" : "Sennheiser HD 461G Wired Headphone, Black", + "description" : "Sennheiser HD 461G Wired Headphone, Black", + "price" : "87", + "sku" : "Sennheiser HD 461G Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-461G-Wired-Headphone-Black-491005019-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDQ2NnxpbWFnZS9wbmd8aW1hZ2VzL2hiZi9oYzQvODkyNzg4OTU4ODI1NC5wbmd8M2I2NzY1ZjI2MGQyMjcyNzMwOTE5M2MyMDQxMzMxOGYwNzBhYTA0YjExMzEzZGI0OWU3MDI3ZjQ1NDg2YzMxOQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 461G" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfortable fit due to the ergonomic design
  • Improved freedom of movement and convenience thanks to the detachable" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Angled plug HD 461G
  • 1.4m audio cable with integrated smart remote and microphone
  • Manuals
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb6"), + "name" : "Sennheiser HD 461i Wired Headphone, Black", + "description" : "Sennheiser HD 461i Wired Headphone, Black", + "price" : "87", + "sku" : "Sennheiser HD 461i Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-461i-Wired-Headphone-Black-491005018-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDY4MnxpbWFnZS9qcGVnfGltYWdlcy9oNjUvaDUxLzg5Mjc2NTk3NTM1MDIuanBnfDQ5YTdiMzQyYzNjZjI1ZDU4MDU4MGJmMWViZmU3NzJmNWVkMGU5MDQxZGM4MGEyMTg1M2YzZTRmOThhODhlM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 461i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfortable fit due to the ergonomic design
  • Improved freedom of movement and convenience thanks to the detachable" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Straights plug HD 461i
  • 1.4m audio cable with integrated smart remote and microphone
  • Manuals
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb7"), + "name" : "Sennheiser HD 4.30G Wired Headphone, Black", + "description" : "Sennheiser HD 4.30G Wired Headphone, Black", + "price" : "116", + "sku" : "Sennheiser HD 4.30G Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.30G-Wired-Headphone-Black-491320580-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzcxOHxpbWFnZS9qcGVnfGltYWdlcy9oNWIvaDExLzg5Mjc2NTc5ODQwMzAuanBnfDAxNjhkMjJkYjkzYWNiMGM3MGY1NTcwYTlmZDFkODBjZGMxNzRhNTE1NzMxYjY1MTZhM2QyYmJiMmYzYjliZTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 4.30G" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 4.30 - 1.4m detachable single-sided cable with 3-button remote/ 3.5 mm plug
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb8"), + "name" : "Plantronics ML2 Bluetooth Wireless Headphone, Black", + "description" : "Plantronics ML2 Bluetooth Wireless Headphone, Black", + "price" : "18", + "sku" : "Plantronics ML2 Bluetooth Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/52777069-605c-4515-b933-39a85a92735f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDYxN3xpbWFnZS9wbmd8aW1hZ2VzL2hkNi9oNDgvODgwMjkzMTA0ODQ3OC5wbmd8ZDU2OGQzZDc5MzRjMzc3YzRkM2M4OTczNmQ3M2E4YjVlYzUzNzEzMWJiMjFkNTkwNjQ3OTBlMjYyYjJlNDk5OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Reduces noise and echo
  • Pairs with two phones
  • Fits either ear comfortably
  • Optional earloop
  • Voice dialing (Smartphone dependent)
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "ML2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Plantronics" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Plantronics", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb9"), + "name" : "Samsung HM1700 Wireless Headphone, Black", + "description" : "Samsung HM1700 Wireless Headphone, Black", + "price" : "34", + "sku" : "Samsung HM1700 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/2152b69d-2f87-4fff-91ca-dd44a3824416-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzQ0MnxpbWFnZS9wbmd8aW1hZ2VzL2gwZi9oZWEvODgwMjkyMzMxNTIzMC5wbmd8NWNiMDJiZTIyNTg0ZTE4ZTEzZGUwNDVhYTJjMzcwOWMzNTExZDNhNjE4N2FhMDE4MzQ5NmI2ZWQyY2QwNWY2MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "10" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk Time: Up to 9 hours
  • Play Time: Up to 8 hours
  • Standby Time: Up to 350 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "HM1700" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Two Removable Earhooks
  • Three Ear Gel
  • Micro USB Charger
  • User Manual
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fba"), + "name" : "Jabra Drive Wireless Headphone, Black/ Grey", + "description" : "Jabra Drive Wireless Headphone, Black/ Grey", + "price" : "58", + "sku" : "Jabra Drive Wireless Headphone, Black/ Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/7895fed2-b441-4be2-a4fa-37898d19f32a-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzYwNHxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDM1Lzg4MDI5NDk3OTE3NzQuanBnfGM5ZTBiOTEzZTgzODNmODY1NTRjZjAxM2Y1M2NiMWU4ZTMwYzQxOTA3MzdkODJhYmJjNTZjYzQwMGZmZDhkMWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbb"), + "name" : "Samsung BHM1100 Wireless, Black", + "description" : "Samsung BHM1100 Wireless, Black", + "price" : "15", + "sku" : "Samsung BHM1100 Wireless, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/99cd805d-67aa-42cc-a277-6e28b0039960-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTUzM3xpbWFnZS9wbmd8aW1hZ2VzL2hhYy9oZGMvODgwMjg5OTcyMjI3MC5wbmd8Mzk0YzNjMTk1M2JlOGI0OGIyODU0NTJiMGI4MGFjMzE4NGNhMTg2NGYxNWYxNDU5ZTJiMGJlMmM2NmEyNjliYg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth: BT ver. 2.1 + EDR
  • Bluetooth Profiles: HSP1.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "BHM1100" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbc"), + "name" : "Plantronics Discovery 975 Wireless Headphone, Black", + "description" : "Plantronics Discovery 975 Wireless Headphone, Black", + "price" : "80", + "sku" : "Plantronics Discovery 975 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/80fd9a41-7822-401a-81b2-137ad4dbb5e7-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk0OXxpbWFnZS9qcGVnfGltYWdlcy9oZWYvaGRiLzg4MDI5MjY5MTk3MTAuanBnfGU0ZGZhMjcyZmU3MGM4MGY1NmUxNWY3ZTMzYjIzMmM0NWVjMzYzMDNhNzY2N2FlYWU3M2Q4ZTNiNjJjYWEzMDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk Time: Up to 5 hours from one charge
  • Standby Time: Up to 7 days from one charge
  • Audio IQ2 Technology: Two omni-directional microphones
  • Active Digital Signal Processing (DSP) Internal
  • Adaptive 20-band equalizer Acoustic echo cancellation
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "Discovery 975" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Plantronics" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Plantronics", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbd"), + "name" : "Sennheiser CX 213 Wired Headphone, White", + "description" : "Sennheiser CX 213 Wired Headphone, White", + "price" : "19", + "sku" : "Sennheiser CX 213 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-213-Wired-Headphone-White-491181102-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkzN3xpbWFnZS9qcGVnfGltYWdlcy9oMDcvaDY4Lzg5Mjc4NjU5OTUyOTQuanBnfDM5NTg4MDQ4NDMyZWJhZmQxNWJiMTBkYTQ0YzVkMDY4NzY4MzIxMDBmYTg5MThiZDQxNjVmOTgyMzIxMTIyNDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 213" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbe"), + "name" : "JBL T100A In-Ear Wired Headphone, Red", + "description" : "JBL T100A In-Ear Wired Headphone, Red", + "price" : "15", + "sku" : "JBL T100A In-Ear Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T100A-In-Ear-Wired-Headphone-Red-491173093-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjcxOHxpbWFnZS9wbmd8aW1hZ2VzL2hiMS9oYTkvODkyNzg1NDMyOTg4Ni5wbmd8ZWRlMDBkNTBiYjNkNGY3ZmMwZmUzM2YxMDg2NjY4NGI1N2IwZWM4MDVlMTE1Y2M1YzgwM2QxNzkwYTIwMWI0Mg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T100A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of silicone ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single button remote/mic
  • PureBass performance
  • High sensitivity" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbf"), + "name" : "JBL J303BT Wireless Bluetooth Headset, Black", + "description" : "JBL J303BT Wireless Bluetooth Headset, Black", + "price" : "29", + "sku" : "JBL J303BT Wireless Bluetooth Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/040d4559-22c8-4103-8759-2c6c26cb8fa7-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTQ2MHxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaDBkLzg4MTk0NTEwMDI5MTAuanBnfGZhYTZhYzM4ZDhmY2E2ZWFhMGRmNzY1YzE1M2I5MDJkNTU3NmEwMGYxMTFjYzZjNjg5NTA3NzFlODM2ZGRmZjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise reduction for clear voice
  • A2DP listening to music or audio book
  • Multipoint to pair with two phones
  • Bluetooth Range: 10 meters
  • Talk Time: 5 hours
  • Standby Time: 168 hours
  • Charging Time: 2 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "J303BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc0"), + "name" : "Skullcandy Method S2CDGY-411 Wired Headphone, Yellow", + "description" : "Skullcandy Method S2CDGY-411 Wired Headphone, Yellow", + "price" : "37", + "sku" : "Skullcandy Method S2CDGY-411 Wired Headphone, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/491167110-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI3OXxpbWFnZS9wbmd8aW1hZ2VzL2gzZC9oMWQvODkyNzg2MDQyNDczNC5wbmd8M2NjOTIyZjY0Y2E5ZTAzMTI3ZmJmYTAyMTZhODNhOTZhNmNjZTBjNjQ1NWJiMzE2ODVlMDVmMzA3MDRmNGEzZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDGY-411" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc1"), + "name" : "Skullcandy Method S2CDGY-401 Wired Headphone, Blue", + "description" : "Skullcandy Method S2CDGY-401 Wired Headphone, Blue", + "price" : "37", + "sku" : "Skullcandy Method S2CDGY-401 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/65f2a8ea-5689-4c48-a258-cdf55f2370ea-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDY4NnxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaGRlLzg4MDQ5ODk5Mjc0NTQuanBnfDg5M2IzNjE4NDdjMDhiNGMyYTE5NjY1YTJkZTY1NWNhOGY4OGQwOTIxOWU4YWIwZjU3ZTQ2NDE1ZjM4MTNlZTM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Method S2CDGY-401" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc2"), + "name" : "Skullcandy 2XL Spoke X2SPFY-835 Wired Headphone, Black", + "description" : "Skullcandy 2XL Spoke X2SPFY-835 Wired Headphone, Black", + "price" : "16", + "sku" : "Skullcandy 2XL Spoke X2SPFY-835 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491167099-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzYxM3xpbWFnZS9wbmd8aW1hZ2VzL2gzNi9oNzMvODkyNzg2NDM1Njg5NC5wbmd8MzQxNTM3YmRlYTQyMWIyNGEwZDA5ZTE4NTMyZTA5OTU0Y2U4MDdmNjY3Mjc4YjkzM2YzMTU4ZTRhYjdmOWMzYg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spoke" + }, + { + "attributeName" : "Model", + "attributeValue" : "X2SPFY-835" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm gold plated plug
  • Max. Input Power: 30 mW
  • Driver Diameter: 10 mm
  • Magnet Type: NdFeb
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc3"), + "name" : "Skullcandy 2XL Spoke X2SPFY-839 Wired Headphone, Blue", + "description" : "Skullcandy 2XL Spoke X2SPFY-839 Wired Headphone, Blue", + "price" : "16", + "sku" : "Skullcandy 2XL Spoke X2SPFY-839 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-2XL-Spoke-X2SPFY-839-Wired-Headphone-Blue-491167098-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU0N3xpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDJhLzg5Mjc4NzAyNTUxMzQuanBnfGFhYzFlZGY1OGQyZTE1Njk2MWY3ODRhNDJiYzg5ZDhlZDUxN2JjNmIyYTE3MTljYzAzODdhYzRhYjliNWRiZjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spoke" + }, + { + "attributeName" : "Model", + "attributeValue" : "X2SPFY-839" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm gold plated plug
  • Driver Diameter: 10 mm
  • Max. Input Power: 30 mW
  • Magnet Type: NdFeb
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc4"), + "name" : "Jabra Step Wireless Headset, Black", + "description" : "Jabra Step Wireless Headset, Black", + "price" : "58", + "sku" : "Jabra Step Wireless Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Step-Wireless-Headset-Black-491167096-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc4MHxpbWFnZS9wbmd8aW1hZ2VzL2hiMC9oYTkvODkyNzYyNjMzMDE0Mi5wbmd8NmJjNjQzMmQ1ODg5OGRhY2NhNDRjYzk5YjE5YjQ4M2NkMDJiNWVhZDliNzQ5YTVlYTQwM2QyNDgxYzg3NmU0Zg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earhook Pack
  • Rubber USB Cable
  • Eargel Pack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Step" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth version: 4.0
  • AVRCP
  • Talk Time: Up to 4 hours
  • Standby Time: Up to 144hour(s)
  • USB Charging
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.44" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc5"), + "name" : "Sony MDR-XB250 Wired Headphone, Violet", + "description" : "Sony MDR-XB250 Wired Headphone, Violet", + "price" : "22", + "sku" : "Sony MDR-XB250 Wired Headphone, Violet", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB250-Wired-Headphone-Violet-491167024-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjI5MXxpbWFnZS9wbmd8aW1hZ2VzL2g5NS9oZTAvODkyNzg3MzUzMTkzNC5wbmd8OGE2OTBmZjFkNzEzMjJjZjE2YWY1OTFlMDQzYzcwOGM4OTMwM2YyMjc2YjhlYmRkZTZiODQxYzk1MDI1ODVkMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB250" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Violet" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30 mm dynamic driver unit for powerful sound
  • Swivel folding-style for listening on the go
  • Cushioned ear pads for long-wearing comfort
  • Double-sided cord prevents tangles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc6"), + "name" : "Sony MDR-XB250 Wired Headphone, Black", + "description" : "Sony MDR-XB250 Wired Headphone, Black", + "price" : "22", + "sku" : "Sony MDR-XB250 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB250-Wired-Headphone-Black-491167023-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzE2NnxpbWFnZS9wbmd8aW1hZ2VzL2hjNy9oN2YvODkyNzg4NjMxMTQ1NC5wbmd8ZDUzZmZlZjZjOTVkYTRkYmM2MDFlZWM2MWRmMmEyOTA0NTdhODAyMjU0MDZmNjZiOTRjMTQ3N2IyNzg0YmE1Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB250" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30 mm dynamic driver unit for powerful sound
  • Swivel folding-style for listening on the go
  • Cushioned ear pads for long-wearing comfort
  • Double-sided cord prevents tangles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc7"), + "name" : "Sony MDR-XB450 Wired Headphone, Blue", + "description" : "Sony MDR-XB450 Wired Headphone, Blue", + "price" : "32", + "sku" : "Sony MDR-XB450 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB450-Wired-Headphone-Blue-491167021-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjY5NHxpbWFnZS9wbmd8aW1hZ2VzL2hjYy9oYzIvODkyNzg2NDY4NDU3NC5wbmd8OGRkNzQyNWU4MGEzMzUwNzczYWNjZWZmYmMxMDdjYjQzNzMzMmFjOTNhNWEwZmRmYjFmYzJiYjBjODE2Y2MzMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm dynamic driver unit for powerful sound
  • Portable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc8"), + "name" : "Sony Active Series MDR-AS200/L Wired Earphone, Orange", + "description" : "Sony Active Series MDR-AS200/L Wired Earphone, Orange", + "price" : "12", + "sku" : "Sony Active Series MDR-AS200/L Wired Earphone, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/491166863-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc0OXxpbWFnZS9wbmd8aW1hZ2VzL2g2Ny9oNDAvODkyNzgwNzYwMjcxOC5wbmd8ZjQ5MjFjOTgwNTA2MWJjOTU0OGM0MzAyNTUzODEzNWQwYzc2ZjY5NGZjMzU5NTY5OWYwYTkwMzlkYzY2NzA2Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Active Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS200/L" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip x1
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Gold-plated L-shaped Stereo Mini
  • Y-shape Cord
  • Type - Opened" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc9"), + "name" : "Sony Active Series MDR-AS200/L Wired Earphone, Blue", + "description" : "Sony Active Series MDR-AS200/L Wired Earphone, Blue", + "price" : "12", + "sku" : "Sony Active Series MDR-AS200/L Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Active-Series-MDR-AS200-L-Wired-Earphone-Blue-491166862-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDI3NHxpbWFnZS9wbmd8aW1hZ2VzL2hjYy9oZGYvODkyNzgwODI1ODA3OC5wbmd8MDczMTI5ZDZkNGU3OTU0OWFjNTdiNmM4YTFmMzZiNWQ3NDFjZTBjZDQ4ZmQ4YzVmN2NhZGQ0MTI3ZjM2MmM2Zg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Active Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS200/L" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip x1
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Gold-plated L-shaped Stereo Mini
  • Y-shape Cord
  • Type - Opened" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fca"), + "name" : "Samsung BHS3000 Wireless Headphone, Black", + "description" : "Samsung BHS3000 Wireless Headphone, Black", + "price" : "51", + "sku" : "Samsung BHS3000 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/46c77dee-ac2e-42f4-94d6-6fee20bc784e-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjA5M3xpbWFnZS9qcGVnfGltYWdlcy9oOWUvaDYzLzg4MDQ5ODc2MzM2OTQuanBnfDE1MjZhOTdhYjQxMDViOWMzMmVkYjBhNDE2NGQ1MzM0NzE4ZmJkNThmNmUxYjAxZjgzYWI2MTNlNzA2YzA3MjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BHS3000" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Battery Stand-by Time - 7 / 170 hours
  • Battery Level Check (3 Color LED)
  • Dialed/Missed/Received Calls
  • Call Receiving
  • Mute/Reject Function
  • Voice Functions - Voice Prompt: English / Spanish / French / German (US) / English / Spanish / French / German / Chinese (EU)
  • Auto Volume Control
  • Volume Up/Down
  • Audio Streaming
  • Active Pairing
  • Initial Pairing
  • LED On/Off Mode
  • Multipoint
  • NR/EC - 1 Mic NR/EC
  • Play Time (Stereo Headset) - 6 hours
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "13.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcb"), + "name" : "BOWERS & WILKINS P3 Wired Headphone, White", + "description" : "BOWERS & WILKINS P3 Wired Headphone, White", + "price" : "261", + "sku" : "BOWERS & WILKINS P3 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/BOWERS-WILKINS-P3-Wired-Headphone-White-491183505-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjgxMnxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDA2Lzg5Mjc3MTg4NjY5NzQuanBnfDE5N2FiMTUyZTdjODY2MzBmN2UyODlmYzI4MjMwZGJkODgyOWRjNDhhZjkwYzg4ZjNlYjAxNzAwNDI0OTUyNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "P3" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "BOWERS & WILKINS" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "34" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "111" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Universal cable
  • Hard case
  • Literature pack (Quick start guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "BOWERS", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcc"), + "name" : "Philips ActionFit SHQ2300OR/00 Sports Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ2300OR/00 Sports Wired Headphone, Orange", + "price" : "15", + "sku" : "Philips ActionFit SHQ2300OR/00 Sports Wired Headphone, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ2300OR-00-Sports-Wired-Headphone-Orange-491183205-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTU2NXxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oNGMvODkyNzg2ODYxNjczNC5wbmd8YWNkYzU3ZDdhMTI0OGQ0NDZhYzU5ZDAxZWEwZTZlMTM1MDgwYTg5YTY0NDljMzFiZWQxMzM4OTE0NjQxZjg4Mg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ2300OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "18.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable clip
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcd"), + "name" : "Jabra Sport Rox Wireless Headphone, White", + "description" : "Jabra Sport Rox Wireless Headphone, White", + "price" : "102", + "sku" : "Jabra Sport Rox Wireless Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Sport-Rox-Wireless-Headphone-White-491182466-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjY4NnxpbWFnZS9wbmd8aW1hZ2VzL2hiNS9oOWQvODkyNzg3ODc3NDgxNC5wbmd8OWY4ODJlNDM3MWU2ZjY5MTYzNTEyYTkyZTMxODRjMDU2NmY1MzA3OTE4NzVjOThkMjNkMWI2MzQwM2NmODZmNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Protective Bag
  • Earwings
  • Eargel Pack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sport" + }, + { + "attributeName" : "Model", + "attributeValue" : "Rox" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multiuse
  • 6 mm dynamic speaker
  • NFC for easy pairing
  • MEMs microphone solution
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "19" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Jabra", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fce"), + "name" : "Sony MDR-EX150AP Wired Headphone, White", + "description" : "Sony MDR-EX150AP Wired Headphone, White", + "price" : "22", + "sku" : "Sony MDR-EX150AP Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150AP-Wired-Headphone-White-491229313-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzIzNnxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaDFmLzg5Mjc4ODUzMjg0MTQuanBnfDljMTI5NjZkNzhlZWUxMGM4ZjViOTJhYTc2OTk2YTQyMzM4ZmNkYmRhMGRjN2JiMDFhYmRlY2NlYWNlYzdjNWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Gold-plated L-shaped Stereo Mini
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcf"), + "name" : "Sony MDR-EX150AP/R Wired Headphone, Red", + "description" : "Sony MDR-EX150AP/R Wired Headphone, Red", + "price" : "22", + "sku" : "Sony MDR-EX150AP/R Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150AP-R-Wired-Headphone-Red-491229312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjAyOHxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaGNmLzg5Mjc4OTE1NTQzMzQuanBnfGI5MzZjY2FlOTE4Mjc2NTRhMjA3ZDAxODk3Njk2YmYwMDU4MDA0NWE1MTRmMGZkN2U0YmMxNDY5MWFjODQ5OTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150AP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd0"), + "name" : "Sony MDR-EX150AP/LI Wired Headphone, Dark Blue", + "description" : "Sony MDR-EX150AP/LI Wired Headphone, Dark Blue", + "price" : "22", + "sku" : "Sony MDR-EX150AP/LI Wired Headphone, Dark Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150AP-LI-Wired-Headphone-Dark-Blue-491229310-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzY5NXxpbWFnZS9qcGVnfGltYWdlcy9oZGYvaDgxLzg5Mjc4ODQzNDUzNzQuanBnfGM4MmI4N2JmNGEyOGQ2NDcxNzVhYmY4MzYwN2NhNzYyYWY1ZTI2ZDkzMWY3MGU4MWFjMDQyMDBkOTczZmNjMjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150AP/LI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd1"), + "name" : "Sony MDR-EX250AP/B Wired Headphone, Black", + "description" : "Sony MDR-EX250AP/B Wired Headphone, Black", + "price" : "29", + "sku" : "Sony MDR-EX250AP/B Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX250AP-B-Wired-Headphone-Black-491229304-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTM2NHxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDhmLzg5Mjc4NzgxMTk0NTQuanBnfDUzMzNhNDRkMDg4NjAxZmFiNmYwNDExYmUxYWJkZTc3NWU0M2I4Y2I1YTMyNWE4MWM5OGY0NjkwZWNlN2NhMTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX250AP/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd2"), + "name" : "Sony MDR-EX750AP Wired Earphone, Cinnabar Red", + "description" : "Sony MDR-EX750AP Wired Earphone, Cinnabar Red", + "price" : "102", + "sku" : "Sony MDR-EX750AP Wired Earphone, Cinnabar Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX750AP-Wired-Earphone-Cinnabar-Red-491229300-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjQ4M3xpbWFnZS9qcGVnfGltYWdlcy9oNTUvaDk3Lzg5Mjc3ODk5MDc5OTguanBnfGM5YmVmN2FkYWU3OGI1MTcyYjdiODk0MDE2MzViZGRmYzBmMTM5Y2U3MDUzNjNkOGFmYmE4ZGNiYzU5MzIzYzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX750AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Cinnabar Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carring Pouch
  • Headphone cable Length Adjuster
  • Earbuds - SS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd3"), + "name" : "Sony MDR-EX750AP Wired Earphone, Charcoal Black", + "description" : "Sony MDR-EX750AP Wired Earphone, Charcoal Black", + "price" : "102", + "sku" : "Sony MDR-EX750AP Wired Earphone, Charcoal Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX750AP-Wired-Earphone-Charcoal-Black-491229299-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTQzNnxpbWFnZS9qcGVnfGltYWdlcy9oNzMvaDBjLzg5Mjc3ODQ0Njg1MTAuanBnfGRjMWY3YTQ2ZDBjYjkwMDI3OWI3M2RiOTU3YjgyMmMzNzg1NmQwN2UwZWRjMTU0MjFkZDFkYzg5MzI5Y2YwMTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX750AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Charcoal Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carring Pouch
  • Headphone cable Length Adjuster
  • Earbuds - SS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd4"), + "name" : "Jabra Sport Pace Wireless Headset, Yellow", + "description" : "Jabra Sport Pace Wireless Headset, Yellow", + "price" : "87", + "sku" : "Jabra Sport Pace Wireless Headset, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/22a44922-f5aa-496a-a6f6-70cafb59e0fd-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTE2MHxpbWFnZS9qcGVnfGltYWdlcy9oMjEvaGY3Lzg4MDQ5OTE4OTM1MzQuanBnfDNiMjVmYjY1NTA4Y2UxOGM2MWNmNDgwNTc5MTkzMTQ4NDM2N2Y1ZWU2MGI2ZTdhMDRlZGU0YzRhZDBlMzhjYjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of EarGels
  • FitClip
  • USB cable
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sport" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pace" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Standby time - Up to 5 days
  • Charging time - Approximately 2 hours
  • Talk/Music time - Up to 5 hours
  • Operating range - Up to 10 meters (33 feet)
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "109" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Jabra", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd5"), + "name" : "Amkette Trubeats Pulse S6 Wired Headphone, Grey", + "description" : "Amkette Trubeats Pulse S6 Wired Headphone, Grey", + "price" : "11", + "sku" : "Amkette Trubeats Pulse S6 Wired Headphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/cd88d2e4-33cd-4cd8-b3e0-c6f2d9a76057-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDYzOHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaGMyLzg4MDQ5OTY4MDg3MzQuanBnfDcwOTE0ZDJiZDUzZWViNDI2OWM4Mzk1NGZkMWYzZjkyMTM3ZTI0MjY1YjUyNzczOWVkYjBhY2M0NzFkM2YzYWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse S6" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 Eartips
  • Mobile Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - Neodymium magnet
  • Driver Diameter - 10mm
  • " + } + ], + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd6"), + "name" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Black", + "description" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Black", + "price" : "34", + "sku" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/ae245b2d-f3e5-4247-a54a-092879ce0303-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzUwMXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDMxLzg4MTc5MjY3NjY2MjIuanBnfDJkZjE5NDY2NGNkNWYzNTY4YWRlZmZiNzEzMGM4YzZiNzdmZTdkNzM3NDZjODI2OWUwZmViOGRjNzlhMWRmNzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Battery: 120 mAh
  • Wireless Range: Upto 10m
  • " + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Micro USB Charging Cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd7"), + "name" : "Skullcandy 2XL Barrel Wired Headphone, Black", + "description" : "Skullcandy 2XL Barrel Wired Headphone, Black", + "price" : "44", + "sku" : "Skullcandy 2XL Barrel Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/bc9db891-a591-4d0d-89d0-002484f0a953-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODE2OHxpbWFnZS9qcGVnfGltYWdlcy9oZTgvaDE1Lzg4MDQ5OTM4NTk2MTQuanBnfDY3MGNlMzlhYWQwNjExZDc4MDFiZDE1NGM4M2Y0ZWRiOGY3YjJjMTM4Y2VmZWQ2NjAzMjIzMjllNjZjMTAwYTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Model", + "attributeValue" : "Barrel" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd8"), + "name" : "Jabra Boost Wireless Bluetooth Headset, Black", + "description" : "Jabra Boost Wireless Bluetooth Headset, Black", + "price" : "32", + "sku" : "Jabra Boost Wireless Bluetooth Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/21a97d2b-70a8-46c6-ae5d-2f2b3ed5f868-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDA1OXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDI2Lzg4MDY0MTE3NjM3NDIuanBnfDgyMGVlZDM2NzY4M2EwZjcwNmZjMDE3YjhlN2I2MzQwNmJlZjMyZTg2N2U0ZWM1OGJjYzgzZDk1Y2I2NzMxMWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "manufacturer" : "Jabra", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd9"), + "name" : "Sony NWZ-WH303/B Headphone, Black", + "description" : "Sony NWZ-WH303/B Headphone, Black", + "price" : "131", + "sku" : "Sony NWZ-WH303/B Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491064869-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjY2MHxpbWFnZS9wbmd8aW1hZ2VzL2hkZS9oYTcvODkyNzc0MTczOTAzOC5wbmd8ODRmODU1NDA0OTBhODg3OTZjNzMwNDU0YmFjZTBlZjg4YTE3NTllNTk0YzhkYTMxYTk5YmQ5NDRlNzI5MzkwOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "WH Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "NWZ-WH303/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "No" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "290" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "60" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Headphones Cable " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fda"), + "name" : "Logitech H150 Headset, Black", + "description" : "Logitech H150 Headset, Black", + "price" : "14", + "sku" : "Logitech H150 Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/490888011-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDU4OHxpbWFnZS9wbmd8aW1hZ2VzL2g5Mi9oMTIvODkyNzYxMjYzMzExOC5wbmd8NGU2MTkxMTQzYjI5Y2YwODI5ZWVkMzI5NTI3ZDFmOTgzZWU0ZWVkMzRlMGZjODNmNDc0MmQ2NmIzZDVjZDA2NQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "H150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sky Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • System Requirements: Analog Connection with 3.5 mm Input and Output Jacks" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • User Documentation
  • " + } + ], + "manufacturer" : "Logitech", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdb"), + "name" : "Sennheiser CX 213 Wired Headphone, Blue", + "description" : "Sennheiser CX 213 Wired Headphone, Blue", + "price" : "19", + "sku" : "Sennheiser CX 213 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/cb38d8e9-96d3-429e-87de-a73967d93733-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTkwM3xpbWFnZS9wbmd8aW1hZ2VzL2g3NC9oZGIvODgwMjc4NDE0OTUzNC5wbmd8NWIwOWQ1ZGYyYWRjMzc3NjZhZmNkNDg1NzZhOTY5NzkzZWUyZGIyYzdjYzUxMTE4MmQ1MDQyMDZmOWJiY2RiZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 213" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdc"), + "name" : "JBL T100A In-Ear Wired Headphone, White", + "description" : "JBL T100A In-Ear Wired Headphone, White", + "price" : "15", + "sku" : "JBL T100A In-Ear Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T100A-In-Ear-Wired-Headphone-White-491173094-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzYyOXxpbWFnZS9wbmd8aW1hZ2VzL2hlYS9oYmEvODkyNzg0OTc0MjM2Ni5wbmd8ZDZkM2Q3MGQ3N2MwM2RjN2I5YmM4ODYzZGM5MWYyYjE2YmUxNDc5NmIyYWNhODRhZjQ2MTNhODhkN2U2MzBjZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T100A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of silicone ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single button remote/mic
  • PureBass performance
  • High sensitivity" + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdd"), + "name" : "JBL T200A Wired Headphone, Yellow/Green", + "description" : "JBL T200A Wired Headphone, Yellow/Green", + "price" : "29", + "sku" : "JBL T200A Wired Headphone, Yellow/Green", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T200A-Wired-Headphone-Yellow-Green-491167174-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTU1MXxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaDZkLzg5Mjc4OTA1NzEyOTQuanBnfGE2MDcxMGQ3OTZkZDk1NDNmMzc0MWE0MzhlNWFkNWEwMjdkNTNjODY4MWE2MzZlNDQ1ODY2YTg0ZWM4MGFjMjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T200A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow/Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - 9 mm
  • Headphone Jack - 3.5mm jack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fde"), + "name" : "JBL T150A In-Ear Wired Headphone, White", + "description" : "JBL T150A In-Ear Wired Headphone, White", + "price" : "27", + "sku" : "JBL T150A In-Ear Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T150A-In-Ear-Wired-Headphone-White-491167173-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDkwOHxpbWFnZS9wbmd8aW1hZ2VzL2g1OS9oMTYvODkyNzg2NzYzMzY5NC5wbmd8YTY2YTgxYmU3YmE4MTNlNDA1YTI4NGI5ZTM3YThlMzg0MTkxOTA3MThmNTdiN2JhMWVlNjBhMTk4YzI1Mjc1NQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T150A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 pairs latex-free of silicone sleeves (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • PureBass performance
  • High sensitivity" + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdf"), + "name" : "JBL T150A In-Ear Wired Headphone, Black", + "description" : "JBL T150A In-Ear Wired Headphone, Black", + "price" : "27", + "sku" : "JBL T150A In-Ear Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491167172-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ1NnxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oOWUvODkyNzg1NjgyMDI1NC5wbmd8MzlhZjA2Mjc5NDhiZmRjZTRiYTY0YmYxMmQyOTA5Njk4NjllYWQxYjY2MGM1MjQ3ZjQ4MDNjNjg1MWMzMDc2Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T150A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 pairs latex-free of silicone sleeves (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • PureBass performance
  • High sensitivity" + } + ], + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe0"), + "name" : "itek Soundlogic BEB001_BK Wireless Bluetooth Headphone, Black", + "description" : "itek Soundlogic BEB001_BK Wireless Bluetooth Headphone, Black", + "price" : "22", + "sku" : "itek Soundlogic BEB001_BK Wireless Bluetooth Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-Soundlogic-BEB001-BK-Wireless-Bluetooth-Headphone-Black-491183559-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzgzNnxpbWFnZS9wbmd8aW1hZ2VzL2gxNS9oYjYvODkyNzg2OTU5OTc3NC5wbmd8NjY5YjcxOTM5YWQxYWFjMDNhYTU2NDA4OGI3ZGE0ODNiMzk1ODZiYmI4MzI0OTQ1MTk1NDgzNTgzOTVmODliMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Soundlogic" + }, + { + "attributeName" : "Model", + "attributeValue" : "BEB001_BK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "itek", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe1"), + "name" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Yellow", + "description" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Yellow", + "price" : "44", + "sku" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-BTH-BT-S-MIC-Bluetooth-Headset-Yellow-491183515-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzI5OHxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDliLzg5Mjc2MDU0MjQxNTguanBnfDU3MDJjYzA5NTU4ZTFjMmYyOGQxMzRhOGJhN2ViNTU0YmUwMjQxYTQzYjBkYWFmODJkZTJmNTQ3MWY4MmY2NWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "60" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTH BT-S-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfort fit - Suitable while Sports activity & Travel
  • Music on the GO - Interrupted music for 8 hrs
  • " + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe2"), + "name" : "JBL C150SI Wired Headphone, Red", + "description" : "JBL C150SI Wired Headphone, Red", + "price" : "29", + "sku" : "JBL C150SI Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C150SI-Wired-Headphone-Red-491281252-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM0MHxpbWFnZS9qcGVnfGltYWdlcy9oMGUvaGZlLzg4NzcwODkxOTQwMTQuanBnfGFmMjMyNjVlMWNiMDlkMWYxMGE4YmU0YzRjNWVkYzdlNTQxNTczZWJiYWI2OWE3MjQ5NjQ3M2U2ZjkzOGZiZmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "C150SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe3"), + "name" : "JBL C100SI Wired Headphone, Red", + "description" : "JBL C100SI Wired Headphone, Red", + "price" : "19", + "sku" : "JBL C100SI Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C100SI-Wired-Headphone-Red-491281249-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMyMXxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaDhjLzg5Mjc3NTY2ODEyNDYuanBnfDY2NmJmMjM0Njg4ZTQ5OGZhM2Y4NmIxM2EwZDliNjY2YTg1Y2YxNjA2NDdjYjQ2NGMxN2Q0N2ZkMDFmM2EyNDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C100SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Compatible with all Android and iOS devices
  • Driver Sensitivity - 100 +/-3dBSPL
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe4"), + "name" : "Sony MDR-AS210 Wired Earphone, Grey", + "description" : "Sony MDR-AS210 Wired Earphone, Grey", + "price" : "12", + "sku" : "Sony MDR-AS210 Wired Earphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/7e185b35-b5e2-4d46-ad73-4f5d10d92bb8-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjI4N3xpbWFnZS9qcGVnfGltYWdlcy9oMjEvaDg5Lzg4MDUwMTE0MjMyNjIuanBnfGYyZDQ5OGNjZTNhYjFjMDNhYjg2OGEyYzExNjg1ZTVmZjVlYzdjYWMwYTI2OTY3YzdmMDc3YmQwZWI2MDI1MGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Running" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Splashproof for all-weather listening
  • Open acoustics help air flow through for natural sound quality
  • 13.5 mm driver provides clear and detailed sound" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe5"), + "name" : "Philips ActionFit SHQ3305OR/00 Sports Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ3305OR/00 Sports Wired Headphone, Orange", + "price" : "24", + "sku" : "Philips ActionFit SHQ3305OR/00 Sports Wired Headphone, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3305OR-00-Sports-Wired-Headphone-Orange-491183211-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDM4MnxpbWFnZS9wbmd8aW1hZ2VzL2gwMy9oYWMvODkyNzg3NTk1Njc2Ni5wbmd8ZjNjYmE5MWE3NWYyNzg4NWJjZDNjNjVhMjdhMWY0ODM2YTViMGY1MTI1NjhkODUxNzQxN2IwNTlmOTAxYzE1Yg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3305OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23.1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable management: Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type : Neodymium
  • Speaker diameter : 8.6 mm
  • Diaphragm : PET
  • Acoustic system : Closed
  • Finishing of connector : Gold plated
  • " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe6"), + "name" : "Philips ActionFit SHQ3300OR/00 Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ3300OR/00 Wired Headphone, Orange", + "price" : "18", + "sku" : "Philips ActionFit SHQ3300OR/00 Wired Headphone, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3300OR-00-Wired-Headphone-Orange-491183209-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzE4MnxpbWFnZS9wbmd8aW1hZ2VzL2gwNi9oM2IvODkyNzg3Nzc5MTc3NC5wbmd8YThmM2IzYjQ2Y2QwZTNiMTI4YmI4M2Y5ZDc4NTU2NjdiZTdlMWM5MzM5NDIxZmQ4M2I0ZGVkMjUwMDdlZjM2Yg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3300OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "21.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 20 mW
  • Speaker diameter: 8.6 mm
  • Cable Connection: two-parallel" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe7"), + "name" : "Philips ActionFit SHQ3300LF/00 Wired Headphone, Lime", + "description" : "Philips ActionFit SHQ3300LF/00 Wired Headphone, Lime", + "price" : "18", + "sku" : "Philips ActionFit SHQ3300LF/00 Wired Headphone, Lime", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3300LF-00-Wired-Headphone-Lime-491183208-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTAzOXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDI3Lzg5Mjc4NzIyMjEyMTQuanBnfGRiNjMxYmU5Mzk3ZTY4NjU3MjJlNmJkYTgxMDVlNWNhZmFkNWVjMWY0MDFkMWI4MDlmNjkyMDg4Njc2ZGUwYjg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3300LF/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime" + }, + { + "attributeName" : "Weight", + "attributeValue" : "21.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 20 mW
  • Speaker diameter: 8.6 mm
  • Cable Connection: two-parallel" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe8"), + "name" : "Philips ActionFit SHQ1300OR/00 Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ1300OR/00 Wired Headphone, Orange", + "price" : "14", + "sku" : "Philips ActionFit SHQ1300OR/00 Wired Headphone, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1300OR-00-Wired-Headphone-Orange-491183200-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE1OXxpbWFnZS9wbmd8aW1hZ2VzL2g4YS9oNGQvODkyNzg3NjYxMjEyNi5wbmd8OTc3NjVkNTRlN2FkNmJlM2FjMTkzMTYwY2U5YjMxMTJkYzhjNjg3ODE0YjNkYTE2ZjBjZWJhM2JmZTAxZTkzYQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1300OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe9"), + "name" : "Philips ActionFit SHQ1300LF/00 Sports Wired Headphone, Lemon", + "description" : "Philips ActionFit SHQ1300LF/00 Sports Wired Headphone, Lemon", + "price" : "14", + "sku" : "Philips ActionFit SHQ1300LF/00 Sports Wired Headphone, Lemon", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1300LF-00-Sports-Wired-Headphone-Lemon-491183199-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDgwM3xpbWFnZS9wbmd8aW1hZ2VzL2hlNy9oOGUvODkyNzg3MTg5MzUzNC5wbmd8N2UyMTdiMDQwZjQyNTEyNjIzODk4MjRhYmUwNGU3MzVkYTRlZmZmM2Q0OWU4NjI1YzMwZTA4ZTE4ZWNmZTBjZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1300LF/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lemon" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable management - Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Speaker diameter - 13.6 mm
  • Acoustic system - Semi-closed
  • Magnet type - Neodymium
  • Connector - 3.5 mm
  • " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fea"), + "name" : "Sennheiser CX 3.00 Wired Headphone, Black", + "description" : "Sennheiser CX 3.00 Wired Headphone, Black", + "price" : "51", + "sku" : "Sennheiser CX 3.00 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-3.00-Wired-Headphone-Black-491182186-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIzM3xpbWFnZS9wbmd8aW1hZ2VzL2g1YS9oZjAvODkyNzg3NjI4NDQ0Ni5wbmd8M2IxZjY0Y2E3ZjI5ZjcyZjA1ZTQyNjMxZWZlNzczOGQ4OWM4MTMwMTY2MjJiMmQwNDliZjQyYTIzY2VkYTllMA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "CX" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Ear adapter set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637feb"), + "name" : "Sony MDR-EX110AP/R Wired Earphone, Red", + "description" : "Sony MDR-EX110AP/R Wired Earphone, Red", + "price" : "22", + "sku" : "Sony MDR-EX110AP/R Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX110AP-R-Wired-Earphone-Red-491181321-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTk3NHxpbWFnZS9wbmd8aW1hZ2VzL2g4Ny9oMTYvODkyNzcxMzI5NjQxNC5wbmd8ZDM3YzExMWNhYzQ2Zjk0MTUzNWFhYjEyZGIxMDQwZmI1YmY4MzhkNGI4ZmJkNzIxNmIzZTAwMmM3MjZjZTc5MQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX110AP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Four-conductor gold-plated L-shaped stereo mini plug
  • Cord - Y-shape
  • Magnet - Neodymium
  • Driver Unit - 9mm
  • Power Handling Capacity - 100mW
  • Type - Closed" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fec"), + "name" : "JBL T250SI Wired Headphone, Black", + "description" : "JBL T250SI Wired Headphone, Black", + "price" : "37", + "sku" : "JBL T250SI Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T250SI-Wired-Headphone-Black-491181137-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjcyOXxpbWFnZS9wbmd8aW1hZ2VzL2hlZC9oYjIvODkyNzg1MjY5MTQ4Ni5wbmd8NTVlYjkyNDQ3ZTA4YzcyYzk5MGU1NjA3OWE3ZDhkNmY3MmNjZGM0NjIxYjE1OGIwZTM0OTg0YWQ1MjRjYWIwYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T250SI" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power magnetic drivers
  • Plug: 3.5mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fed"), + "name" : "JBL T26C Wired Headphone, Red", + "description" : "JBL T26C Wired Headphone, Red", + "price" : "29", + "sku" : "JBL T26C Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T26C-Wired-Headphone-Red-491181136-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTI5MnxpbWFnZS9wbmd8aW1hZ2VzL2hkMy9oNmMvODkyNzg2MDc1MjQxNC5wbmd8ZWVjMTAyMDdjOGIzNGFmYzhjMWFiN2ZjMWM0ZDVmMzFkMzQyMTQ5NjQ5MjRlMGI0NjAzY2EwZjE5ZDZmNTgzMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T26C" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power magnetic drivers
  • Plug: 3.5mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fee"), + "name" : "Altec Lansing MZX145 Wired Headphone, Black", + "description" : "Altec Lansing MZX145 Wired Headphone, Black", + "price" : "20", + "sku" : "Altec Lansing MZX145 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Altec-Lansing-MZX145-Wired-Headphone-Black-491229643-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjY2N3xpbWFnZS9qcGVnfGltYWdlcy9oNzEvaDM1Lzg5Mjc4MDcyNzUwMzguanBnfDhmMjdiNDI4ZTk0ZWI0NWYyYWIzNDI2M2I3MTU2ZWZlZjY4YWJmZDlhZDIyMTYyYjM3NzgzYTAzZWViNzg1OGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MZX145" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable
  • Pouch
  • Freebit Ear Tips (Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm neodymium drivers
  • Onboard microphone
  • 3 size ear tip
  • Flat tangle free cable
  • " + } + ], + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fef"), + "name" : "Altec Lansing MZX656 Headphone, Blue", + "description" : "Altec Lansing MZX656 Headphone, Blue", + "price" : "49", + "sku" : "Altec Lansing MZX656 Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Altec-Lansing-MZX656-Headphone-Blue-491229640-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDA3MXxpbWFnZS9qcGVnfGltYWdlcy9oM2EvaDNlLzg5Mjc2NTc2NTYzNTAuanBnfDlkYTgyMzY4YjM3NzMyMzRiNzM3ZGJlNWFjZGIzYjg2MjlmNjhlNWIwMTM4ZmJmNzdiMzc5NzMwYzMwNjU5YTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MZX656" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ultra Comfortable
  • High quality material
  • 40 mm Neodymium drivers
  • Onboard microphone and song and navigation/ telephony button
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff0"), + "name" : "Sony MDR-EX150 Wired Headphone, Black", + "description" : "Sony MDR-EX150 Wired Headphone, Black", + "price" : "15", + "sku" : "Sony MDR-EX150 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150-Wired-Headphone-Black-491229314-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTM1OXxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDk1Lzg4NjMwMDM2MDcwNzAuanBnfDc3ZDYyYjU4YTE1MDg3YjE3ZWE0OTFmNWYzNmJlNjM2ODRjMGRmN2UyMTAzNDEzOTYxNTA5Mjg4ZjhjOTFmYzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff1"), + "name" : "Amkette Trubeats Pulse S8 Wired Headphone, Black", + "description" : "Amkette Trubeats Pulse S8 Wired Headphone, Black", + "price" : "15", + "sku" : "Amkette Trubeats Pulse S8 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/f2bcf90b-2a18-44c9-a930-51a0c8a4221d-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc3MHxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaGFlLzg4MDQ5OTUxNzAzMzQuanBnfDc2ZDk1M2M0MzA4ZGI2NDY3YTg5ZDEzNGZlM2ExMmNmOWI1YWY1ZmY3ZTBiYzk1ZWYwZjE4ZjljZGU4YmQxYmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse S8" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 Eartips
  • Mobile Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - Neodymium Magnet
  • Driver Diameter - 10 mm
  • " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff2"), + "name" : "Philips SHS390/97 Headphone, Black", + "description" : "Philips SHS390/97 Headphone, Black", + "price" : "8", + "sku" : "Philips SHS390/97 Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHS390-97-Headphone-Black-490302482-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM2OXxpbWFnZS9wbmd8aW1hZ2VzL2g3ZC9oMzgvODkyNzgwNzkzMDM5OC5wbmd8NDliYWYzZjk0YmEwMWQ2NWMxOWZkMzYzYzZkYjJlNTIyNDM0NmNkNmI0YTZlNGZmNTdiNmQyYmJhMzgxN2Q4Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHS390/97" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "52" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Acoustic system: Open
  • Diaphragm: Mylar dome
  • Magnet type: Neodymium
  • Voice coil: Copper
  • Maximum power input: 100 Mw
  • Speaker diameter: 32 mm
  • Type: Dynamic
  • Connectivity:
  • Cable Connection: Two-parallel" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff3"), + "name" : "Philips SHL3000/00 Headphone, Black", + "description" : "Philips SHL3000/00 Headphone, Black", + "price" : "15", + "sku" : "Philips SHL3000/00 Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/b63ba2b9-8c75-424d-819f-8ba9588a68f0-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU3NnxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGRjLzg4MTc5MjIzMTAxNzQuanBnfDA4N2FiY2UyZmI1NTlmMjdhYjU5MmY2NjkyN2M1ODc1Y2Y2YzFkYmI3MTk4YjdmMjgzZDZkMzRkMDhhMWMzZWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3000/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 32 mm Speaker driver delivers powerful and dynamic sound
  • Closed type acoustic provide good sound isolation
  • DJ monitoring style for tuning in and out environment
  • Flat foldable for you easy to carry on the go
  • Adjustable earshells and headband fits the shape of any head
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff4"), + "name" : "Sennheiser RS 110 II Wireless Headphone, Silver", + "description" : "Sennheiser RS 110 II Wireless Headphone, Silver", + "price" : "66", + "sku" : "Sennheiser RS 110 II Wireless Headphone, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-RS-110-II-Wireless-Headphone-Silver-490122400-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTY1NHxpbWFnZS9wbmd8aW1hZ2VzL2g2ZC9oMDcvODkyNzgyOTQ5MTc0Mi5wbmd8ZmU2NWRjZjhkYTkzNDBhYjA5ZmZmMGMyOGFkODYwZmUxYjI5MWJlZWJjZWNhZDc3Y2M0MDdkZmIwMzc3MTJjNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Connector: 3.5 mm / 6.3 mm stereo
  • THD" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "RS 110 II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Tr 110 Ii Transmitter with Audio Connecting Cable
  • Mains Unit
  • Two Batteries" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff5"), + "name" : "Bose SoundTrue Around Ear Wired Headphone, Black", + "description" : "Bose SoundTrue Around Ear Wired Headphone, Black", + "price" : "195", + "sku" : "Bose SoundTrue Around Ear Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-Wired-Headphone-Black-491163940-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjExNHxpbWFnZS9wbmd8aW1hZ2VzL2g0YS9oMzIvODkyNzg4NDAxNzY5NC5wbmd8NzA3MmY1M2ViMzczNjBhMTYyNWZiY2U4N2FiYzdlNTE0NDhkNjBmZGNhZGM4YzdjMzAwMWRlOTJiYmRkZjIzNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Inline remote/microphone cable (66\")
  • Carrying Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff6"), + "name" : "Philips CitiScape SHL5705BKP/00 Wired Headphone, Black", + "description" : "Philips CitiScape SHL5705BKP/00 Wired Headphone, Black", + "price" : "58", + "sku" : "Philips CitiScape SHL5705BKP/00 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491163874-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDI1NXxpbWFnZS9wbmd8aW1hZ2VzL2hhZi9oYzQvODkyNzgzOTI1NjYwNi5wbmd8M2JkODBiNTY3MDJiOTVmMTI4ODVhZGE5OTk4MTIxNWM4MzhhNmM1MjhmODY1NzljMGVjZjE0ODY4NmJmMmNmMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "CitiScape" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHL5705BKP/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "117" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff7"), + "name" : "Philips SHL3210BK/00 Wired Headphone, Black", + "description" : "Philips SHL3210BK/00 Wired Headphone, Black", + "price" : "29", + "sku" : "Philips SHL3210BK/00 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491163854-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDYwNnxpbWFnZS9wbmd8aW1hZ2VzL2g0Yy9oZjMvODkyNzg0MTg3ODA0Ni5wbmd8NWVmOWJiYjEwOTMxODljZTkwY2Q4MmMzNDUwZWU0YzU4YmFjMGViYWNjNDBhNjg5YTM5ZGE5YzhiOTEwYzg0YQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3210BK/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Weight", + "attributeValue" : "609" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff8"), + "name" : "JBL C150SI Wired Earphone, White", + "description" : "JBL C150SI Wired Earphone, White", + "price" : "29", + "sku" : "JBL C150SI Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C150SI-Wired-Earphone-White-491281251-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODAzOXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaGQ4Lzg5Mjc3NjQyMTc4ODYuanBnfGFiOWU5ZDNiM2MwNzkzMjgwODIzYWQ3MjUzNzM0OWEwNTIzYzc3ZmQxZTM0MWY2NDJhZjk0ZWY4ODg4ZWI2NGU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C150SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • JBL Signature Sound
  • One-button Universal Remote with Mic
  • Compatible with all Android and iOS devices
  • Driver : Advanced 9mm driver
  • Maximum SPL : 5 mW
  • Rated power input : 3 mW
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff9"), + "name" : "Jabra Storm Wireless Bluetooth Headset, Black", + "description" : "Jabra Storm Wireless Bluetooth Headset, Black", + "price" : "66", + "sku" : "Jabra Storm Wireless Bluetooth Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/2a332cd1-923a-4ecb-a9b5-b1d51bf60001-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTkzOHxpbWFnZS9wbmd8aW1hZ2VzL2gwZi9oYWMvODgwMjk0Nzc2MDE1OC5wbmd8ZmUxYTUxMDliZjg2Yjc4N2Y2ZjE4OTExMDU2NmE3Yzc0MDU4ZThlMzJmNTQyOGMwOTI4YTM1NzQ2MjkyNmFhNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffa"), + "name" : "Sennheiser Momentum In-Ear Wired Headphone for iOS, Black/Red", + "description" : "Sennheiser Momentum In-Ear Wired Headphone for iOS, Black/Red", + "price" : "102", + "sku" : "Sennheiser Momentum In-Ear Wired Headphone for iOS, Black/Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-Momentum-In-Ear-Wired-Headphone-for-iOS-Black-Red-491182189-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTQyM3xpbWFnZS9wbmd8aW1hZ2VzL2hhMy9oZGMvODkyNzg4MTcyMzkzNC5wbmd8NzgwZjlkMzllYTAzYjliODczMDU5MjBkMWY4MTIyZDY4YWU0ZTJiODAzYTUzOWQ5ODBiODQxNjEyZmZiNTlkZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Momentum" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "44" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Ear-adapter set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffb"), + "name" : "Sony MDR-AS600BT Wireless Headphone, Blue", + "description" : "Sony MDR-AS600BT Wireless Headphone, Blue", + "price" : "87", + "sku" : "Sony MDR-AS600BT Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-AS600BT-Wireless-Headphone-Blue-491182183-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzMzM3xpbWFnZS9wbmd8aW1hZ2VzL2gxYi9oMjYvODkyNzg2MjA2MzEzNC5wbmd8OWMzMTgzYjVhMTE5YzBiOWVmYjZhZDkxZmQ1ZDAxNWYzZDkxYjNiMTFhOTQxNjAxYWM5YzExOWU3ZjQyM2EyZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS600BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Waterproof Rating: IPX 4 Standard
  • Magnet: Neodymium
  • Music playback time: Max. 8.5h
  • Output: Bluetooth Power Class 2
  • Near Field Communication (NFC)
  • Electret Condenser Microphone
  • " + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "21" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffc"), + "name" : "Sony MDR-AS600BT Wireless Bluetooth Headphone, Black", + "description" : "Sony MDR-AS600BT Wireless Bluetooth Headphone, Black", + "price" : "87", + "sku" : "Sony MDR-AS600BT Wireless Bluetooth Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-AS600BT-Wireless-Bluetooth-Headphone-Black-491182181-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTk4M3xpbWFnZS9wbmd8aW1hZ2VzL2gzZC9oYzYvODkyNzc4OTU4MDMxOC5wbmd8MTMxZTdlNmQ4OTlkYzNjMWI1MDY5YTg3NzBhOThmNTdmODUwNjljYTNkOTdkMmEyNDYxOTc0YWYwY2VlMDBjZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Micro-USB cable (Approx. 50 cm)
  • Long Hybrid silicone rubber earbuds (SS/S/M/L 2 each)
  • Arc supporters (S/M/L 2 each)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS600BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium magnet
  • Battery Life - Music playback time: Max. 8.5 hours; Communication time:Max. 8 hours; Standby Time: Max. 250 hours
  • Battery Charging Time - Approx. 2.5 hours
  • Driver Unit - 9mm Dynamic
  • " + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffd"), + "name" : "Philips Flite SHL4805DC/00 Wired Headphone, Black", + "description" : "Philips Flite SHL4805DC/00 Wired Headphone, Black", + "price" : "32", + "sku" : "Philips Flite SHL4805DC/00 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/-Philips-Flite-SHL4805DC-00-Wired-Headphone-Black-491315538-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjIxfGltYWdlL2pwZWd8aW1hZ2VzL2g5Ny9oNTAvODg3NzEyNjM1MjkyNi5qcGd8M2VmNGJmMGQzMzE5YzUxZTIyNzEwN2VhOGEzYmUwZGU3MGM0MTQ4MDc3ODZiOTlmZjdiZmU1MDFiMDQ1NTA4NA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Flite" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHL4805DC/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffe"), + "name" : "Zoook ZB-Jazz Claws Bluetooth Neckband Earphone, Black", + "description" : "Zoook ZB-Jazz Claws Bluetooth Neckband Earphone, Black", + "price" : "51", + "sku" : "Zoook ZB-Jazz Claws Bluetooth Neckband Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Zoook-ZB-Jazz-Claws-Bluetooth-Neckband-Earphone-Black-491362695-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTEyMXxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaDdhLzg4NzcxOTIyMTY2MDYuanBnfDJmYTZmNTI1MWE3ZjAwYzNkODAxM2M1OTdmZGUyNzlkOTNhZmI5N2Q0MjM4ZDU0OTdhNzZmOWJlYTU0ZDA5MDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Extra Pairs of Earbuds
  • Micro USB Charging Cable
  • User Guide
  • Certificate of Authenticity
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes (Micro USB Charging Cable)" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "ZB-Jazz Claws" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Zoook" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "27" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Zoook", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fff"), + "name" : "JBL J303BT Wireless Bluetooth Headset, White", + "description" : "JBL J303BT Wireless Bluetooth Headset, White", + "price" : "29", + "sku" : "JBL J303BT Wireless Bluetooth Headset, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-J303BT-Wireless-Bluetooth-Headset-White-491167181-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDU4MHxpbWFnZS9qcGVnfGltYWdlcy9oZGQvaGE5Lzg5Mjc2MjMzODEwMjIuanBnfDE4MDBkY2EzNjkzNTg3ZmI0NGRlYTE1YTQ0YzQyZGI2YzFjMDUzMzA1MjRmOTcyZDYyMGIyYzgyYTg0NTYyMjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise reduction for clear voice
  • A2DP listening to music or audio book
  • Multipoint to pair with two phones
  • Bluetooth Range: 10 meters
  • Talk Time: 5 hours
  • Standby Time: 168 hours
  • Charging Time: 2 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "J303BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638000"), + "name" : "Sony MDR-XB70AP Wired Earphone, Black", + "description" : "Sony MDR-XB70AP Wired Earphone, Black", + "price" : "58", + "sku" : "Sony MDR-XB70AP Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/321bfb02-ce53-49d2-a593-80c858814f5a-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzExOXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDg4Lzg4NDA1OTc0NzEyNjIuanBnfDljYjQ2NDU0ZGU2N2I2YjM4OTA1ZjUyZmE0MTlkMzQyNWY4YWIxMjdiMjUxNDczNmQ0ZGZkZjNlYWI3ZWU4NDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB70AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "9" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • Carrying Pouch
  • Earbuds SS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 12 mm neodymium driver units
  • Gold-plated L-shaped Stereo Mini
  • Powered Bass Duct++ for extra deep bass
  • Capacity - 100 mW
  • " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638001"), + "name" : "Sony MDR-ZX750AP/R Wired Headphone, Red", + "description" : "Sony MDR-ZX750AP/R Wired Headphone, Red", + "price" : "95", + "sku" : "Sony MDR-ZX750AP/R Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX750AP-R-Wired-Headphone-Red-491163821-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDA0N3xpbWFnZS9qcGVnfGltYWdlcy9oNjMvaGZjLzg5Mjc4NDIyMDU3MjYuanBnfGViNmIwMzJjNDVmMTA0YmZmODgzYjMwNDgzNGJjYTk1ZjE3MTQwMGNhMTU1Y2MyNTM5MjQ2YWQwZjJhMTY2OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX750AP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "40" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638002"), + "name" : "Sennheiser MM 30 IP Headset, Black", + "description" : "Sennheiser MM 30 IP Headset, Black", + "price" : "58", + "sku" : "Sennheiser MM 30 IP Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491004802-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIzMXxpbWFnZS9qcGVnfGltYWdlcy9oMDIvaGE1Lzg5Mjc2MjA3NTk1ODIuanBnfDllYjg3ZDcxYzc2YTFjMWM2NTk2NzMyMTVlYmQwMzc4YjM2NzYzODhiZmZiODYyYzExNzFlZGIwMDQ0NGE3MDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MM" + }, + { + "attributeName" : "Model", + "attributeValue" : "30 IP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart in-line remote control with microphone (change the volume" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638003"), + "name" : "Sony MDR XB910 Headset, Silver", + "description" : "Sony MDR XB910 Headset, Silver", + "price" : "187", + "sku" : "Sony MDR XB910 Headset, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/491086595-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTQwMnxpbWFnZS9wbmd8aW1hZ2VzL2hmNi9oNTcvODkyNzYyMDQzMTkwMi5wbmd8NTY3M2Y0Y2U2OTM1YTY3NGE1MTMwMTdjNTE5MjJhZTFjMzg4Y2IyNGNmM2E1NTJiOWZjYWZlNzY5YTFjZjViOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "XB910" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Hear all your songs with natural" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connecting Cable
  • Inline Remote
  • Microphone Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638004"), + "name" : "Sony MDR-V55/B Headphone, Black", + "description" : "Sony MDR-V55/B Headphone, Black", + "price" : "73", + "sku" : "Sony MDR-V55/B Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491086862-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjk0MXxpbWFnZS9wbmd8aW1hZ2VzL2g1Zi9oYjEvODkyNzgxMDQ4NjMwMi5wbmd8ZjViYzY3ZTFjY2I5YzNhMWVjODE4YmVkMzk4ZGNjNjBlMzUwZDg3OWM1NzE2NGEyYjJlMWYwYjBiNzBmY2JjMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-V55/B" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "40" + }, + { + "attributeName" : "Weight", + "attributeValue" : "220" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium Drivers
  • Rugged Cord
  • folding DJ style with reversible earcups
  • flexibility and easy portability
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Operating Instructions
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638005"), + "name" : "Promate ProHarmony.1 Wireless Headphone, Black", + "description" : "Promate ProHarmony.1 Wireless Headphone, Black", + "price" : "87", + "sku" : "Promate ProHarmony.1 Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Promate-ProHarmony.1-Wireless-Headphone-Black-491018489-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjIxNXxpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDczLzg5Mjc4MzIxNzg3MTguanBnfGFjZjMwODMwMzJjOTA4MDNmZWNiZTgzNzEzZmIzMjRkMWU0ODYyOWVlM2ZiNWYyOWIwZmVmOTNjZWQwZTg0NDg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Effective range: 10m
  • Transmit power: Class 2 (Max 2dBm)
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "ProHarmony.1" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Promate" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Promate", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638006"), + "name" : "Nokia Coloud Pop WH-510 Wired Earphone, Red", + "description" : "Nokia Coloud Pop WH-510 Wired Earphone, Red", + "price" : "21", + "sku" : "Nokia Coloud Pop WH-510 Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491164219-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzc5NHxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGExLzg5Mjc4NDM1MTY0NDYuanBnfDA2YTY2OWM3ZjYyZmQ1MzFjYWZjNjhiNWQ2YWVmY2I2ZDNjNDliMGMzMjczZWU1N2JjNjExMDg0MjNiOThlOTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Coloud Pop" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-510" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Audio features - Stereo
  • Directional microphone
  • Multifunction key
  • 3.5 mm stereo headphone connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638007"), + "name" : "Nokia Coloud Boom WH-530 Wired Headphone, Yellow", + "description" : "Nokia Coloud Boom WH-530 Wired Headphone, Yellow", + "price" : "29", + "sku" : "Nokia Coloud Boom WH-530 Wired Headphone, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/491164225-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjY5OHxpbWFnZS9wbmd8aW1hZ2VzL2gzNC9oZjEvODkyNzg0Mzg0NDEyNi5wbmd8MTAwMGIwOTRlYTdlNmYwNTMzYTYzYTMxZGM5ZWYwOGY1NThlZTdlNjJmZjg2ZDYwNjBkNDZkMDM2MGMzNzdhYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Coloud Boom" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-530" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Audio features - Stereo
  • Directional microphone
  • Multifunction key
  • 3.5 mm stereo headphone connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638008"), + "name" : "Skullcandy JIB Wireless Earphone, Blue", + "description" : "Skullcandy JIB Wireless Earphone, Blue", + "price" : "11", + "sku" : "Skullcandy JIB Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wireless-Earphone-Blue-490924363-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODI1OXxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGJlLzg4NzcxNDEwOTg1MjYuanBnfGUxNmRmNzA5ZWYwNzJjNzA4MzE5MzhmNWZkMDk3ZDc2ODY1NDc3ODU1Y2U4ODQwYThlOTMyMzI5ZDIwMWIwM2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638009"), + "name" : "Nokia BH-222 Wireless Bluetooth Headset, White", + "description" : "Nokia BH-222 Wireless Bluetooth Headset, White", + "price" : "24", + "sku" : "Nokia BH-222 Wireless Bluetooth Headset, White", + "imageUrl" : "https://www.reliancedigital.in/medias/adea6697-d050-497e-80f1-e2d072313a52-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4MXxpbWFnZS9wbmd8aW1hZ2VzL2g0My9oZWIvODg0MDU5ODQ1NDMwMi5wbmd8OGU1YjM4ZGZkOTcyNzFkYWUyMTVlZTIxNmEyNGRmNjhkZGZlYjVlZjFmNGQ5ZDljOTMzMDlhYThjZDFjY2I3ZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • UI features: Charging indicator" + }, + { + "attributeName" : "Model", + "attributeValue" : "BH-222" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800a"), + "name" : "Sony MDR-ZX110NC Wired Headphone, Black", + "description" : "Sony MDR-ZX110NC Wired Headphone, Black", + "price" : "44", + "sku" : "Sony MDR-ZX110NC Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110NC-Wired-Headphone-Black-491134953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk2OHxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDk1Lzg5Mjc3MTYyNDU1MzQuanBnfDJiNTEwZWQ3ZmI0NzEzYzYxNjY2OGUzZDVjNTlkMGRkMTk0MmU0ZjM3YTUwZmFkYjQ0MmFmOGE3OTlmYjM3NWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX110NC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "220" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "80 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Plug adaptor for in-flight use Operating instructions
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800b"), + "name" : "Sony MDR-EX250AP Wired Earphone, Blue", + "description" : "Sony MDR-EX250AP Wired Earphone, Blue", + "price" : "29", + "sku" : "Sony MDR-EX250AP Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX250AP-Wired-Earphone-Blue-491229307-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDMyfGltYWdlL2pwZWd8aW1hZ2VzL2g4Ny9oY2UvODkyNzY3MDc2MzU1MC5qcGd8MjQzYTQ4NTFkNmY2YjFiYmUyY2Y0ZjAwNjdiZWMzMzNlZmUzMjZkYmViMDlmMWJmNDI2MjJjNWI0M2E0NzQ5YQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX250AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800c"), + "name" : "Philips SHL5000/00 Wired Headphone, Black", + "description" : "Philips SHL5000/00 Wired Headphone, Black", + "price" : "16", + "sku" : "Philips SHL5000/00 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL5000-00-Wired-Headphone-Black-490783929-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDQzOXxpbWFnZS9qcGVnfGltYWdlcy9oY2MvaDRiLzg4NzcyMDg4NjI3NTAuanBnfDlkZGQwNjAwMDU0MGUzMjEyYzdmY2VkZjkyMGE1NTlhN2I3M2ZlNzFkNjY3MzdkYWQ2ZTU5YTQyY2QyMmFmZjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL5000/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800d"), + "name" : "Nokia Coloud Boom WH-530 Wired Headphone, Red", + "description" : "Nokia Coloud Boom WH-530 Wired Headphone, Red", + "price" : "29", + "sku" : "Nokia Coloud Boom WH-530 Wired Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491164224-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY5NHxpbWFnZS9wbmd8aW1hZ2VzL2gwNi9oYjQvODkyNzg0MjUzMzQwNi5wbmd8MGI3ZjQxYThlMDU1OTM2MmZjMjNlNWE5ZTMzZmI0NWI2YjA3OTFmMGMwODEwZmYwNGEyZmRiZGEzYzc4NGU4Zg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Coloud Boom" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-530" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Audio features - Stereo
  • Directional microphone
  • Multifunction key
  • 3.5 mm stereo headphone connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800e"), + "name" : "JBL T26C Wired Headphone, White", + "description" : "JBL T26C Wired Headphone, White", + "price" : "29", + "sku" : "JBL T26C Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/491181135-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTMxMnxpbWFnZS9wbmd8aW1hZ2VzL2gzOC9oMmMvODkyNzcyNzU4MzI2Mi5wbmd8NTc0YjgzZjZiZGY2ZTgxZTMwODE0MzcxZTU0NGY4Mjg0OGJhNmE5YjMyZjMyMGViMTZiNDFiYWZkMTg3OWZkNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T26C" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power magnetic drivers
  • Plug - 3.5mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800f"), + "name" : "Jabra EasyGo Wireless Headphone, Black", + "description" : "Jabra EasyGo Wireless Headphone, Black", + "price" : "31", + "sku" : "Jabra EasyGo Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-EasyGo-Wireless-Headphone-Black-490902675-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjM2N3xpbWFnZS9wbmd8aW1hZ2VzL2hkNy9oZmMvODkyNzgxODM1MDYyMi5wbmd8MzA2M2FjOTE1ZjZiZTA1YWZiMmY5ZGE3Y2ZlOTU5NWJjZWVlZjdlYTE3ZDRlOGQ5YzY0NDRjYzQ2YWZlZDJiNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8.4" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless Technology: Supports Bluetooth for Wireless Connectivity
  • Bluetooth Version: Supports Bluetooth Version 3.0
  • AVRCP: This Device Does Not Support Avrcp" + }, + { + "attributeName" : "Model", + "attributeValue" : "EasyGo" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638010"), + "name" : "Sennheiser HD 229 Headphone, Black/ Maroon", + "description" : "Sennheiser HD 229 Headphone, Black/ Maroon", + "price" : "66", + "sku" : "Sennheiser HD 229 Headphone, Black/ Maroon", + "imageUrl" : "https://www.reliancedigital.in/medias/490925253-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDU5OXxpbWFnZS9wbmd8aW1hZ2VzL2hjYS9oNjEvODkyNzgxMDE1ODYyMi5wbmd8Yjk4MTExYTMyYWZjZDE4ZTEzNjBiMTQ3ZWY5NjZkMDk2YjI3ZTg3NTNmYTIwZjYwYWNiN2M4ZDI1OTFkYzk5Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "HD" + }, + { + "attributeName" : "Model", + "attributeValue" : "229" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/ Maroon" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Jack plug: 3.5 mm
  • Transducer principle: Dynamic" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638011"), + "name" : "Skullcandy Aviator Headset, Brown/ Gold", + "description" : "Skullcandy Aviator Headset, Brown/ Gold", + "price" : "174", + "sku" : "Skullcandy Aviator Headset, Brown/ Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/491086767-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTA3MXxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGIyLzg5Mjc2MjE3NDI2MjIuanBnfDZkZThlZjY0OWZmMzQ1MzlhMTI3ZmQxNDk5YjA4Yzk4MjQ0ZDNiZGFiY2IzMTMzYTU1ODI4OWZiMTA3NmY4YzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Aviator" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "34" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Brown/ Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Optics inspired design
  • Attacking bass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Aviator Travel Bag
  • " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638012"), + "name" : "Sony MDR XB60EX Headphone, Gold", + "description" : "Sony MDR XB60EX Headphone, Gold", + "price" : "29", + "sku" : "Sony MDR XB60EX Headphone, Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/491064857-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODA3NnxpbWFnZS9wbmd8aW1hZ2VzL2hlZC9oMDQvODkyNzgxMzQzNTQyMi5wbmd8MWNhZTlhOGViNzkzYzcwMzM3MTJkYTU3N2EwZDdjMDk0YmM5ZjQ0NzNlYzliZDYwODAwOGI1ODNmOTk0OTUxNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "XB60EX" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver Unit: 13.5 mm" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638013"), + "name" : "Sony MDR-EX150 Wired Earphone, Red", + "description" : "Sony MDR-EX150 Wired Earphone, Red", + "price" : "15", + "sku" : "Sony MDR-EX150 Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150-Wired-Earphone-Red-491229316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODY1NXxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaDdlLzg4NzcxODQwMjQ2MDYuanBnfDU1Y2FjZDAzNjdlNDZmMGQ5NmY3MDJiZGYyZmU4ZDQ0ZjRiOTc5NDVmOTUwZjQ2MmMzMzM4MmQzYWI2MjZlNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638014"), + "name" : "LG Tone Active+ HBS-A100 Wireless Earphone, Silver", + "description" : "LG Tone Active+ HBS-A100 Wireless Earphone, Silver", + "price" : "174", + "sku" : "LG Tone Active+ HBS-A100 Wireless Earphone, Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-Tone-Active-HBS-A100-Wireless-Earphone-Silver-491332664-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjUyM3xpbWFnZS9qcGVnfGltYWdlcy9oYjEvaGUzLzg5Mjc2Mjk5MzQ2MjIuanBnfDhiMWRiODEwZWE2NjRhZjA4ZGE0NDUwMjg1ODdkNThmZmJmZWQ0NDczNWE4ZmE4OWEwMDRjMDBkNmYzNDMyZDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Talk Time: Up to 13 hours (Speaker Mode up to 9.5 hours)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "HBS-A100" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "144.78 (W) x 147.32 (H) x 17.78 (D) mm" + }, + { + "attributeName" : "Weight", + "attributeValue" : "60" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638015"), + "name" : "JBL C100SI Wired Earphone, Black", + "description" : "JBL C100SI Wired Earphone, Black", + "price" : "19", + "sku" : "JBL C100SI Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C100SI-Wired-Headphone-Black-491281247-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDg4NnxpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDJjLzg5Mjc3NjIyNTE4MDYuanBnfGExYWUzZDEzZDliODRhODVkMDE5ZGEwNzFlMzIwNTEzMmZkOTk5MDNmZTNjNGQyNjJmNWYyMDk1MGMzMmJhMGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C100SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Compatible with all Android and iOS devices
  • Driver Sensitivity - 100 +/-3dBSPL
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638016"), + "name" : "Amkette Trubeats Pulse S6 Wired Headphone, Blue", + "description" : "Amkette Trubeats Pulse S6 Wired Headphone, Blue", + "price" : "11", + "sku" : "Amkette Trubeats Pulse S6 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Trubeats-Pulse-S6-Wired-Headphone-Blue-491229190-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTg2M3xpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDc5Lzg5Mjc2NTMwNjg4MzAuanBnfDdjZTM2MzUyYjAwYjY2NjNmODFlMTE2MmQ4ZjFhMTlkZGExYWQ3NmJmNDU0MmE2ZGUxOTBiYzVmMDJhODkyMDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse S6" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 Eartips
  • Mobile Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - Neodymium magnet
  • Driver Diameter - 10mm
  • " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638017"), + "name" : "B&O BeoPlay Form 2i Wired Headphone, Green", + "description" : "B&O BeoPlay Form 2i Wired Headphone, Green", + "price" : "182", + "sku" : "B&O BeoPlay Form 2i Wired Headphone, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/39179143-9a41-4dd6-ae3e-e05543b568d4-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjIxNnxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDBkLzg4MDQ5OTU0OTgwMTQuanBnfDM2YTlmZTBkNWY5ZWQzZjZiZWM1YzFmZTlmNWNlMjNjMmIyYWQ2Yjk0NDUzNWJmMDcxMjQ5NjBlMzQwNDRlYzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "Form 2i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "90" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638018"), + "name" : "Skullcandy Skullcrusher Headphone, Black", + "description" : "Skullcandy Skullcrusher Headphone, Black", + "price" : "64", + "sku" : "Skullcandy Skullcrusher Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Skullcrusher-Headphone-Black-491086773-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTE5NXxpbWFnZS9qcGVnfGltYWdlcy9oYmUvaDVlLzg5Mjc4MTA4MTM5ODIuanBnfGM4ZTViZGUyMDY0YTk5NzYzYmNjYzRjOGM3N2IwZjcxNDMxZjdmMTQ2NDIyOTAwMWQzNDRlMjk1YTg3ZGZlNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Skullcrusher" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme sound delivers attacking bass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Satin Drawstring Bag
  • " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638019"), + "name" : "Skullcandy Hesh 2 S6HSDZ-072 Wired Headphone, White/ Gun Metal", + "description" : "Skullcandy Hesh 2 S6HSDZ-072 Wired Headphone, White/ Gun Metal", + "price" : "69", + "sku" : "Skullcandy Hesh 2 S6HSDZ-072 Wired Headphone, White/ Gun Metal", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Hesh-2-S6HSDZ-072-Wired-Headphone-White-Gun-Metal-491009071-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODkyNHxpbWFnZS9wbmd8aW1hZ2VzL2gxNC9oMzgvODkyNzg2MjM5MDgxNC5wbmd8YjdmNmQyNjAwMWI3ZDM4NjdmZjYwYTA0N2YxZTgwY2I4NmViZjYwNmY4YzI4NjRlOThlZDkzMWYzMzQ5NDRiYQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Hesh 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "S6HSDZ-072" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/ Gun Metal" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801a"), + "name" : "Philips SHL3300BK/00 Wired Headphone, Black", + "description" : "Philips SHL3300BK/00 Wired Headphone, Black", + "price" : "37", + "sku" : "Philips SHL3300BK/00 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3300BK-00-Wired-Headphone-Black-491163855-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODI4NnxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaGFkLzg5Mjc4NTAzOTc3MjYuanBnfDFhMDM5MGQ1ZWQ4NDQwMDAyNTEwYjI1YWUxYjkyZTRhZGY0MTg5MzlhMGU4ZGE5ZGNlN2E5ZjIwZTQ4ZTY5MzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3300BK/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "108" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Weight", + "attributeValue" : "306" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801b"), + "name" : "Philips ActionFit SHQ3305WS/00 Wired Earphone, White", + "description" : "Philips ActionFit SHQ3305WS/00 Wired Earphone, White", + "price" : "24", + "sku" : "Philips ActionFit SHQ3305WS/00 Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3305WS-00-Wired-Earphone-White-491183212-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM1OXxpbWFnZS9qcGVnfGltYWdlcy9oNjAvaDNjLzg5Mjc2Njc4MTQ0MzAuanBnfDdiNWI3ZDIzNGI1ODI0MzUzN2RiMjVlZjRmZDYyYjUwMzhiYTdhMzExZjU2ZmJjZmE0ZTJiMTQ0NGNkYzEyYmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3305WS/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23.1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable management : Cable clip
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Maximum power input : 20 mW
  • Magnet type - Neodymium
  • Acoustic system : Closed
  • " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801c"), + "name" : "Philips ActionFit SHQ1305OR/00 Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ1305OR/00 Wired Headphone, Orange", + "price" : "19", + "sku" : "Philips ActionFit SHQ1305OR/00 Wired Headphone, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1305OR-00-Wired-Headphone-Orange-491183202-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODcxMnxpbWFnZS9wbmd8aW1hZ2VzL2g4Yy9oZGEvODkyNzg4NTAwMDczNC5wbmd8NWIxNzlmMzQyMDllN2E2M2RjMmZjZjVlZjVjMDlhMjM4Mzc1MzZhMThlY2ZjMzI5ZDM1Nzc4ZjkxOTc3M2QxMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1305OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Maximum power input: 10 mW
  • Speaker diameter: 13.6 mm
  • Magnet type: Neodymium
  • Cable Connection: two-parallel" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801d"), + "name" : "Jabra Halo Smart Wireless Earphone, Black", + "description" : "Jabra Halo Smart Wireless Earphone, Black", + "price" : "51", + "sku" : "Jabra Halo Smart Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Halo-Smart-Wireless-Earphone-Black-491277098-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTQ5NXxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaDdlLzg5Mjc3MzkzNzk3NDIuanBnfGRiMWQ2YzViNTU1OTM0ZWZlNmU1MjQwZWRiYmU5NTQyOTM4NWM1OTkxNDdkMDJkMTliYTlkMzUxNDc5NGM5MDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of extra EarGels (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Halo Smart" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Operating range - Up to 10 meters (33 feet)
  • Call Vibration Alert
  • Talk time - Up to 17 hours
  • Standby time - Up to 22 days
  • Magnetic in-ear headphones
  • Voice button
  • Answer/end call
  • Reject call
  • Voice dialling
  • Last number redial
  • Volume control
  • Track control
  • Play/pause music
  • Voice guidance
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "38" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "97" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801e"), + "name" : "Philips ActionFit SHQ4300LF/00 Wired Earphone, Lime Yellow & Grey", + "description" : "Philips ActionFit SHQ4300LF/00 Wired Earphone, Lime Yellow & Grey", + "price" : "22", + "sku" : "Philips ActionFit SHQ4300LF/00 Wired Earphone, Lime Yellow & Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/3685a299-485c-4e22-ab46-a145347ab87c-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzgyMHxpbWFnZS9wbmd8aW1hZ2VzL2hhZi9oNjMvODgwNTAwMjcwNjk3NC5wbmd8M2UwNGVkYWJiYzgyYTc1NTk4Zjc2MmQwZGZhNDk3MmMxNTk0M2Y2OTQ1OGRlYmE4ZGI3NDEzNDUwMjE0N2IxNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ4300LF/00" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Yellow & Grey" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Maximum power input : 20 mW
  • Magnet type - Neodymium
  • Acoustic system : Closed
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801f"), + "name" : "Sony MDR-ZX110APW Wired Headphone, White", + "description" : "Sony MDR-ZX110APW Wired Headphone, White", + "price" : "25", + "sku" : "Sony MDR-ZX110APW Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110APW-Wired-Headphone-White-491181322-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzY1NXxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGNlLzg5Mjc4MDM2NzA1NTguanBnfDE2NGY0ODVhYzJkOTdhNTVjMzlmZmJlY2E5OTkzOTIzYWJiZGRkNTU2YjE0OGRmN2U0ODlmMDRmNjUzZTZhNTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX110APW" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "120" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Four-conductor gold-plated L-shaped stereo mini plug
  • 30mm Dynamic Driver Unit
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638020"), + "name" : "Philips SHB5950BK Wireless Earphone, Black", + "description" : "Philips SHB5950BK Wireless Earphone, Black", + "price" : "53", + "sku" : "Philips SHB5950BK Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB5950BK-Headphones-Headsets-491277055-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTc2NXxpbWFnZS9qcGVnfGltYWdlcy9oNzYvaGJkLzg4Nzk2NjUwODY0OTQuanBnfGJlYmE0NjdlNTI0ODczMTUzN2Y1OGNiYjMxNTJhMmYwOWUxNzc4OTVhYzkzZTZjNmNkNDM4YzM1MjAyZTY4YmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB5950BK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 -21 000 Hz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638021"), + "name" : "JBL T100A Wired Earphone, Black", + "description" : "JBL T100A Wired Earphone, Black", + "price" : "15", + "sku" : "JBL T100A Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T100A-Wired-Headphone-Black-491173092-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDAwMnxpbWFnZS9wbmd8aW1hZ2VzL2gxMS9oYTcvODkyNzg0NDE3MTgwNi5wbmd8OTYzYjA4NTUyZmM0YWQyNmYxZGNiZjYwZGQwYTAzNjY5YzI1MzNlYTk4MWU5NmJhNGIyZGUyNzJkN2VmY2E5OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T100A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of silicone ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single button remote/mic
  • PureBass performance
  • High sensitivity" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638022"), + "name" : "Skullcandy 2XL Barrel Wired Headphone, White/Black", + "description" : "Skullcandy 2XL Barrel Wired Headphone, White/Black", + "price" : "44", + "sku" : "Skullcandy 2XL Barrel Wired Headphone, White/Black", + "imageUrl" : "https://www.reliancedigital.in/medias/8ad4fdc0-f839-4d4f-8c8c-95f94f18af2f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjEyN3xpbWFnZS9qcGVnfGltYWdlcy9oMGUvaDA2Lzg4MDQ5OTQxODcyOTQuanBnfDUxOGExY2E0MThlZTNjMzhiYmY5ZjEzYTRiZTI5ZWRjMTM3NjMzZDA4ZjBlMDI5NmU5MzQwZDNjYWY3MGQ0OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Model", + "attributeValue" : "Barrel" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638023"), + "name" : "Skullcandy 2XL Spoke X2SPFY-836 Wired Headphone, White", + "description" : "Skullcandy 2XL Spoke X2SPFY-836 Wired Headphone, White", + "price" : "16", + "sku" : "Skullcandy 2XL Spoke X2SPFY-836 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/661bf712-8f8b-4f10-852f-b5841821b328-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQwN3xpbWFnZS9qcGVnfGltYWdlcy9oZWEvaDRmLzg4MDQ5OTAyNTUxMzQuanBnfGU5MjhhZDM0Yjc2YWM0OGJhZDMyZmNiYzdmZDkxYmY2NTZiZDIwN2Q4ZmU5NDgxMmZkNTZhZDM1MDBlNzA2ZTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spoke" + }, + { + "attributeName" : "Model", + "attributeValue" : "X2SPFY-836" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet Type: NdFeb
  • Plug Type: 3.5 mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638024"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Red", + "description" : "JBL Reflect Mini BT Wireless Earphone, Red", + "price" : "87", + "sku" : "JBL Reflect Mini BT Wireless Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLREFMINIBTRED-Headphones-Headsets-491377977-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzk1MHxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDNiLzg4ODk4NjI3MTc0NzAuanBnfGEyMjM0MDc4OTVlZWJiYzNhZjA1YjUyNjFlNjEyYmQ1NmNlMTRlMTNiMmI5ZmFlNWRlZDk1NGE4YmJlMGM0MTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 Button In-Line Control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638025"), + "name" : "JBL T450BT Wireless Headphone, Black", + "description" : "JBL T450BT Wireless Headphone, Black", + "price" : "51", + "sku" : "JBL T450BT Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT450BTBLK-Headphones-Headsets-491332665-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODQwN3xpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDk3Lzg4ODk4NDcyNTA5NzQuanBnfGI5NWZjOGQ3MDUwNDZmZDQ0OTQyZDZlY2RkMjgyMmVhNzEyYzcwMGVkYTU3Njc0ZmY4ZGY0NDE5ODVjNDhlZWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T450BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638026"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Black", + "description" : "JBL Reflect Mini BT Wireless Earphone, Black", + "price" : "87", + "sku" : "JBL Reflect Mini BT Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-BT-Headphones-and-Headsets-491377975-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTU4NHxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGJhLzg5MzY4MzkwNTMzNDIuanBnfDhhNGY5NzY0ODBjY2VjNGIxNTBhZjQ5NzQ0NDg5ZWQ0MWVjMmM0YzdmYTQ5MjEzYjhkZTIwNWRjZTcwZDc0ZjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 button in-line control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10-22" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638027"), + "name" : "JBL T110BT Wireless Earphone, Grey", + "description" : "JBL T110BT Wireless Earphone, Grey", + "price" : "37", + "sku" : "JBL T110BT Wireless Earphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110BT-Headphones-and-Headsets-491377969-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjI1MnxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGMwLzg5MzY4Mjc5Nzc3NTguanBnfDYzODYxMzFjNzgyMDdlZDhhNjk3ODcwM2MwNTIwMTUyNmJmOGZjNzhhYTEwMWRjYjQ1YTU0NTViMzI3MWZhYWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.2" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "96" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638028"), + "name" : "JBL E25BT Wireless Earphone, White", + "description" : "JBL E25BT Wireless Earphone, White", + "price" : "51", + "sku" : "JBL E25BT Wireless Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E25BT-Headphones-and-Headsets-491377974-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTgzNnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDU1Lzg5MjIzMjY1MzIxMjYuanBnfDAxYjkzM2MwYTI3ZTEwOTE5Y2MxNTE5NGU1N2I4YjMxMjFhOTUwNmNjYjhlNzZjNzhiZWU1OTNiYTQxNzUyMmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "E25BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638029"), + "name" : "JBL T110BT Wireless Earphone, White", + "description" : "JBL T110BT Wireless Earphone, White", + "price" : "37", + "sku" : "JBL T110BT Wireless Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110BT-Headphones-and-Headsets-491377970-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTA5MHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDQwLzg5MjIyODIwOTg3MTguanBnfDFjZWZjYzI5MTMwNzQ3MDZiODljNTk2NzY5YjE3MDU5YzFiY2I3ZDU5OTY3ZmRiZDViY2FhMWZjNDdmZjE5OTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.2" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "96" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802a"), + "name" : "Sennheiser Momentum Free Wireless Earphone, Black", + "description" : "Sennheiser Momentum Free Wireless Earphone, Black", + "price" : "218", + "sku" : "Sennheiser Momentum Free Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-MOMENTUM-Free-Headphones-and-Headsets-491378225-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDE2N3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDk5Lzg5MjIzMzMwODU3MjYuanBnfDAwMzBmNjdlYTQ3YWNjYTYzMDhlODMzNTcyY2M5ZWFkZDcwODcwZWU0YmY4ODgzMmEyNWFkMTQzOWQwMWZkNGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB Charging Cable
  • \n
  • Ear Adaptor Set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Momentum Free" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "40" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15-22" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802b"), + "name" : "Philips SHB3075 Wireless Headphone, Blue", + "description" : "Philips SHB3075 Wireless Headphone, Blue", + "price" : "51", + "sku" : "Philips SHB3075 Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB3075-Headphones-and-Headstes-491362697-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUyMHxpbWFnZS9qcGVnfGltYWdlcy9oNjQvaDdmLzg5NDYzNjQ4NDIwMTQuanBnfDY4OWM5NjhlZDE2YWUxMWQ3OTA1ODI4MzFhNWM3NmFmODRiNGFlZWQzNDRhNTAzNjg2ZjI4ZWQ3MzUxM2I0NmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "166" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3075" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 21000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802c"), + "name" : "Philips SHE4305 Wired Earphone, Blue", + "description" : "Philips SHE4305 Wired Earphone, Blue", + "price" : "19", + "sku" : "Philips SHE4305 Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE4305-Headphones-and-Headstes-491362701-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjc5NnxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDhiLzg5NDY4OTQ4MzE2NDYuanBnfDM1YTA0ZTVkNDZiZmMxYWNlMDNmZTE5NzFmOGVkZWM2MTcxMzcyZDEzMDBiMTM3OWM0OGQ4MzMyMzZmZjRkN2E", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE4305" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "3 cms (W) x 2.8 cms (D) x 8 cms (H)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802d"), + "name" : "Samsung U-Flex EO-BG950CLEGIN Wireless Earphone, Blue", + "description" : "Samsung U-Flex EO-BG950CLEGIN Wireless Earphone, Blue", + "price" : "73", + "sku" : "Samsung U-Flex EO-BG950CLEGIN Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EO-BG950CLEGIN-Headphones-and-Headstes-491362829-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjc1MHxpbWFnZS9qcGVnfGltYWdlcy9oMWEvaDg1Lzg5NDY5NTM3NDg1MTAuanBnfDQ5MzVkMjM2NTM2OTBkYmU5OWYzYzYwOTAzZGQ5MGFlMGIxM2I0MTQ4OGE5YjEwNTM4ZTJiMDM0ZTg4Yzg1Nzg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "U-Flex" + }, + { + "attributeName" : "Model", + "attributeValue" : "EO-BG950CLEGIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802e"), + "name" : "Skullcandy Method S2CDW-J520 Wireless Earphone, White", + "description" : "Skullcandy Method S2CDW-J520 Wireless Earphone, White", + "price" : "80", + "sku" : "Skullcandy Method S2CDW-J520 Wireless Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2CDW-J520-Headphones-and-Headstes-491336156-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIwMXxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDgzLzg5NDY5NDI0MTA3ODIuanBnfGQxYzQ1N2I4ZDg0OGYyYWUyNjQyMGViOTY4ZDZiYzZiN2Y4ZDNiY2ZhNWM3NDMzODQwOGIzM2ZkZjcwY2IxMzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDW-J520" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802f"), + "name" : "Sony MDR-EX14AP Wired Earphone, Black", + "description" : "Sony MDR-EX14AP Wired Earphone, Black", + "price" : "19", + "sku" : "Sony MDR-EX14AP Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX14AP-Headphones-and-Headstes-491378312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzkzMXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDc4Lzg5NDY4MTc0MzM2MzAuanBnfDQ0M2MxYzEzNTUzZGFkZDdkYThhOWZiYjU1Yjc2Y2I0NDM3YzBiNzRjMzljNDcxZTc0YmEwNDg0NDVjNmEyNzY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX14AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "8 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earbuds - S x2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.2 m Cord Length
  • \n
  • Gold-plated L-shaped four-conductor stereo mini
  • \n
  • Y-type Cord Type
  • " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638030"), + "name" : "Amkette Truebeats X9 Wired Earphone, Sleek Silver", + "description" : "Amkette Truebeats X9 Wired Earphone, Sleek Silver", + "price" : "12", + "sku" : "Amkette Truebeats X9 Wired Earphone, Sleek Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X9-Headphones-and-Headstes-491320285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDg4NXxpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDFhLzg5NDY5MTk4NjYzOTguanBnfDA1ZWU1OGUzYjgzOGIwMjc2ZjI3MDNhYjYzZTJlYWU3YmE2YzNiYjA2MGE4MjdlYThkNTQyZjVmZjA1YjA3YzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sleek Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638031"), + "name" : "Amkette Truebeats X7 Street Hipster Wired Earphone, White-Red-Black", + "description" : "Amkette Truebeats X7 Street Hipster Wired Earphone, White-Red-Black", + "price" : "8", + "sku" : "Amkette Truebeats X7 Street Hipster Wired Earphone, White-Red-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Headphones-and-Headstes-491320281-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU4OXxpbWFnZS9qcGVnfGltYWdlcy9oMDIvaDg0Lzg5NDY5MTkyMTEwMzguanBnfDIwZjg5Yjg0M2JjZWUwODgxZjRmYmQ1NDI0N2MwOTU0MWVkYmRkMGYzYmIzMzU2MzhjNjdhNjYyYjEwMjk5YTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White-Red-Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638032"), + "name" : "Amkette Truebeats X7 Street Chiller Wired Earphone, Blue", + "description" : "Amkette Truebeats X7 Street Chiller Wired Earphone, Blue", + "price" : "8", + "sku" : "Amkette Truebeats X7 Street Chiller Wired Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Headphones-and-Headstes-491320283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjM4MHxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDc1Lzg5NDY5MTg1NTU2NzguanBnfGRmNzRlNzUwOWNkYjc1MmIyN2ExODQ2MDFiMzVlOGZlZDFmODA1NjFmY2NlNTVmODk4MzQ2NDIzNTYxMThjNTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black-Red-Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638033"), + "name" : "Amkette Truebeats X9 Wired Earphone, Real Rose Gold", + "description" : "Amkette Truebeats X9 Wired Earphone, Real Rose Gold", + "price" : "12", + "sku" : "Amkette Truebeats X9 Wired Earphone, Real Rose Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X9-Headphones-and-Headstes-491320288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDQwN3xpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDYwLzg5NDY5MDYyMzQ5MTAuanBnfDVhZjhkMjVkNjZlZThiMmUzMGVlNTdmY2UzNzUyOWIyZjM2MWNkMzZjZDY5MWQ3MzE5ZTI5NTRkODk2NjQ5OTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Real Rose Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638034"), + "name" : "Philips SHB3075 Wireless Headphone, Red", + "description" : "Philips SHB3075 Wireless Headphone, Red", + "price" : "51", + "sku" : "Philips SHB3075 Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB3075-Headphones-and-Headstes-491362698-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjY0M3xpbWFnZS9qcGVnfGltYWdlcy9oOTEvaDNkLzg5NDY5MDIzMDI3NTAuanBnfGUwNTE0ZTMyZTNlOTgxNzE1NDgzYzU2NGEwOThlYzJmMDhhNWE0YmEyNDIxYjNkY2E2MDMzZjBhYTc4OTc4YzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "12 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3075" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "User Manual" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 21 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638035"), + "name" : "Philips SHE4305 Wired Earphone, White", + "description" : "Philips SHE4305 Wired Earphone, White", + "price" : "19", + "sku" : "Philips SHE4305 Wired Earphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE4305-Headphones-and-Headstes-491362703-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTI1NXxpbWFnZS9qcGVnfGltYWdlcy9oODkvaDY1Lzg5NDY4OTg2OTgyNzAuanBnfGE3MGViOTQ2YTJkMDQ4MDM3Mjk4ZGExYjc3ZTM5Mjg0MzNkMjg0NDA1ODFmM2E1NmQ0Njk1M2QxZDFhZDg4MTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE4305" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "3 cms (W) x 2.8 cms (D) x 8 cms (H)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638036"), + "name" : "Philips SHL3070 Wired Headphone, White", + "description" : "Philips SHL3070 Wired Headphone, White", + "price" : "22", + "sku" : "Philips SHL3070 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3070-Headphones-and-Headstes-491362705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzUxNXxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaGMwLzg5NDY4OTczODc1NTAuanBnfDM0ZGZhYzhiOGQzYWM4MjgyNDkxZGI5M2Q3NzRlMGZlNzdiYzViYzU5MDU3NmI0NDhhNzQ3YzZiNTdjZmM3NjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3070" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638037"), + "name" : "Philips SHB3075 Wireless Headphone, White", + "description" : "Philips SHB3075 Wireless Headphone, White", + "price" : "51", + "sku" : "Philips SHB3075 Wireless Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB3075-Headphones-and-Headstes-491362699-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzExMnxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDkwLzg5NDY4OTI4MDAwMzAuanBnfDA0ODZkMzgzYjE0NzQxMjdiZmY0OGE2Y2I5NDMwYmU5ZTEzNmI0OWUxOTVmZjJkNDdjMDFkZjM3MDIwZmM3MDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "12 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3075" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "User Manual" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 21 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638038"), + "name" : "Philips SHQ 1205 Wired Earphone, Green", + "description" : "Philips SHQ 1205 Wired Earphone, Green", + "price" : "15", + "sku" : "Philips SHQ 1205 Wired Earphone, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ-1205-Headphones-and-Headstes-491362746-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODI4MnxpbWFnZS9qcGVnfGltYWdlcy9oMDQvaGNkLzg5NDY4OTI0NzIzNTAuanBnfDIyY2IyOGJmY2RlNmRmNDk4Y2Y2ZWNkNzcxNThlNmZiMDQzNWIwMWE1MjYxOWEyOTk5MTZiMWUzMDgxYWFlODI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ 1205" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15 Hz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638039"), + "name" : "Philips SHQ 1205 Wired Earphone, Black", + "description" : "Philips SHQ 1205 Wired Earphone, Black", + "price" : "15", + "sku" : "Philips SHQ 1205 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ-1205-Headphones-and-Headstes-491362745-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzQ3N3xpbWFnZS9qcGVnfGltYWdlcy9oNmYvaDdkLzg5NDY4OTIxNDQ2NzAuanBnfGYzOTQ1NDI0YjYyNjdjMmZjNjIyMDgxYTRlY2ZkYzJkMWZmMmE1OTMxZTBmMTMyZTZmOTEwN2U5ZDNmMDdjOWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ 1205" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15 Hz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803a"), + "name" : "Philips SHL3075 Wired Headphone, White", + "description" : "Philips SHL3075 Wired Headphone, White", + "price" : "26", + "sku" : "Philips SHL3075 Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075-Headphones-and-Headstes-491362709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjM3MnxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaDBiLzg5NDY4ODY1NzQxMTAuanBnfDEzYmRmNjg3MTNjMzM2MWVlZjk0Yzg5MmViZmY5MjE4NTgxMWMyMjhlN2E3ZGU4ZjhjMTAwZGRjN2E5ZTY3YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803b"), + "name" : "JBL Endurance Run Wired Earphone, Red", + "description" : "JBL Endurance Run Wired Earphone, Red", + "price" : "24", + "sku" : "JBL Endurance Run Wired Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550854-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY3fGltYWdlL2pwZWd8aW1hZ2VzL2g1Mi9oNGQvOTExNDUxMjc1MjY3MC5qcGd8YWM5MzlmY2E2OGE5ZWRlMmM4YWNjMDIwYTQxNmNiMWZjNGE3OWRkMzBiNTU2M2E5MTRiNGM3ZDFkYWQ0NjlmOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803c"), + "name" : "Philips SHL3095BL/94 Wired Headphone, Blue", + "description" : "Philips SHL3095BL/94 Wired Headphone, Blue", + "price" : "20", + "sku" : "Philips SHL3095BL/94 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3095BL-94-Wired-Headphone-Blue-491229463-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjYxNnxpbWFnZS9qcGVnfGltYWdlcy9oNDgvaDdjLzg5Mjc3Mzg3MjQzODIuanBnfGQ5ZjU4NDc3N2VjYTU5MzQ2YzQzMDYyMTgyNDFmZGU5MzVlYmRkZmJlZTk0MTJlYWRhYjQwYTUyNWQzNTk2MjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3095BL/94" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803d"), + "name" : "Plantronics M70 Wireless Headsets, Black/ White", + "description" : "Plantronics M70 Wireless Headsets, Black/ White", + "price" : "40", + "sku" : "Plantronics M70 Wireless Headsets, Black/ White", + "imageUrl" : "https://www.reliancedigital.in/medias/1b534125-c805-4d02-b664-f0a622f5c4a2-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjUyM3xpbWFnZS9qcGVnfGltYWdlcy9oYTcvaDlhLzg4MTk0NTAwMTk4NzAuanBnfGUzNzE3NzBkODRhMDkxN2RjYzhjYTQ3MjAzYzIzYjUyMGQ0N2FmOTAwOTNiMTg1MTM5MDUxY2NlYzgyYjIzZmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/ White" + }, + { + "attributeName" : "Model", + "attributeValue" : "M70" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Plantronics" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Plantronics", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803e"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Blue", + "description" : "JBL Reflect Mini BT Wireless Earphone, Blue", + "price" : "87", + "sku" : "JBL Reflect Mini BT Wireless Earphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-BT-Headphones-and-Headsets-491377976-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDQzOHxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaGZhLzg5MjIzMjgxNzA1MjYuanBnfDMxZTE1N2E0M2IxMzMwYTBlNmMzYTk1MWUxMDMzMTFjZWY0OWU0OWM3ZmMwOGNkMjgwNzUxNDhiYzQxNjEzYzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 button in-line control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10-22" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803f"), + "name" : "JBL TUNE 500BT Wireless Headphone, Blue", + "description" : "JBL TUNE 500BT Wireless Headphone, Blue", + "price" : "56", + "sku" : "JBL TUNE 500BT Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT500BTBLU-Headphone-and-Headset-491431263-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzM4fGltYWdlL2pwZWd8aW1hZ2VzL2gwNS9oMzcvOTEyMDc0MTI2MTM0Mi5qcGd8ZWFkZTVjNGZiMDlkNDY1NjM1NzgxM2EyZDBkMzdlYTBmMTdiMzViNDRlOWNjN2QyM2ExMWY3YjFiMWRlMjEzZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE 500BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "155" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "16" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638040"), + "name" : "Philips SHL3195BK Wired Headphone, Black", + "description" : "Philips SHL3195BK Wired Headphone, Black", + "price" : "27", + "sku" : "Philips SHL3195BK Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3195BK-Wired-Headphone-Black-491229459-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzg0OHxpbWFnZS9qcGVnfGltYWdlcy9oMjEvaDg1Lzg5Mjc3MDA5MTAxMTAuanBnfDI3MDQ4Njg1NmU0NTAwZGE0ODkzZTRlNmJhZjVhMDM2MDMzYTBhOTM5MjIyYjVmMGIwN2I2NDRlMDMzZGQ2MmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3195BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638041"), + "name" : "Philips SHL3075BK/27 Wired Headphone, Black", + "description" : "Philips SHL3075BK/27 Wired Headphone, Black", + "price" : "26", + "sku" : "Philips SHL3075BK/27 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075BK-Headphones-Headsets-491362706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzkwMnxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaGY4Lzg4Nzk3MDI4MzUyMzAuanBnfDVjYmNhZWI2ZjQ1NjgyNjA4YWMyYTdjNWYzNjk1MmIyNzczMWJiMDA4MTJjMWJmMzExYjZlYjllNDY0MWY5NDA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075BK/27" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 23 000  Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638042"), + "name" : "Skullcandy Ink'd Wireless Earphone, Black/Grey", + "description" : "Skullcandy Ink'd Wireless Earphone, Black/Grey", + "price" : "58", + "sku" : "Skullcandy Ink'd Wireless Earphone, Black/Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Ink-d-Wireless-Earphone-Black-491315285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzMxMnxpbWFnZS9qcGVnfGltYWdlcy9oYzkvaDkyLzkwMjY4Nzg0NzIyMjIuanBnfGIzZmI4M2FlYTVhM2RkM2E3MWQwNTc1MmZhMWZlMzc0MWZlN2UyNjc3NGVlNjk4ZTNkZmQ3YTFkNzY0NDNjYTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "Ink'd" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight and low-profile around-the-neck collar
  • Bluetooth \n\nwireless with 8-hour rechargeable battery
  • Call track and volume \n\ncontrol via the built-in microphone and remote
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "25" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638043"), + "name" : "Reconnect Probuds2 Ultra RAWEB1003 Wireless Earphone, Red/Black", + "description" : "Reconnect Probuds2 Ultra RAWEB1003 Wireless Earphone, Red/Black", + "price" : "44", + "sku" : "Reconnect Probuds2 Ultra RAWEB1003 Wireless Earphone, Red/Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Wireless-Earphone-RAWEB1003-491430964-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MTkzfGltYWdlL2pwZWd8aW1hZ2VzL2gwYi9oMGYvOTA4ODM1NDYxNTMyNi5qcGd8MWE0ZTJhM2NjMGRjMTI1OTAwMzE1MmE0MzhkMDg5MWUxODQyY2U1MDIyZTU1M2FiOGYxYjFhZGQ0ZDM0ZWZhZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "Up to 2.5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Model", + "attributeValue" : "Probuds2 Ultra RAWEB1003" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless Music Streaming with Sporty Design Earphones
  • \n
  • Tangle Free Flat Earphone Cables
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red/Black" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638044"), + "name" : "itek HD BTHP001 MSD Wireless Headphone, Blue", + "description" : "itek HD BTHP001 MSD Wireless Headphone, Blue", + "price" : "37", + "sku" : "itek HD BTHP001 MSD Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-BTHP001-MSD-Headphone-and-Headsets-491431365-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTU3OHxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGU1LzkxMzAzNTczMjU4NTQuanBnfDczMjE4YmIzNzgyMTk1OGY2MGU5NmZjMTNlOThmODA3MGE3YjhkNGI4NzU3ZTU5MjA3NjFkN2IyMTRmMTZhNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTHP001 MSD" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638045"), + "name" : "JBL Endurance Run Wired Earphone, Black", + "description" : "JBL Endurance Run Wired Earphone, Black", + "price" : "24", + "sku" : "JBL Endurance Run Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550851-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTc5fGltYWdlL2pwZWd8aW1hZ2VzL2g4OS9oMzUvOTExNDUwMDQzMTkwMi5qcGd8YzljMGFhNDZmNWQyYjA4YTM5ZWNjYzA1YzY3NTJlOTBmZWZmMjEwOGU4ZTlmMjFmYzU3NTYxNDhhZTMzYmM2Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638046"), + "name" : "Bose QuietComfort 25 Wired Headphone for iOS models, White", + "description" : "Bose QuietComfort 25 Wired Headphone for iOS models, White", + "price" : "366", + "sku" : "Bose QuietComfort 25 Wired Headphone for iOS models, White", + "imageUrl" : "https://www.reliancedigital.in/medias/491163507-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODcwNHxpbWFnZS9wbmd8aW1hZ2VzL2hkMi9oYjgvODkyNzg0Nzc3NjI4Ni5wbmd8ZDkxZWJlYWZjNWU3N2M5NDc4NjIxNTk0YzU0YmM1ODhmZTE0YTI3NDFhMzNjYTUzNDgyYzEyOWU5MWY0MjllMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "QuietComfort" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "195.6" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • QC 25 inline remote and microphone cable
  • Airline adapter
  • Carrying case
  • AAA battery
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638047"), + "name" : "Bose QuietComfort 25 Wired Headphone for iOS models, Black", + "description" : "Bose QuietComfort 25 Wired Headphone for iOS models, Black", + "price" : "366", + "sku" : "Bose QuietComfort 25 Wired Headphone for iOS models, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QuietComfort-25-Wired-Headphone-for-iOS-models-Black-491163505-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTM5MHxpbWFnZS9wbmd8aW1hZ2VzL2g5Zi9oM2YvODkyNzg2MzcwMTUzNC5wbmd8YjliMzE0MThiODhlNzFkZjVkOWU1YWY0MmRkYjAwMzkwYTliODM5ZjUwZDYwNzIzMDZjZjgwZWU5NDRjZWUwNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "QuietComfort" + }, + { + "attributeName" : "Model", + "attributeValue" : "25" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "195.6" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • QC 25 inline remote and microphone cable
  • Airline adapter
  • Carrying case
  • AAA battery
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638048"), + "name" : "B&O BeoPlay Earset 3i Wired Headphone, White", + "description" : "B&O BeoPlay Earset 3i Wired Headphone, White", + "price" : "274", + "sku" : "B&O BeoPlay Earset 3i Wired Headphone, White", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-Earset-3i-Wired-Headphone-White-491159209-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDIxN3xpbWFnZS9wbmd8aW1hZ2VzL2hhMi9oZTUvODkyNzY0MzIzODQzMC5wbmd8YmQ1MDU1NjY1ZDRiNjIwM2IzN2Y5OThkMjM0OTdkYWNjY2JkNWNhMjZjNzA4ZTI2OTNiMzFiM2YzNmVjYmIzMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "Earset 3i" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 x 2 Ear Pads
  • Carrying Pouch
  • Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638049"), + "name" : "B&O BeoPlay H6 Wired Headphone, Natural Leather", + "description" : "B&O BeoPlay H6 Wired Headphone, Natural Leather", + "price" : "579", + "sku" : "B&O BeoPlay H6 Wired Headphone, Natural Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-H6-Wired-Headphone-Natural-Leather-491159203-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDE4MnxpbWFnZS9qcGVnfGltYWdlcy9oYmEvaGJmLzg5Mjc3MTcyMjg1NzQuanBnfGFmNTZmZTEwYjQwMTlhOTIyNDg5NmNlMTQzZTNkNDNjNzFjNDVmNDAxODk4ZjYwM2FkNjMwNTA3ZDdjMzM2ZjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "H6" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "230" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Leather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable with 3-button remote
  • Carrying pouch
  • Quick Start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804a"), + "name" : "B&O BeoPlay H6 Wired Headphone, Black leather", + "description" : "B&O BeoPlay H6 Wired Headphone, Black leather", + "price" : "579", + "sku" : "B&O BeoPlay H6 Wired Headphone, Black leather", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-H6-Wired-Headphone-Black-leather-491159193-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDgwN3xpbWFnZS9qcGVnfGltYWdlcy9oN2IvaGUwLzg5Mjc4ODgyNzc1MzQuanBnfGQ3YWJhOTFjZGQ1ZTY4MTBmODdhMmFhYTZmYzNjZDdiNzQ1NGIzZWNmOTI1NTRjY2YyZDY3MzFkYzY2M2ExNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "H6" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "230" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black leather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable with 3-button remote
  • Headphone bag
  • Quick Start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804b"), + "name" : "B&O BeoPlay H3 Wired Earphone, Black", + "description" : "B&O BeoPlay H3 Wired Earphone, Black", + "price" : "363", + "sku" : "B&O BeoPlay H3 Wired Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-H3-Wired-Earphone-Black-491159192-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI4NXxpbWFnZS9qcGVnfGltYWdlcy9oNzUvaGQxLzg5Mjc4ODQ2NzMwNTQuanBnfDRjNWIxNGQyYzRmNTNjNjlhNjRiMDE4ZTg1M2NiYzg3NzU4OWUxNzU1ZWIwN2JkMTNjZDRmYjg3NWU2MTBlYjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "H3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earbuds XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804c"), + "name" : "B&O EarSet 3i Wired Earphone, Aluminium Black", + "description" : "B&O EarSet 3i Wired Earphone, Aluminium Black", + "price" : "274", + "sku" : "B&O EarSet 3i Wired Earphone, Aluminium Black", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-EarSet-3i-Wired-Earphone-Aluminium-Black-491159191-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjk1M3xpbWFnZS9qcGVnfGltYWdlcy9oMjkvaDIzLzg5Mjc4Nzc0NjQwOTQuanBnfDU2MjBiYzRmM2Y1MDUyYzNkMDE3ZDkzMDhlMjIzN2E1M2MxOWRmZTU0OTE3MTRkNGFiYTJjN2JjMjYxYjVlYzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EarSet 3i" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aluminium Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3 control buttons (up volume" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 x 2 ear pads
  • Carrying pouch
  • Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804d"), + "name" : "Sony MDR-XB950BT Wireless Headphone, Black", + "description" : "Sony MDR-XB950BT Wireless Headphone, Black", + "price" : "189", + "sku" : "Sony MDR-XB950BT Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB950BT-Wireless-Headphone-Black-491134954-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTM5MXxpbWFnZS9qcGVnfGltYWdlcy9oNzcvaDVlLzg5Mjc2ODc3MzczNzQuanBnfDUxMTBlZWM0MTgxOTNkMzE0MjQ3ZDYzYTQ4MDUwMmU2OTM3NmNjYzdkYzQyMTVhNTE0ZjBmNDQ5YzViNmUyNjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB950BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • USB cord
  • Warranty card
  • Operating instructions
  • Quick start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Simplified Bluetooth connectivity with NFC One-touch
  • 20 hours of battery life
  • Extra Bass for club-like sound
  • Beat Response Control reduces heavy bass distortion
  • Swivel ear cups for easy portability
  • Driver Unit : 40 mm dynamic
  • Gold-plated L-shaped stereo mini
  • " + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "280" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804e"), + "name" : "Sony MDR-1000X Wireless Headphone, Black", + "description" : "Sony MDR-1000X Wireless Headphone, Black", + "price" : "435", + "sku" : "Sony MDR-1000X Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-1000X-Wireless-Headphone-Black-491277340-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDk0NnxpbWFnZS9qcGVnfGltYWdlcy9oNDIvaDIxLzg5Mjc3Mjc5MTA5NDIuanBnfDYzYTViNmMxNTFhNDRiNmJlMjA5YjAzOWI2M2NkYjRmZWY0OWQxMzQyOGQzZTI1MjU2MDVmMzQ0YTJiMjliYmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-1000X" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carrying case
  • Plug adaptor for in-flight use
  • Headphone cable (approx. 1.5 m" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise cancelling beyond compare
  • Clear hands-free calling
  • Ready to travel
  • Luxurious leather
  • High quality wireless listening with LDAC
  • Volume Control : Touch sensor
  • Diaphragm : Aluminium-coated LCP
  • Gold-plated L-shaped stereo mini plug
  • Dynamic Type : Closed" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "275" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804f"), + "name" : "Beats By Dr.Dre Studio Wireless Headphone, Red", + "description" : "Beats By Dr.Dre Studio Wireless Headphone, Red", + "price" : "434", + "sku" : "Beats By Dr.Dre Studio Wireless Headphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Beats-By-Dr.Dre-Studio-Wireless-Headphone-Red-491181990-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzMzMHxpbWFnZS9qcGVnfGltYWdlcy9oMmMvaDZkLzg5Mjc4NTgxMzA5NzQuanBnfDEyNDQ2ZGIyZWQ5OWI0OWYwZDY3ODQyYTU3NmM5MzFlOTQ5NzQ2MTI2NTNlY2ZhZmFkNTY0YmNkYzYxN2ZkODg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Studio Wireless" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Beats By Dr.Dre" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "260" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pair and play with your Bluetooth device with 30 foot range
  • Dual-mode Adaptive Noise Canceling
  • Iconic Beats sound
  • 12 hour rechargeable battery with Fuel Gauge
  • Take hands-free calls with built-in mic
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RemoteTalk cable
  • 3.5 mm Audio cable
  • USB 2.0 charging cable (USB-A to USB Micro-B)
  • USB Power adapter
  • Hard shell carrying case
  • Quick Start Guide
  • Warranty Card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Beats", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638050"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Navy Blue", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Navy Blue", + "price" : "211", + "sku" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Navy Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Android-devices-Navy-Blue-491228936-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTIxNHxpbWFnZS9qcGVnfGltYWdlcy9oY2YvaDY1Lzg5Mjc3MDUxMDQ0MTQuanBnfGUzZmViOGMzYTM0ZWNmOGUwNjE0ZDFlZjcyNzJhMTliMWEwZjgwZmUzZmM0ZWM1ZmY5ZTYxMjFjNjM0NjJkZmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Navy Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638051"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Black", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Black", + "price" : "211", + "sku" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Android-devices-Black-491228935-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzY5OHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDQ2Lzg5Mjc2ODkzNzU3NzQuanBnfGQ4NWVhMjA1ZDA3MjJhOGEyZWM2Y2E2MWI0ZmJmOWVjNjYxNzYwZGQ0ZGFlMjg4ZDhjYzk2MWVlMmYyMzE3YzY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638052"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Black", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Black", + "price" : "211", + "sku" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/1ec0e438-b7ae-486b-9874-d3c9d6ac002a-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzU5MXxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDI3Lzg4MjAyMTc1MTE5NjYuanBnfDc1ZTBhN2YzZTIyZjk4YTA4OGZhNjhmMDBlODg3ODJiNWM1ODc3NWY2Njg3ODAzYzg4ZWVhN2VmNDQ5ZmZmMTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Apple" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638053"), + "name" : "Creative Sound BlasterX H7 GH0330 Gaming Headset, Black", + "description" : "Creative Sound BlasterX H7 GH0330 Gaming Headset, Black", + "price" : "232", + "sku" : "Creative Sound BlasterX H7 GH0330 Gaming Headset, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0330-Headphones-and-Headsets-491430845-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODcwN3xpbWFnZS9qcGVnfGltYWdlcy9oZTQvaGQyLzg5OTQ3Mzg4OTY5MjYuanBnfGFhNmU0MWNjNDNlYzA1MWI3NWNmMjVhYjk1MDJlNmU4YTFkMTZhZWY1YmIzMjk2MjQ4ZDRiZTY3ZTUyM2FjYWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound BlasterX H7" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0330" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 15kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Mac OS X v10.8 and above" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5mm Stereo Input
  • \n
  • USB" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Tethered cable including inline control - 0.4m / 1.3ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638054"), + "name" : "Creative Aurvana ANC EF0540 Wired Headphone, Black/Blue", + "description" : "Creative Aurvana ANC EF0540 Wired Headphone, Black/Blue", + "price" : "160", + "sku" : "Creative Aurvana ANC EF0540 Wired Headphone, Black/Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0540-Headphones-and-Headsets-491430839-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDMwNXxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDczLzg5OTQ3MzA0NDI3ODIuanBnfGJlY2Q0ODhhYWEyMTNjZjUwOGQwMDFkZmUyYTM4ZjM2Y2QyMmMwZDc3MGU5OThjYmUxMGQzYThmYzEzZjI4NjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 40 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0540" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aurvana ANC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1 AAA alkaline battery
  • \n
  • 1 Airplane Travel Adaptor
  • \n
  • 1 Detachable Audio Cable with Inline Microphone
  • \n
  • 1 Hard-covered Travel Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Foldable Design
  • \nInline Volume\nInline Microphone\nNoise Isolation\n3.5 mm Stereo Audio Cable" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "290" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "38" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "40" + } + ], + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638055"), + "name" : "Sony WF-SP700N Wireless Earphone, Yellow", + "description" : "Sony WF-SP700N Wireless Earphone, Yellow", + "price" : "189", + "sku" : "Sony WF-SP700N Wireless Earphone, Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WF-SP700N-Headphone-and-Headset-491430856-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzU3fGltYWdlL2pwZWd8aW1hZ2VzL2g3OC9oNWUvOTAxMTQwMDczNjc5OC5qcGd8ZWNkNzM4YmJlNmNjZDhiYWVlY2NhYmVjZGFkNDBiM2MzYjAzYzU4ZTM4YTVlNDViOTRjMjMzNjE0NDhkY2RiNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • 3 hours (Continuous Music Playback Time)
  • 8 hours (Waiting Time)
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WF-SP700N" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Cancelling
  • \n
  • Truly Wireless With Bluetooth Streaming
  • \n
  • Secure Fit Earbuds
  • " + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638056"), + "name" : "Sony MDR-Z7M2 Wired Headphone, Black", + "description" : "Sony MDR-Z7M2 Wired Headphone, Black", + "price" : "725", + "sku" : "Sony MDR-Z7M2 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-Z7M2-Q-WW2-Headphone-and-headsets-491431222-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTQyfGltYWdlL2pwZWd8aW1hZ2VzL2hjOS9oODQvOTA5Mzg2MjY4Njc1MC5qcGd8ZTZiYjBhOTNiN2Y4NWY3NWFmOTg4NjY3NzljNmEzMjcwNDM0OGViNGRhOGVjYzc4YjBhMDYxZGRkYTEwYTgxOQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-Z7M2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Unimatch Plug Adapter (Gold-plated) Headphone cable (Approx. 3 m [118 1/8]" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Impedance", + "attributeValue" : "56" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 Hz - 100000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "70" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Aluminium Alloy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "340" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Foam" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638057"), + "name" : "Sony WH-CH700N Wireless Headphone, Black", + "description" : "Sony WH-CH700N Wireless Headphone, Black", + "price" : "189", + "sku" : "Sony WH-CH700N Wireless Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH700N-Headphone-and-Headsets-491431272-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzMzOHxpbWFnZS9qcGVnfGltYWdlcy9oMmMvaGIxLzkxMTQ1MDgwMzQwNzguanBnfDk3YjVlMzYxZjgxMjhhMWQ1ODVjMThjODkyYThhNGIwYjk0NGZmMjAzYjE2YzdhOGY4OWFmZTJhYWRjMTgwNzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "7" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-CH700N" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "22" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "97" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "
  • 7 Hz–20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "35" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638058"), + "name" : "Logitech G Series G231 Wired Headphone, Black", + "description" : "Logitech G Series G231 Wired Headphone, Black", + "price" : "95", + "sku" : "Logitech G Series G231 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Logitech-G231-Headphone-and-Headset-491392228-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDg3NXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGZiLzkwMTE0MDA0MDkxMTguanBnfDg3OTBlZmNlZDg1YTI4ZWRmYmY1YjJiMmI0NWQ3NmM0N2MwMWQ4ZGQ4OGQzYWQyOWQyY2RjN2NlMzk3MmZjNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "G Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "G231" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "18.4 (W) x 8.92 (D) x 18.9 (H) cms" + }, + { + "attributeName" : "Weight", + "attributeValue" : "255" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "PC splitter for separate mic and headphone jacks" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lay-Flat Earpieces
  • \n
  • Folding" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "90" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "50 Hz - 20 kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Logitech", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638059"), + "name" : "Sony MDR-XB550AP Wired Headphone, Green", + "description" : "Sony MDR-XB550AP Wired Headphone, Green", + "price" : "48", + "sku" : "Sony MDR-XB550AP Wired Headphone, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Wired-Headphone-Green-491320706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI2MXxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDBkLzg5Mjc2NDk3OTIwMzAuanBnfDg5NjMzODA0MmI5ZTIyZDZjMGUwMTM4NzgyNTQxZWNlNmVjY2Q5MTNkZmIyMzIzZmMzZDEzNGNjNGMyYjY5ZWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805a"), + "name" : "Sony WI-C300 Wireless Earphone, Black", + "description" : "Sony WI-C300 Wireless Earphone, Black", + "price" : "50", + "sku" : "Sony WI-C300 Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WI-C300-Headphones-and-Headsets-491378321-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjg2M3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDYyLzg5MjIzNDU1Mzc1NjYuanBnfDMyMGE0M2EzNzFkNTQ3OTQxNTQwOTI4ODM3ZDc0YjAwNjliNjI3NGFhNWY5ODQzNjQ2NTliM2Q3YTZlMTM4NmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Micro-USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm neodymium drivers for dynamic sound
  • \n
  • Comfortable behind-the-neck style
  • \n
  • Smartphone compatible with hands-free calling
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805b"), + "name" : "JBL T450 Wired Headphone, Black", + "description" : "JBL T450 Wired Headphone, Black", + "price" : "37", + "sku" : "JBL T450 Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450-Wired-Headphone-Black-491315267-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTE2fGltYWdlL2pwZWd8aW1hZ2VzL2g3ZS9oYTcvODk2NDI4ODQ0NjQ5NC5qcGd8YTRkZWU0ZTU3ZjVlNGRmMDdhYmJiMzEyNDZkYjE0NGUzMmUwNWMyOTQ0ZmQ5MGExZTQ5NDNmMDUwZDJiMzJhYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805c"), + "name" : "JBL T450 Wired Headphone, Blue", + "description" : "JBL T450 Wired Headphone, Blue", + "price" : "37", + "sku" : "JBL T450 Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450-Headphones-and-Headstes-491315268-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTMzOHxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaGI2Lzg5MDQyMjQwNDcxMzQuanBnfGFkOGU5ZjIwNjI1OTdkMTEyYjQ0YWZlMDdiYWU1ZTM5MjFlMjYyZTk5Y2Q5NjgwYTNhM2RlMzgwYWI3ODM4YmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T450ABLU" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Warning card" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805d"), + "name" : "Sony MDR-XB650BT Wireless Headphone, Blue", + "description" : "Sony MDR-XB650BT Wireless Headphone, Blue", + "price" : "116", + "sku" : "Sony MDR-XB650BT Wireless Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/4d2fc195-ed3b-43c2-a5c1-6205b8526fb2-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDQwOHxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDc4Lzg4MDUwMDgxNDY0NjIuanBnfDc2OTAzN2RmODVhNDU4YWM4M2M4OWY1ZWU2NWE1NTg2NTYzM2FhZTU2Yzk0NTQ4Y2FmOWIwMjg4NzlkYjQwNjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "30 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB650BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Warranty card
  • USB Cable (50cm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium dynamic drivers deliver precise sound
  • NFC One-touch for instant connectivity
  • Extra Bass for deep" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "95" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805e"), + "name" : "JBL E25BT Wireless Earphone, Red", + "description" : "JBL E25BT Wireless Earphone, Red", + "price" : "51", + "sku" : "JBL E25BT Wireless Earphone, Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E25BT-Headphones-and-Headsets-491377973-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjIxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaDUzLzg5MjIzMjQ1NjYwNDYuanBnfGU2MTE5ZWZhMTZhZmEyNGQ3ZmZhNGY4M2Q2MzEwYzA2MjlkODVhNTQwNjQ4ZWYzMjIwMDVjYmIwZjVhYmUxNGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "E25BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805f"), + "name" : "Reconnect Leap RAWEB1004 Wireless Earphone, Grey", + "description" : "Reconnect Leap RAWEB1004 Wireless Earphone, Grey", + "price" : "44", + "sku" : "Reconnect Leap RAWEB1004 Wireless Earphone, Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Wireless-Earphone-RAWEB1004-491430963-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTAxOXxpbWFnZS9qcGVnfGltYWdlcy9oODIvaGVhLzkwODgzNTM5NTk5NjYuanBnfDk5OGMyZWNkZTMyOGFkNjZkZDdjNGE3ZWY3ZTA0MjZkMmRhOThiMDQzMDhhOGFkMmNiYzc3NWMzY2IzNDBhM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "Up to 2" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "150" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Model", + "attributeValue" : "Leap RAWEB1004" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Vibrating call Alert
  • \n
  • Tangle Free Flat Earphone Cables
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638060"), + "name" : "JBL E25BT Wireless Earphone, Black", + "description" : "JBL E25BT Wireless Earphone, Black", + "price" : "51", + "sku" : "JBL E25BT Wireless Earphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE25BTBLK-Headphones-and-Headstes-491377971-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTM2NXxpbWFnZS9qcGVnfGltYWdlcy9oM2QvaGEwLzg5MDQyMzc2Nzg2MjIuanBnfGI3ZmY1ZGFiYmY2YjMwMWEzYWI3Y2ZjNTAwMWVkZjZiZTMxOGNiYTBiMmNkMzgwNGQ1ZWVjYTAwOWM1YTE3NWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLE25BTBLK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638061"), + "name" : "Sennheiser CX 275s Wired Headphone, Black", + "description" : "Sennheiser CX 275s Wired Headphone, Black", + "price" : "29", + "sku" : "Sennheiser CX 275s Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-275s-Wired-Headphone-Black-491115960-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzY2MnxpbWFnZS9wbmd8aW1hZ2VzL2hiMy9oMmIvODkyNzgzMzgxNzExOC5wbmd8MTljMDI5OWRmMmViYzgxYTI1MzBkZWNkZTk2YTZlODAyMTgwNjFlNjFmODk4Zjk3ODI1MDY1MDhmMDY4MDQyZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 275s" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "-44" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adaptor
  • Ear adaptor sets
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Fits All
  • Signature Sennheiser sound
  • Premium comfort
  • Intuitive design
  • Ease of use
  • Convenience at its best
  • Peace of mind
  • " + } + ], + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638062"), + "name" : "Skullcandy Smokin Buds2 Wired Headphone, Black Red", + "description" : "Skullcandy Smokin Buds2 Wired Headphone, Black Red", + "price" : "29", + "sku" : "Skullcandy Smokin Buds2 Wired Headphone, Black Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds2-Wired-Headphone-Black-Red-491159047-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTg3NHxpbWFnZS9wbmd8aW1hZ2VzL2g1YS9oNDgvODkyNzgzNzI5MDUyNi5wbmd8NTZkZWRiOTQ4YmUyMDZlZDA1OGNkMjNkNmQwZDcxMDhkNTg5YTE0MjVjMGZhYmRkODhiOWViNTEyNjFiZTNkNg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound
  • Mic 1 + Remote
  • Off Axis Technology
  • Flat Cable
  • Silicone Gel Tips
  • In-Ear
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638063"), + "name" : "Skullcandy Stim On Ear Wired Headphone, Black", + "description" : "Skullcandy Stim On Ear Wired Headphone, Black", + "price" : "29", + "sku" : "Skullcandy Stim On Ear Wired Headphone, Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Stim-On-Ear-Wired-Headphone-Black-491336161-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OXxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDdmLzg4NzcxODI3MTM4ODYuanBnfDgxMGY1MDkxODY2YzllMjllNTE3ZmRmZjIzYmE5ZTlhMzRjYjljNTA1MTM5ODY1MTA2NDcyY2EyNTE1MGM4MTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Stim" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638064"), + "name" : "Skullcandy Stim On Ear Wired Headphone, Blue", + "description" : "Skullcandy Stim On Ear Wired Headphone, Blue", + "price" : "29", + "sku" : "Skullcandy Stim On Ear Wired Headphone, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Stim-On-Ear-Wired-Headphone-Blue-491336159-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI4MHxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDcxLzg5Mjc3MTM2MjQwOTQuanBnfDYwN2JmZmRmYmVhZjRlYzJlZTFkMDllYjAwZTI5MTE1YzI3YTc0NWM5NzMzMjFlNzM1MTk4ZDBlOWI1MGIwOGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Stim" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638065"), + "name" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Chrome", + "description" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Chrome", + "price" : "77", + "sku" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds-2-Wireless-Earphone-Black-Chrome-491315293-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODkwN3xpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDE2Lzg5Mjc3NTgzMTk2NDYuanBnfDYwODgxZWVmN2VjMzVlZDA3NDk4MzVkNDk1ZTg5OThmZGE1OWMzZDJiMjAzMzI5NDI4ZjEwYjkwNTAxNGNhMDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Customizable fit with lightweight and fully removable collar
  • Call" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638066"), + "name" : "Apple MRXJ2HN/A Wireless Airpods with Wireless Charging Case, White", + "description" : "Apple MRXJ2HN/A Wireless Airpods with Wireless Charging Case, White", + "price" : "274", + "sku" : "Apple MRXJ2HN/A Wireless Airpods with Wireless Charging Case, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Airpods-BTStereo-WL-CC-491431362-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTExOHxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaDRlLzkxMjg1Mzk4NDg3MzQuanBnfGQ2OTM0Y2VmYjc1YTZjZTczNGFhNzM4Njk4ZGEzMmFhNzVhMjhkZGFiZWFjMDUwOGVhYzYxZTQ5YTlmNjU5M2U", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Up To 24 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MRXJ2HN/A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638067"), + "name" : "Sony PS41TBSLIM PlayStation 4, 1TB Slim with Bloodborne DualShock 4", + "description" : "Sony PS41TBSLIM PlayStation 4, 1TB Slim with Bloodborne DualShock 4", + "price" : "488", + "sku" : "Sony PS41TBSLIM PlayStation 4, 1TB Slim with Bloodborne DualShock 4", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PS41TBSLIM-Gaming-Console-491431281-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzYwfGltYWdlL2pwZWd8aW1hZ2VzL2hjNC9oNmYvOTEyMzU1OTczNTMyNi5qcGd8NzZlNzU2OWExMWEwOGY3MjI5MTkwZTFmMjc3ZjdmYzE1ZGE1ZmVlY2U5MTUzM2RhOGM1ZmM5MmVhN2U3OGQ3Ng", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Processor", + "attributeValue" : "
  • CPU : x86-64 AMD “Jaguar”" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Controllers", + "attributeValue" : "DUALSHOCK4 Wireless Black Controller" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "PS41TBSLIM" + }, + { + "attributeName" : "Console Type", + "attributeValue" : "PlayStation 4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "165" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240V" + }, + { + "attributeName" : "Width", + "attributeValue" : "26.5" + }, + { + "attributeName" : "Length", + "attributeValue" : "28.8" + }, + { + "attributeName" : "Height", + "attributeValue" : "3.9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638068"), + "name" : "Sony PS4 Slim 1TB Console (Red Dead Redemption II)", + "description" : "Sony PS4 Slim 1TB Console (Red Dead Redemption II)", + "price" : "488", + "sku" : "Sony PS4 Slim 1TB Console (Red Dead Redemption II)", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PS4-1TB-RDR-II-Gaming-Consoles-491431164-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjcxfGltYWdlL2pwZWd8aW1hZ2VzL2g1Ny9oNGQvOTA3MzI4NDkwNzAzOC5qcGd8Y2YzNDA0NzJiNDkzNWUzNTM1YTkwNTY1ZjQ1YjgzYzI0NmExOGVmN2FhYjE1YmY4N2NmYTY1ZTUyMjc3MmY4MQ", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Internal Storage", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Console Type", + "attributeValue" : "PlayStation 4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638069"), + "name" : "Logitech G402 Hyperion Fury Ultra-Fast FPS Gaming Mouse", + "description" : "Logitech G402 Hyperion Fury Ultra-Fast FPS Gaming Mouse", + "price" : "42", + "sku" : "Logitech G402 Hyperion Fury Ultra-Fast FPS Gaming Mouse", + "imageUrl" : "https://www.reliancedigital.in/medias/2d798983-48c4-4915-8901-e65607686298-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzY5OHxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaDQ2Lzg4MDQ5ODY2NTA2NTQuanBnfDFhOGI5ZWNkNzJkMDM2ZjBmOTEyZWYzNTU2OTZjZWIyODc2YmE2YWNhN2Q2MjAxOWUzNWQ3ZDg3Y2Y3OGZhMzk", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "G402 Hyperion Fury" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Gaming" + }, + { + "attributeName" : "Interface", + "attributeValue" : "USB" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Fusion Engine hybrid sensor
  • 8 programmable buttons
  • On-the-fly DPI Switching
  • 32-bit ARM processor
  • 1 millisecond report
  • High-speed clicking
  • Full-speed USB
  • 20 million clicks
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "13.6" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Depth", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "144" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • User documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "manufacturer" : "Logitech", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806a"), + "name" : "Sphero Mini App Enabled Robot Ball, Blue", + "description" : "Sphero Mini App Enabled Robot Ball, Blue", + "price" : "87", + "sku" : "Sphero Mini App Enabled Robot Ball, Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430875-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTM4MXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDc2LzkwMzkxMTc1ODIzNjYuanBnfGZmYzliYTY2Yjk2YWQxMTc2YjI2ZTJiYTgwNzkzZjI0MGU0NmQzZDk5YTAzYzY4YjYyOTJkMmEyYWY1ZDcxNmI", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806b"), + "name" : "Sphero Mini App Enabled Robot Ball, Green", + "description" : "Sphero Mini App Enabled Robot Ball, Green", + "price" : "87", + "sku" : "Sphero Mini App Enabled Robot Ball, Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430872-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODEzfGltYWdlL2pwZWd8aW1hZ2VzL2g1Zi9oOTYvOTAzOTExMTAyODc2Ni5qcGd8YTc2NGExMGQxNTllZTY5YTVjYjA3NzEwMmRkZjMyMzgwMWUyZDcyMWIzNTc1ZWRjMTUyOTJkMzAzNDBkYWNlMA", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806c"), + "name" : "Sphero Mini App Enabled Robot Ball, Orange", + "description" : "Sphero Mini App Enabled Robot Ball, Orange", + "price" : "87", + "sku" : "Sphero Mini App Enabled Robot Ball, Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430873-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTExNHxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDE0LzkwMzkxMTA3MDEwODYuanBnfDdhMmE1MGI0ODkwMzY4NjBmZGRlOWI1NmEwMWMzMjM1MWFlMjY0MWM4NWI3NDExYWEzYzM0NjViYjA3YmVlMGY", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806d"), + "name" : "Sphero Mini App Enabled Robot Ball, White", + "description" : "Sphero Mini App Enabled Robot Ball, White", + "price" : "87", + "sku" : "Sphero Mini App Enabled Robot Ball, White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430874-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzA2fGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oYWEvOTAzOTEyMDkyNDcwMi5qcGd8NGI1YTI2Njc5NjE1NDMzNWQ3MmU4ZjViYzI4YjRmYTY1ZjVkMDVmYTYxMzEwZmU4ODBlNTlmYTlhM2IzNzkxYw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806e"), + "name" : "Sphero Mini App Enabled Robot Ball, Pink", + "description" : "Sphero Mini App Enabled Robot Ball, Pink", + "price" : "87", + "sku" : "Sphero Mini App Enabled Robot Ball, Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430876-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTE5NnxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGM5LzkwMzkxMTY0MDI3MTguanBnfGNlNTBhOGI5ZjE4NTMxYzZhODgzOTk4MjEzOGEyN2VhODVlNDNkODAxZjQwOTZjZmNkZjkyNzYzMjU4MThlY2U", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806f"), + "name" : "Sony PS4 Dual Shock Black Playstation Accessories for Play station games", + "description" : "Sony PS4 Dual Shock Black Playstation Accessories for Play station games", + "price" : "73", + "sku" : "Sony PS4 Dual Shock Black Playstation Accessories for Play station games", + "imageUrl" : "https://www.reliancedigital.in/medias/491073072-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE2MHxpbWFnZS9wbmd8aW1hZ2VzL2hkOC9oOWIvODkzMjc1Njc1MDM2Ni5wbmd8OWZhYTAyM2QyNTMwNjRlMzY5N2E1MGU4MGIxNWE5NDg0MWI5NmZjZWY4ZGU5YjNlNzk3Y2FiNmEzZDBmNDY2YQ", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "PS4 Dual Shock Black" + }, + { + "attributeName" : "Product Type", + "attributeValue" : "Playstation Accessories" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "PS4" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "for Play station games" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "USB" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • New multi-touch and touch pad opens up new gameplay possibilities

  • LEDs create a rainbow of colours that work with the PlayStation Camera.

  • Built-in speaker and stereo headset jack.
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "5.7" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Depth", + "attributeValue" : "10" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "210" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless controller
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638070"), + "name" : "Amkette Evo Gamepad Pro Console", + "description" : "Amkette Evo Gamepad Pro Console", + "price" : "41", + "sku" : "Amkette Evo Gamepad Pro Console", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Evo-Gamepad-Pro-Console-491229095-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDc2N3xpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGQ4Lzg5MzA4NzkwNzg0MzAuanBnfDkzMWI5YjAzNWYxODkxMDY3NGYxOWFmMmRmMDAxZWJkMDE3OGE1YjE2MmFhMzNmZmI5NTE1OTljNjQ5ODhmZDc", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Evo Gamepad Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 400 mAh Rechargeable Li-Polymer Battery
  • Operating Range - 5 m
  • 2 Bumper Buttons" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Tablet Stand
  • Micro USB Charging Cable
  • Quick Start Guide
  • App Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638071"), + "name" : "Amkette Evo Gamepad Pro2 Console", + "description" : "Amkette Evo Gamepad Pro2 Console", + "price" : "41", + "sku" : "Amkette Evo Gamepad Pro2 Console", + "imageUrl" : "https://www.reliancedigital.in/medias/491276898-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzE3MHxpbWFnZS9wbmd8aW1hZ2VzL2hhNi9oNmQvODkzMDg2ODA2ODM4Mi5wbmd8NmZiNTc2NTgyZmFlNjJiNjIzMThlOGIxNjQ3ZGYzNzNiMTMzMjk2YjVmNTYzNjY4MzZlY2U0YTgyZGZjMmU5Mg", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Evo Gamepad Pro2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Android operating system
  • 400 mAh Rechargeable Li-Polymer Battery
  • 10 m operating range
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Tablet Stand
  • Micro USB Charging Cable
  • Quick Start Guide
  • App Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638072"), + "name" : "Sony E1004/B PSP Console", + "description" : "Sony E1004/B PSP Console", + "price" : "102", + "sku" : "Sony E1004/B PSP Console", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-E1004-B-PSP-Console-490917675-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM1OHxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oYmEvODkzMDgxMzM0NTgyMi5wbmd8YzlmZjJiZTMyZmFkZGJhNzZjMDA3MDEwZTAzMzlhMWMzNjNlNDhmZTFlNWI0MzhjYzRlMmQ2MTNjMmYwNTI1Mw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E1004/B" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Stereo speakers
  • 4.3\" LCD TFT Screen
  • 16" + }, + { + "attributeName" : "Height", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Depth", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "17" + }, + { + "attributeName" : "Weight", + "attributeValue" : "280" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • AC Power Cord
  • AC Adaptor
  • Battery
  • Guide Book
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638073"), + "name" : "Sony PS3 Medieval Move Playstation Accessories for Play station games", + "description" : "Sony PS3 Medieval Move Playstation Accessories for Play station games", + "price" : "37", + "sku" : "Sony PS3 Medieval Move Playstation Accessories for Play station games", + "imageUrl" : "https://www.reliancedigital.in/medias/490767098-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQyMnxpbWFnZS9wbmd8aW1hZ2VzL2g5ZS9oNTcvODkzMjc1NDU4NzY3OC5wbmd8MWEwYmZiZTAwM2E4NDliMTI2YjMxYjhiNzVjYmZmYWUyZWNmZTI1ZGI5NTI4MDNlOGNjNTZkN2MzMzQ0YWIxYw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "PS3 Medieval Move" + }, + { + "attributeName" : "Product Type", + "attributeValue" : "Playstation Accessories" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "for Play station games" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • PlayStation 3 320GB x 1

  • PlayStation Dualshock Controller

  • PlayStation Move Motion Controller

  • PlayStation Eye

  • Medieval Move Game
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638074"), + "name" : "Sony PlayStation 4 Console, 500 GB", + "description" : "Sony PlayStation 4 Console, 500 GB", + "price" : "479", + "sku" : "Sony PlayStation 4 Console, 500 GB", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PlayStation-4-Console-500-GB-491073071-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzY3N3xpbWFnZS9wbmd8aW1hZ2VzL2g4Zi9oZjkvODkzMDgzNDY0NTAyMi5wbmd8ODI5ZjRlZDk3ZTYyMTVjMjViNmI4ZGZmMjZiZjhlMDI2ZmI2ODUzOGNmODNmZjk4YzA3NTdjYzFkNjg2MzQxYg", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Processor", + "attributeValue" : "x86-64 AMD Jaguar" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "500 GB" + }, + { + "attributeName" : "Controllers", + "attributeValue" : "DUALSHOCK 4" + }, + { + "attributeName" : "Controller Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Motion Gaming", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 3.0" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Console Type", + "attributeValue" : "PlayStation 4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "250" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240V" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ultra-fast customized processors
  • 8 GB of high-performance unified system memory
  • " + }, + { + "attributeName" : "Width", + "attributeValue" : "27.5" + }, + { + "attributeName" : "Length", + "attributeValue" : "30.5" + }, + { + "attributeName" : "Height", + "attributeValue" : "5.3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2800" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Controller Dualshock 4
  • Mono headset x 1
  • AC Power Cord x 1
  • HDMI Cable x 1
  • USB Cable x 1
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638075"), + "name" : "Sony PS4 VR with Camera Bundle", + "description" : "Sony PS4 VR with Camera Bundle", + "price" : "450", + "sku" : "Sony PS4 VR with Camera Bundle", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PS4-VR-with-Camera-Bundle-491320396-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTkyNnxpbWFnZS9qcGVnfGltYWdlcy9oODQvaGZiLzg5Mjk1Mzk3ODQ3MzQuanBnfDVlYzQ3ZTQyZDI4MTI0YTM4MDAzNGZiZGE2OTg3OGM1MTIwNThlOGU5YjQzZTllNjAwMjI2NGM2YWI5NTAwMWM", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Width", + "attributeValue" : "18.7" + }, + { + "attributeName" : "Length", + "attributeValue" : "27.7" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "610" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638076"), + "name" : "Sphero Spider-Man App Enabled Droid", + "description" : "Sphero Spider-Man App Enabled Droid", + "price" : "290", + "sku" : "Sphero Spider-Man App Enabled Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-SPIDER-MAN-Gaming-Accessories-491430880-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDY0MnxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDc4LzkwMzg4NDg1NTcwODYuanBnfDMxNjcxZDM5OWJhM2Y3ZDA4YTU3Yzk2MTIzZTM1NDBlYjkwMjA4YjQyOTU5YWVmNGM0ZWM1YWM0YjcwYTFiN2Q", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Spider-Man" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "3D Accelerometer" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wise-crackin’ Spidey - Talk to Spidey using a variety of phrases. But be \n\nwarned - he’s quite the jokester!
  • \n
  • Super Smarts - Earn Spider-Man's trust by working together to defeat \n\nbaddies.
  • \n
  • Team Up - Go on missions & battle villains. Every decision influences \n\nthe adventure.
  • \n
  • Emotive Eyes - Spidey’s LCD eyes express his every thought and \n\nemotion.
  • \n
  • Spider-Sense - Spidey's built-in IR sensor allows him to detect and react \n\nto movement.
  • \n
  • Ultimate Experience - Spidey’s web connection allows you to get content \n\nupdates.\n
  • Create an alter ego - Create your Super Hero identity and keep tabs on \n\nyour accomplishments.
  • \n
  • Write your story - Every decision creates a new path forward" + }, + { + "attributeName" : "Height", + "attributeValue" : "21.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Weight", + "attributeValue" : "680" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Base" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638077"), + "name" : "Sphero BB-9E App Enabled Droid", + "description" : "Sphero BB-9E App Enabled Droid", + "price" : "247", + "sku" : "Sphero BB-9E App Enabled Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-BB9E-Gaming-Accessories-491430871-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDQxfGltYWdlL2pwZWd8aW1hZ2VzL2gzMC9oOGIvOTAzOTExMjY2NzE2Ni5qcGd8OWMyMjkwZWEwMzBiMDhiMGVhNDczZWExZWUwMTk5OTVlYTY4MDU2OTVjNzUzMGQ1MWNlOWE2MjRjNDM0MTU5Nw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "BB-9E" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Over 1 hour of play on a full charge
  • \n
  • iOS & Android compatible
  • \n
  • Durable plastic shell
  • \n
  • 3D Accelerometer
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "9" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Weight", + "attributeValue" : "223" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638078"), + "name" : "Sphero Darkside App Enabled Robot", + "description" : "Sphero Darkside App Enabled Robot", + "price" : "174", + "sku" : "Sphero Darkside App Enabled Robot", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-OLLIE-DARK-Gaming-Accessories-491430877-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQzN3xpbWFnZS9qcGVnfGltYWdlcy9oMzEvaGI4LzkwMzkxMjI4OTA3ODIuanBnfDE3MjY5YWE4MGIyZDhiY2YxNDE1OTZkYjJlMzBjMDc1ZGQ1M2Q5OTZjNTM4NmJkYTZhNTI0NGI4NDQ4M2Q5MDA", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Darkside" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Durable polycarbonate body
  • \n
  • LED glow with customizable color settings
  • \n
  • Automatic firmware updates
  • " + }, + { + "attributeName" : "Length", + "attributeValue" : "8.12" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "2 Nubby Tires " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Rolling Speeds", + "attributeValue" : "14 mph" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638079"), + "name" : "Sphero SPRK+ Educational Robot", + "description" : "Sphero SPRK+ Educational Robot", + "price" : "218", + "sku" : "Sphero SPRK+ Educational Robot", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-SPRK-Gaming-Accessories-491430881-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Mjc3fGltYWdlL2pwZWd8aW1hZ2VzL2hkNC9oYWEvOTAzOTEyMTkwNzc0Mi5qcGd8YTQzZmRhODg3ZTliOWQwZDc1ODVhNTY5MjkyODFmZjJiNGQxOWYwMjE2ZTc4OTYyODAzNzUwZWY4NTRkZmNmYw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SPRK+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Inductive charging base with USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rolling Speeds", + "attributeValue" : "4.5 mph" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863807a"), + "name" : "Sphero R2-D2 App Enabled Droid", + "description" : "Sphero R2-D2 App Enabled Droid", + "price" : "247", + "sku" : "Sphero R2-D2 App Enabled Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-R2D2-Gaming-Accessories-491430879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjY0fGltYWdlL2pwZWd8aW1hZ2VzL2g0My9oZDkvOTAzOTExODU2NTQwNi5qcGd8NzdkNjdiN2FjYzM3YTMwMGJhN2E5MjgxYmJmYjU3MjM3MWVkMzQ5M2ZjNDU3YzU3YThkOWM5YmMwN2EwNzA5ZA", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "R2-D2" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "3D Accelerometer" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS & Android compatible
  • \n
  • Durable plastic shell
  • \n
  • 3D Accelerometer
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "17" + }, + { + "attributeName" : "Width", + "attributeValue" : "10.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "370" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863807b"), + "name" : "Sphero BB-8 App Enabled Droid", + "description" : "Sphero BB-8 App Enabled Droid", + "price" : "211", + "sku" : "Sphero BB-8 App Enabled Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-BB8-Gaming-Accessories-491430870-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTM2fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oYTUvOTAzOTExNDM3MTEwMi5qcGd8MjMzN2ZjYjk4OGMyMjFhZDVkZDJmZTAwNGM4NmFhOTM2MzEzNTMwOWYyNzRlZTU1MDJjOGFlY2VkMTlhNzU4MQ", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "BB-8" + }, + { + "attributeName" : "Product Type", + "attributeValue" : "App Enabled Droid" + }, + { + "attributeName" : "Accessory Type", + "attributeValue" : "App Enabled Droid" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Top speed of 4.5 mph (7ft/s)
  • \n
  • Durable plastic shell
  • \n
  • LED Lights
  • \n
  • Bluetooth connection (100 foot range)
  • Inductive charging (over 1 hour of play on a full charge)
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "11.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Rolling Speeds", + "attributeValue" : "4.5 mph" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product", + "quantity" : 100.0 +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Product.json b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Product.json new file mode 100644 index 000000000..344f11df8 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/Product.json @@ -0,0 +1,194136 @@ +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad2"), + "name" : "Fossil Q Wander FTW2102P Gen 2 Smart Watch, Light Brown", + "description" : "Fossil Q Wander FTW2102P Gen 2 Smart Watch, Light Brown", + "price" : "276", + "sku" : "Fossil-Q-Wander-FTW2102P-Gen-2-Smart-Watch,-Light-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2102-Smart-Watches-491362948-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI1MHxpbWFnZS9qcGVnfGltYWdlcy9oMWYvaGFlLzg4OTQ3MDkwMzkxMzQuanBnfGU4YWI1YTkyMGJiNTQ1MTY4NzcyMzQ5ZjhmNzYyNmNlODAyNGRjZGQ0MWE4N2YyNTI3ZTM2MzM1NGIyZTk4OGQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2102P" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Light Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad3"), + "name" : "Fossil Q Activist FTW1206P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Activist FTW1206P Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil-Q-Activist-FTW1206P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1206-Smart-Watches-491363004-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI4OXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaGJiLzg4OTQ2NTg4Mzg1NTguanBnfDNjMjA3YTc4YTZlMjhmMDU1ZThhZDViNDNhNzBjM2MzN2ZkMzFmODA4MWRkMmY4MDlhNDkwNzMyZDc2OTEzNTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Activist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1206P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad4"), + "name" : "Fossil Q Activist FTW1207 Hybrid Smart Watch, Gunmetal", + "description" : "Fossil Q Activist FTW1207 Hybrid Smart Watch, Gunmetal", + "price" : "211", + "sku" : "Fossil-Q-Activist-FTW1207-Hybrid-Smart-Watch,-Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1207-Smart-Watches-491363005-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzMzN3xpbWFnZS9qcGVnfGltYWdlcy9oODMvaGJhLzg4OTQ2NDUxNDE1MzQuanBnfDJiNjYyYTI4YTM4MTk0OGZmMjZkMWFmYTk5ZmE4YjcwYTM4ZDEyNDE1MmMzOGZlODIwNjlkYzlmMDQ5ZDA0NDU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Activist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1207" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad5"), + "name" : "FOSSIL FTW4002P Q Explorist Gen 3 Smart Watch, Blue", + "description" : "FOSSIL FTW4002P Q Explorist Gen 3 Smart Watch, Blue", + "price" : "290", + "sku" : "FOSSIL-FTW4002P-Q-Explorist-Gen-3-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4002P-Q-Explorist-Gen-3-Smart-Watch-Blue-491363009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjYzMXxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDI4Lzg4NzQ3MTk2NDE2MzAuanBnfGExZjAyZjU1YmMwN2I4ZTQ5ZDRkZmJmZGVmNzFkMjExMmFkMWZlODcwNTU1NjY5Y2Q4Yjk3ODliNTVjNDM5ZGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4002P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad6"), + "name" : "FOSSIL FTW4003P Q Explorist Gen 3 Smart Watch, Brown", + "description" : "FOSSIL FTW4003P Q Explorist Gen 3 Smart Watch, Brown", + "price" : "290", + "sku" : "FOSSIL-FTW4003P-Q-Explorist-Gen-3-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4003P-Q-Explorist-Gen-3-Smart-Watch-Brown-491363010-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5MXxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaDMwLzg4NzQ3MTg5ODYyNzAuanBnfGNjMjU0OTMyNGU0N2Q3ZDRkMGM4MTY4OThiMjU2ODQyYzRlYzkxOGUzNjdkNjc3NGJjOTEwYTJiYzFkZjg2NGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4003P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad7"), + "name" : "FOSSIL FTW6003 Q Venture Smart Watch, Silver", + "description" : "FOSSIL FTW6003 Q Venture Smart Watch, Silver", + "price" : "319", + "sku" : "FOSSIL-FTW6003-Q-Venture-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6003-Smart-Watches-491363012-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEwOHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaDI3Lzg4ODMxODA4MzA3NTAuanBnfGIyMWZlNWU2YjVhYTYwZDFjMzU0MjkxZTY0NTljNWM0MWFlMjdkYWEwODU5YzBlOWMxMzI1NGE1ZmFhZTVmMWE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6003" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "120 min" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad8"), + "name" : "FOSSIL FTW6005P Q Venture Gen 3 Smart Watch, Beige", + "description" : "FOSSIL FTW6005P Q Venture Gen 3 Smart Watch, Beige", + "price" : "290", + "sku" : "FOSSIL-FTW6005P-Q-Venture-Gen-3-Smart-Watch,-Beige", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6005-Smart-Watches-491363016-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODEzMHxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDFmLzg4ODMxODIxNDE0NzAuanBnfGY1ODQwZmEwZGM2MmFmYTkxNTQyZDAxMmMwNzZjYzU3MDQxMGI1YzkwNTE4MzQyOWE3MWU4MDhlOTY1Zjg1ODY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6005P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Beige" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ad9"), + "name" : "FOSSIL FTW6007P Q Venture Gen 3 Smart Watch, Brown", + "description" : "FOSSIL FTW6007P Q Venture Gen 3 Smart Watch, Brown", + "price" : "290", + "sku" : "FOSSIL-FTW6007P-Q-Venture-Gen-3-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW6007P-Q-Venture-Gen-3-Smart-Watch-Brown-491363018-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzQ3NnxpbWFnZS9qcGVnfGltYWdlcy9oZDYvaGU3Lzg4NzQ3MTUzODE3OTAuanBnfDNkZDQ0MjYwY2JiZjNiYWNhZDQyYzEzZjNiYmUyYzgzZTNmM2JhNmFiMDgxNWE5NDI1ZmM1MGI5MGUyMWJlNmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6007P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ada"), + "name" : "FOSSIL FTW6008P Q Venture Gen 3 Smart Watch, Rose Gold", + "description" : "FOSSIL FTW6008P Q Venture Gen 3 Smart Watch, Rose Gold", + "price" : "319", + "sku" : "FOSSIL-FTW6008P-Q-Venture-Gen-3-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW6008P-Q-Venture-Gen-3-Smart-Watch-Rose-Gold-491363019-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODc0NHxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDJhLzg4NzQ3MTc2NzU1NTAuanBnfGEzY2Q5ZDRmN2U3ZWU4NDM5OTYwNDZkMWY0ZDU0OTZiZmFkMzVmNjQzODExMDIzOWQzOTU3ZmE1Nzk4NjhjMjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6008P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hour" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637adb"), + "name" : "Fitbit Ionic FB503GYBK Smart Watch, Charcoal & Smoke Grey", + "description" : "Fitbit Ionic FB503GYBK Smart Watch, Charcoal & Smoke Grey", + "price" : "363", + "sku" : "Fitbit-Ionic-FB503GYBK-Smart-Watch,-Charcoal-&-Smoke-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB503GYBK-Smart-Watches-491378201-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODA1NXxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDNiLzg5ODE2Mjc4MzAzMDIuanBnfDU5ODUwY2ZjZjFmOGVlODgwZTNkNjA4NmRhMTMzNWZhNmU1Y2MzMDkxYTM0ZmU0Yzk5OTFiMGIyNThmMTdkNTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Ionic" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB503GYBK" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "304" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Charcoal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Smoke Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5 days" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Small and large bands" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fitbit", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637adc"), + "name" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "price" : "637", + "sku" : "Apple-Watch-Series-4-GPS---44-mm-Gold-Aluminum-Case-with-Pink-Sand-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmG-AL-Cs-P-S-S-LP-GPS-491488346-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk2NnxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaDAwLzkwNTA2NjYzMDM1MTguanBnfDg2NzJjOGI3MjNjN2RkYzNjNjRiOTExNGM0OTQ0NDAzNmNhODBiNTUyZTMzZjU3ZGFhNDQ1Yjc5NWZkMTA4NjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637add"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Black Sport Band", + "price" : "1043", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Space-Black-Stainless-Steel-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SB-SS-Cs-BK-S-Bnd-Cel-491488331-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk3NHxpbWFnZS9qcGVnfGltYWdlcy9oMjkvaDczLzkwNTA2NDk4NTM5ODIuanBnfDQ3YmRhYjczMzQ0NmFiZDE3Y2NkOTZkNTdmYzQ2NzFlMmI3NTI1ZWIyOWExMzg1YjdmZjdkNTg0ZjJhNjEwMjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ade"), + "name" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with White Sport Band", + "price" : "593", + "sku" : "Apple-Watch-Series-4-GPS---40-mm-Silver-Aluminum-Case-with-White-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmSL-AL-Cs-WH-S-Bd-GPS-491488335-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODYzNnxpbWFnZS9qcGVnfGltYWdlcy9oNTgvaDRlLzkwNTA2NTY0NzMxMTguanBnfDBkM2U4OWZjZDY1N2M3ZDk1YmNkNzY2ZDU1YmY2NWZlYWJjYWQ4MzllNTFhM2M4ZWFjZGY1YzA4NjljYzU3NmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637adf"), + "name" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "price" : "637", + "sku" : "Apple-Watch-Series-4-GPS---44-mm-Space-Gray-Aluminum-Case-with-Black-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmSG-AL-Cs-BK-S-LP-GPS-491488344-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTMzMXxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaGI4LzkwNTA2Njc5NDE5MTguanBnfDFkMzJmZDQ2YWFmM2NhMzM2MTU1NDVmYWRkNGFkMWZlMTFhNDRhMGE1ZDdjNTViNzQzNTJlNjNlNTk4YjZlZDI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae0"), + "name" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "593", + "sku" : "Apple-Watch-Series-4-GPS---40-mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488337-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ3NXxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDY3LzkwNDY2NDQ3ODUxODIuanBnfGE5YjAyNTVjMTYzYWE4ZTA4YzZiNmE1ZTk2ZDYzYTE3YmUwZTcyNDMzYzMzNGViZTQ4MjViYWQ3MzcyMWZkMjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae1"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Stone Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Stone Sport Band", + "price" : "1043", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Gold-Stainless-Steel-Case-with-Stone-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-SS-Cs-S-S-Bnd-Cel-491488333-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjUyMXxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDczLzkwNTA2NTE4MjAwNjIuanBnfDFkN2U2NDY1YzMzMTFlM2I5ZGY5ZGQwZWU2OGQwOWQ3ZmJkMmUzNjgzZjZiNjE0ZmFhZGIwNTg5ZjA2MzJiNGU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Stone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae2"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Sport Loop", + "price" : "724", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Space-Gray-Aluminium-Case-with-Black-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SG-AL-Cs-BK-S-LP-Cel-491488314-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzU4M3xpbWFnZS9qcGVnfGltYWdlcy9oODIvaGYyLzkwNTA2MjE5MzU2NDYuanBnfDAzMzEwODRlZjNiNDYxYzM1YzNmNTJhNzdmMDUyOTE3NTYzZDllMGJiYzRhM2U3NTAxZmFhNWY4YjRiMWQwNmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae3"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with Milanese Loop", + "price" : "1115", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Stainless-Steel-Case-with-Milanese-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SS-Cs-MLN-LP-Cel-491488318-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjIyM3xpbWFnZS9qcGVnfGltYWdlcy9oYjQvaGUzLzkwNTA2Mjg4MTY5MjYuanBnfDkyZmE5ZGQ3ODI3NzgyMWI4ODBjZTUxZWI3NmJkMjMwMDY0ZDhlMTRkODMxYzc4YjE1NjE1OWJhNjI0M2I4MjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Milanese" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae4"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Black Sport Band", + "price" : "985", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Space-Black-Stainless-Steel-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SB-SS-Cs-BK-S-Bnd-Cel-491488319-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk3NHxpbWFnZS9qcGVnfGltYWdlcy9oZWQvaDRlLzkwNTA2MjY1MjMxNjYuanBnfGJkNmQyMDllNTQ5MTczYzEwOWFkZjcyMWE5OWQxMWFhODY0MWM3MjY5MDA2MjAwNDI0YmIzYTE5MzJjYmViNzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae5"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with White Sport Band", + "price" : "1043", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Stainless-Steel-Case-with-White-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SS-Cs-WH-S-Bnd-Cel-491488329-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4MHxpbWFnZS9qcGVnfGltYWdlcy9oMTEvaDhiLzkwNTA2NDQ5Mzg3ODIuanBnfDE2NTcwYmNmZjBkZTM5ZjBjMTg3OGVjODBmNTYxM2VmNTNjZDJiMGY1NzUyYzJhNWU2ZWU5OTc0N2U1NTE1OGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae6"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Gold Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Gold Milanese Loop", + "price" : "1115", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Gold-Stainless-Steel-Case-with-Gold-Milanese-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-SS-Cs-G-MLN-LP-Cel-491488322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE3MHxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaDE2LzkwNTA2MzY0MTkxMDIuanBnfDc3OTRmMmQ5MDMwNWViOWIyNTkxYTQ4OGE1ZWE2MmY2YzUyNWJlZWYzYTBiODQzNGE1ZDlkNzU1OGJkNjc4MmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae7"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Stone Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Stainless Steel Case with Stone Sport Band", + "price" : "985", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Gold-Stainless-Steel-Case-with-Stone-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-SS-Cs-S-S-Bnd-Cel-491488321-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjUyMXxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaDA4LzkwNTA2MzUwNDI4NDYuanBnfDc1YTIwYzQ0MzQzMmVmMGMxNjU5OWJlN2EyNTU5YzYzZjFiYmJmZTNkMGY1NGViOGIyNzg1ZTNlZDE1MDI1MjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Stone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae8"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "price" : "1115", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Space-Black-Stainless-Steel-Case-with-Space-Black-Milanese-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SB-SS-CsSB-MLN-LP-Cel-491488320-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzc3MXxpbWFnZS9qcGVnfGltYWdlcy9oNTIvaGZmLzkwNTA2MzE3NjYwNDYuanBnfDBiYTNlYjg3MzI0NzUzZmYwZjA3ZjY0NzgyOTk4ZWQyYjk3N2IzMTgwYjdiMTNjOGY3ZDQxM2Y1NzE0ZTNhY2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Space Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ae9"), + "name" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS - 40 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "593", + "sku" : "Apple-Watch-Series-4-GPS---40-mm-Silver-Aluminum-Case-with-Seashell-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmSL-AL-Cs-SS-S-LP-GPS-491488336-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTkwM3xpbWFnZS9qcGVnfGltYWdlcy9oOGMvaGU5LzkwNTA2NTE0OTIzODIuanBnfDhmZjYwNTliY2I4ODI4MjVmODhlYjVkN2MzYzI2Y2IzZmI0OTRmMGUzYjc1ZDYzZjVkOWEyYjMwNWE2MjM0NTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aea"), + "name" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS - 44 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "637", + "sku" : "Apple-Watch-Series-4-GPS---44-mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488343-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ3NXxpbWFnZS9qcGVnfGltYWdlcy9oMjkvaDcwLzkwNDY2NDUxMTI4NjIuanBnfGM2MzdhOGFjMmJkYTIxY2U2ZjllM2M5OTQ1Mjg2NWM0NjYyNDkzNmM1OTg1MTNlOWI3MDAwOWM2NTBhZWZkNzU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aeb"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "724", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---40-mm-Silver-Aluminium-Case-with-Summit-White-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-SW-S-LP-Cel-491488348-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDcyOXxpbWFnZS9qcGVnfGltYWdlcy9oYjAvaGQ4LzkwNTE1MTAzNzQ0MzAuanBnfDEyNmQwZWMzNmZiMDA4MGRlNjkxZDIwZjAxYWJkODg0ZWI2MWVjZDU4NjcyMWIzZTY3NzU1N2YwZjdiMzc2Yjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aec"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Stainless Steel Case with Milanese Loop", + "price" : "1173", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Stainless-Steel-Case-with-Milanese-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SS-Cs-MLN-LP-Cel-491488330-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTE4MnxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaGQzLzkwNTA2NDgyMTU1ODIuanBnfGJkYmMzYmJiNWVjNWIzMjFlYzJkZGU1NzIyMGY3M2YxOTljYmQ0MDFlODQ5NGExYmYwMTI0OGE0ZmRhNWNlODc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Milanese" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aed"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "price" : "767", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Gold-Aluminum-Case-with-Pink-Sand-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-AL-Cs-PS-S-Bnd-Cel-491488327-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjM0MnxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaGM3LzkwNTA2NDMzMDAzODIuanBnfGViMDE0Y2MxMzIyNGU3YTk1ODFjOTBlZjNkZGVlYmJhY2IzNjlhNjI3OTUwNDkxMjE4M2ZmY2Y1ZTBmYjM0ZDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aee"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "724", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488313-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzA5NnxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDA0LzkwNDY2NDU3NjgyMjIuanBnfGFmYTE4NWY4NTJlMDIxMzQwM2ZmYzJkYWU5ZmQyYzRhNzVjNGExNjMwMzliMWVkM2Q1OGFjNjhjOWUwMTk3MzM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aef"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Band", + "price" : "767", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/491488325-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDc1N3xpbWFnZS9qcGVnfGltYWdlcy9oYmUvaGJmLzkwNDY2NDU0NDA1NDIuanBnfDczYTA2YzM0YzU4NmY5MDQyNzAwYmU0MmJlNzBlMWEyMWQ2ZGRhMzQyN2U0ZWVkZGJmNzJhNzM4ZDliMmYyYWY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af0"), + "name" : "Michael Kors Grayson MKT5025 Smart Watch, Silver", + "description" : "Michael Kors Grayson MKT5025 Smart Watch, Silver", + "price" : "377", + "sku" : "Michael-Kors-Grayson-MKT5025-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5025-Smart-Watches-491363047-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Nzc5NHxpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDBmLzg4OTQ3NDU1NDI2ODYuanBnfGNiZjZhNGUzOTQ3MTZlNTkyZTNlOTJiODQ4ZDc4NWEyNWMyMDYyYzJkYTVjM2NhMDcyZGE4NDMyMzU2N2RhYTU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5025" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "47 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af1"), + "name" : "Apple Watch Nike + Series 3 GPS + Cellular - 42 mm Space Gray Aluminum Case with Black/Pure Platinum Nike Sport Loop", + "description" : "Apple Watch Nike + Series 3 GPS + Cellular - 42 mm Space Gray Aluminum Case with Black/Pure Platinum Nike Sport Loop", + "price" : "598", + "sku" : "Apple-Watch-Nike-+-Series-3-GPS-+-Cellular---42-mm-Space-Gray-Aluminum-Case-with-Black-Pure-Platinum-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MQMH2HN-A-Smart-Watches-491378430-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTM2NXxpbWFnZS9qcGVnfGltYWdlcy9oOGUvaDM5Lzg5Nzg1NTkyNzA5NDIuanBnfDM4N2JhY2M1Y2IyYzViNDlmOGNkYmRlNzkzMjFhN2FmZjA5N2NkMjQ2NjczZDU1NTdmMjJiYTA1NzI5NDIxMDY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike +" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "WatchOS 4" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46.4" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wi-Fi (802.11b/g/n 2.4GHz)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nike Sport Band (can be configured for either S/M or M/L length)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af2"), + "name" : "Apple Watch Nike+ - 42mm Silver Aluminum Case with Flat Silver/White Nike Sport Band", + "description" : "Apple Watch Nike+ - 42mm Silver Aluminum Case with Flat Silver/White Nike Sport Band", + "price" : "506", + "sku" : "Apple-Watch-Nike+---42mm-Silver-Aluminum-Case-with-Flat-Silver-White-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-42mm-Silver-Aluminum-Case-with-Flat-Silver-White-Nike-Sport-Band-491277325-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzk0NHxpbWFnZS9qcGVnfGltYWdlcy9oZmYvaDcxLzg5Mjk0MTE0NjUyNDYuanBnfGI4MzY1NjZjNTUzNmFlMmYyNGU2NGZiMmMyZjIyMTczN2ViMDc4NmJmNGNiZDg0ZjMwYzAxODVkNjI1NjkzYjQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "36.4 x 11.4 x 42.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Flat Silver/White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Silver aluminum case
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Silver Aluminum Case
  • Nike Sport Band (can be configured for either S/M or M/L length
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af3"), + "name" : "Apple Watch Nike+ Series 2, 38mm Silver Aluminum Case with Flat Silver/Volt Nike Sport Band", + "description" : "Apple Watch Nike+ Series 2, 38mm Silver Aluminum Case with Flat Silver/Volt Nike Sport Band", + "price" : "477", + "sku" : "Apple-Watch-Nike+-Series-2,-38mm-Silver-Aluminum-Case-with-Flat-Silver-Volt-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-Series-2-38mm-Silver-Aluminum-Case-with-Flat-Silver-Volt-Nike-Sport-Band-491277326-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzMzOXxpbWFnZS9qcGVnfGltYWdlcy9oNDkvaDFhLzg5Mjk0MTQ5Mzg2NTQuanBnfDk2NmZmNjkzODNiOGFjMjNmMTc1ZTI1OTA1ZjZhNzgzZWI2NDdjOWFjYWEwYjVmNzk1N2E4OGM3MWYyNTJjZDg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 2" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "3.86" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.33" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "28.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "33.3 x 11.4 x 38.6 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Flat Silver/Volt" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • S2 dual-core processor
  • Built-in GPS and GLONASS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Silver Aluminum Case
  • Nike Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af4"), + "name" : "GARMIN Forerunner 230 GPS Running Watch, Black/White", + "description" : "GARMIN Forerunner 230 GPS Running Watch, Black/White", + "price" : "363", + "sku" : "GARMIN-Forerunner-230-GPS-Running-Watch,-Black-White", + "imageUrl" : "https://www.reliancedigital.in/medias/GARMIN-Forerunner-230-GPS-Running-Watch-Black-White-491229602-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzE0MXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaGMwLzg5MzMwNzE4NDc0NTQuanBnfDcyN2FiNzQ0ZTI0ZjliMmU0M2VhM2Q5NWFhNTg3Y2U2MjMxYzg1NDE2ODVlMjljNmE1MTIwNDJkNmUyZDYzNTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Forerunner" + }, + { + "attributeName" : "Model", + "attributeValue" : "230" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone TPU" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "41" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 x 45 x 11.7 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/White" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Smart Mode: Up to 5 weeks" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart rate monitor
  • Foot pod
  • Advanced workouts (create custom" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging/data clip
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "GARMIN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "GARMIN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af5"), + "name" : "Skagen SKT1104 Hybrid Smart Watch", + "description" : "Skagen SKT1104 Hybrid Smart Watch", + "price" : "225", + "sku" : "Skagen-SKT1104-Hybrid-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1104-Smart-Watches-491362897-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTE1NHxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDAzLzg4ODk3NzM1NTU3NDIuanBnfDk1ODY0YjcxMzZlYTcyZjM5MzcyMDY2NDE0NTM5ZmQxMGYzMTk2OGMxYzIzZTIxZTJhM2MwYzNiY2UwMDIwMDY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1104" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af6"), + "name" : "Skagen SKT1103 Hybrid Smart Watch, Brown", + "description" : "Skagen SKT1103 Hybrid Smart Watch, Brown", + "price" : "218", + "sku" : "Skagen-SKT1103-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1103-Smart-Watches-491362896-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDAxN3xpbWFnZS9qcGVnfGltYWdlcy9oMjYvaGI3Lzg4ODk3Nzk1MTk1MTguanBnfDYzNmY0OTJlY2E1YjJkZTk2MzE0ZjljMzNjZmMwMTU2YjliMDdlMjIzYjUyMmU1YjVjNjMxZWExNDczM2NhNTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1103" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af7"), + "name" : "Michael Kors Grayson MKT4010 Hybrid Smart Watch, Black", + "description" : "Michael Kors Grayson MKT4010 Hybrid Smart Watch, Black", + "price" : "290", + "sku" : "Michael-Kors-Grayson-MKT4010-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4010-Smart-Watches-491363042-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTc1OXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDVhLzg4OTQ3MzYxNzEwMzguanBnfDcyY2VkNjYxYjEyZDRkMDdkMGUxZGE1ZGRjZjBmYTFkZGYwYzY1YjQ3MTcxMTQ3OWQ2N2M2MmViMjM1NDljMzA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4010" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "47 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af8"), + "name" : "Garmin Vivofit 3 Activity Tracker, Black", + "description" : "Garmin Vivofit 3 Activity Tracker, Black", + "price" : "102", + "sku" : "Garmin-Vivofit-3-Activity-Tracker,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Garmin-Vivofit-3-Fitness-Bands-Trackers-491315720-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTAxOHxpbWFnZS9qcGVnfGltYWdlcy9oMjkvaGZmLzg4ODk3NDY3NTE1MTguanBnfDhjNDNhOGNlOTkzODNkY2I4YmIwMDZjOWZmZWIxMTg5MGY0NjUyOWI3N2U5YjQyOWY2MTgxNzgzNDM5OWUyNjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Vivofit 3" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1 Year" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "GARMIN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Garmin", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637af9"), + "name" : "Diesel On DZT1002 Hybrid Watch, Brown", + "description" : "Diesel On DZT1002 Hybrid Watch, Brown", + "price" : "244", + "sku" : "Diesel-On-DZT1002-Hybrid-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Diesel-DZT1002-Smart-Watches-491362976-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjE5MXxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaDQ3Lzg4OTQ2OTM3NjkyNDYuanBnfDE2YWNjZWIyNDYzOWUyODRkNGNlODdkZjQ3NDRjMGU0N2Q4MjkwNGY2ZTk5ZGVlNzRkM2QwMTk4NDY4MjRkYzA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "DZT1002" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Diesel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afa"), + "name" : "Michael Kors Slim Runway MKT4005 Hybrid Smart Watch, Gold", + "description" : "Michael Kors Slim Runway MKT4005 Hybrid Smart Watch, Gold", + "price" : "319", + "sku" : "Michael-Kors-Slim-Runway-MKT4005-Hybrid-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4005-Smart-Watches-491362993-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjYxM3xpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGY1Lzg4OTQ3Mzg5ODkwODYuanBnfGI2ODUyNzYyNTk0ZWZlZGRmNjdmNTI5MDc3NzFhZmM2Y2M2Mjc4ZWM3NzIwMjNkNjI4M2UzYTcxYzY1ZDdiYzA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4005" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afb"), + "name" : "Michael Kors Bradshaw MKT5012 Smart Watch, Silver", + "description" : "Michael Kors Bradshaw MKT5012 Smart Watch, Silver", + "price" : "377", + "sku" : "Michael-Kors-Bradshaw-MKT5012-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5012-Smart-Watches-491362906-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDg1OHxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDQ1Lzg4OTQ3NjA4NzgxMTAuanBnfDQzNDcwZjY1Nzc4ZmUwMGVjNGU3MjFmOWQ2YTAyZTEyZGQ2M2E5Y2M3NDUwZDU5YWQ5YzY2MWUxYTYwNGJjYjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afc"), + "name" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Gray", + "description" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Gray", + "price" : "218", + "sku" : "Samsung-Gear-Fit-2-SM-R3600-Fitness-Band,-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/c11286fe-210c-4a06-b049-d9d6bccbcc9f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTcxMXxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDAwLzg4MDY4NTI2MjQ0MTQuanBnfDQ3YmQ2OThmODMzZmFmYTE4ZTM3NTA3MTNmN2M1ZTYzN2U4NmY0OTFkOTY0ZTg1NTJjNjhjYmExNDNmZDg1ZTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gear" + }, + { + "attributeName" : "Model", + "attributeValue" : "SM-R3600" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Galaxy devices: Android 4.3 and above that have minimum 1.5GB " + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.5 inch Curved Super AMOLED Display
  • Bluetooth v4.2
  • Tizen Operating System
  • Accelerometer" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afd"), + "name" : "Apple Watch Series 2 - 42mm Rose Gold Aluminium Case with Space Orange/Anthracite Woven Nylon", + "description" : "Apple Watch Series 2 - 42mm Rose Gold Aluminium Case with Space Orange/Anthracite Woven Nylon", + "price" : "506", + "sku" : "Apple-Watch-Series-2---42mm-Rose-Gold-Aluminium-Case-with-Space-Orange-Anthracite-Woven-Nylon", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Series-2-42mm-Rose-Gold-Aluminium-Case-with-Space-Orange-Anthracite-Woven-Nylon-491315311-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDQwM3xpbWFnZS9qcGVnfGltYWdlcy9oZDkvaGZiLzg5Mjk0MDg1MTYxMjYuanBnfDZmNGUzMTJjMzZhNzc0YTdmY2M2ZDNjNzNkYzRlYjdlNzc5YTI0YTFjNDI0ZGJmN2ZhMGIzNDU3MTk4NThhMTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 2" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Woven Nylon" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "36.4 x 11.4 x 42.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Space Orange/Anthracite" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Rose Gold Aluminum Case
  • Woven Nylon Strap
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637afe"), + "name" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Blue", + "description" : "Samsung Gear Fit 2 SM-R3600 Fitness Band, Blue", + "price" : "218", + "sku" : "Samsung-Gear-Fit-2-SM-R3600-Fitness-Band,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Gear-Fit-2-SM-R3600-Fitness-Band-Blue-491295685-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODYxM3xpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDM5Lzg5MzA4NzQyOTQzMDIuanBnfGIzODcxNDYxODlkMTkxOTU1MWE0MzA4NjU4MjQwY2ViODU4ODQyOTZjYTExMmQxY2QyZmFjNWZiNGJjODA4MTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gear" + }, + { + "attributeName" : "Model", + "attributeValue" : "SM-R3600" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Galaxy devices: Android 4.3 and above that have minimum 1.5GB " + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.5 inch Curved Super AMOLED Display
  • Bluetooth v4.2
  • Tizen Operating System
  • Accelerometer" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637aff"), + "name" : "Samsung Gear S3 Frontier SM-R760N Smart Watch, Dark Gray", + "description" : "Samsung Gear S3 Frontier SM-R760N Smart Watch, Dark Gray", + "price" : "414", + "sku" : "Samsung-Gear-S3-Frontier-SM-R760N-Smart-Watch,-Dark-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Gear-S3-Frontier-SM-R760N-Smart-Watch-Dark-Gray-491315697-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDc1NHxpbWFnZS9wbmd8aW1hZ2VzL2hmZC9oODEvODkzMzA2ODg5ODMzNC5wbmd8NzEzZjQ1ODk0ZjM0Mzc5Njg2N2JmMzFhNzQ2MDMzMTVlMjMwMDg5MGVkMTExZTA5NDZmYTRmYTExYTVlOGRjOQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gear" + }, + { + "attributeName" : "Model", + "attributeValue" : "SM-R760N" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dust and Water-resistant (IP68)
  • Bluetooth
  • Samsung Pay
  • GPS
  • 4 GB Internal Memory / RAM 768 MB
  • 1GHz" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Band Strap
  • Wireless Charging Dock / Display
  • Stand
  • Quick Start Guide
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b00"), + "name" : "Michael Kors Sofie MKT5020 Smart Watch, Silver", + "description" : "Michael Kors Sofie MKT5020 Smart Watch, Silver", + "price" : "377", + "sku" : "Michael-Kors-Sofie-MKT5020-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5020-Smart-Watches-491363044-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTMxMnxpbWFnZS9qcGVnfGltYWdlcy9oZjAvaGMwLzg4ODMxNzY1NzA5MTAuanBnfDViOWVlZjdmZjZmYjAyMGViYjljY2IxZjQ2NDhjMGUyZDAzZWNlYzI1OWFjZmY5ZjIxMWM4M2ZmMWVjZjk2YWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5020" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear 2.0" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b01"), + "name" : "Michael Kors MKT5004 Smart Watch, Rose Gold", + "description" : "Michael Kors MKT5004 Smart Watch, Rose Gold", + "price" : "377", + "sku" : "Michael-Kors-MKT5004-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5004-Smart-Watches-491363107-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODQ1NnxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaGJkLzg4ODMxNzM5NDk0NzAuanBnfDY1OGIyMjI4ZjUwNjdhOWQxNzIyMWUzNjdkNTYzNTNhNTU0ODY5N2U0Y2ZjNWM4MWFhZGVmNDlmOGIzMzkyZmY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5004" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.5" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b02"), + "name" : "Michael Kors Access MKT5041 Smart Watch, Sofie Pavé Rose Gold-Tone and Acetate", + "description" : "Michael Kors Access MKT5041 Smart Watch, Sofie Pavé Rose Gold-Tone and Acetate", + "price" : "406", + "sku" : "Michael-Kors-Access-MKT5041-Smart-Watch,-Sofie-Pavé-Rose-Gold-Tone-and-Acetate", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5041-Smart-Watches-491378197-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDY5N3xpbWFnZS9qcGVnfGltYWdlcy9oMGUvaDJiLzg5Nzg1OTkyNDc5MDIuanBnfGIzNmE5ZGQ0OTFmYmJmZmM2NzVjMTZkYzliYjkzNWY4NjFlODkwNmMxNDQ2MTFmMjBmMDVjZTkxYTZlMjJiOWE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT5041" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b03"), + "name" : "Apple Series 3 GPS + Cellular - 42 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Series 3 GPS + Cellular - 42 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "597", + "sku" : "Apple-Series-3-GPS-+-Cellular---42-mm-Silver-Aluminum-Case-with-Seashell-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MQKQ2HN-A-Smart-Watches-491379736-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE1OXxpbWFnZS9qcGVnfGltYWdlcy9oMDYvaDc5Lzg5OTgzOTg1NTgyMzguanBnfDQ0YjE1ODAwYmMwYTM1Njg3OWNkMDNiOTY3NDU1ZTVmNjIxMTViZWIzYWQwNGI5YWViZTJhYWZiNWZjNTNhNGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 4" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "HR Sensor" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.9" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core Processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours of battery life" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Silver Aluminum Case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b04"), + "name" : "Fitbit Versa Lite FB415BUBU Smart Watch", + "description" : "Fitbit Versa Lite FB415BUBU Smart Watch", + "price" : "232", + "sku" : "Fitbit-Versa-Lite-FB415BUBU-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415BUBU-Smart-Watches-491550909-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTQ4MnxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDk5LzkxMjI3MjE4MjQ3OTguanBnfDg1NmRlMjIyOWQ5MGFkN2VkYmRmOTg2NGI3MTU1ZTk0Yzg3YzAwYzE2NDEzNTJlNDMzNjY0MjUwZGY2ZDE2MmQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415BUBU" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Marina Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Marina Blue" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b05"), + "name" : "Michael Kors Grayson MKT5029 Smart Watch, Black", + "description" : "Michael Kors Grayson MKT5029 Smart Watch, Black", + "price" : "377", + "sku" : "Michael-Kors-Grayson-MKT5029-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5029-Smart-Watches-491363049-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTk2NXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaGJiLzg4OTQ3MzM4NzcyNzguanBnfDZkNGRhMDc2MDAzMDgxM2NjNDVjNDliOGVmOTFiOTI5ZGZkMjcwMzFkNmUzY2YwY2M2MGYwOTdhYTBkNmQ3ZWE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5029" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "47 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b06"), + "name" : "Michael Kors Sofie MKT5021 Smart Watch, Gold", + "description" : "Michael Kors Sofie MKT5021 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael-Kors-Sofie-MKT5021-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5021-Smart-Watches-491363045-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTEzNXxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaGM3Lzg4OTQ3NTg5MTIwMzAuanBnfDU3MzE0ZjhjYjNlNWJkNjUxZjE5NTgyM2E3OTVkOTYwZWNlZTJkODAyOTY5YTg5YTcxODNkMDU1YmIyYTIxYjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5021" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b07"), + "name" : "MISFIT Vapor MIS7000 Smart Watch, Jet", + "description" : "MISFIT Vapor MIS7000 Smart Watch, Jet", + "price" : "211", + "sku" : "MISFIT-Vapor-MIS7000-Smart-Watch,-Jet", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS7000-Smart-Watches-491378006-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTYxMXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDk0Lzg5Nzg2MjkwNjY3ODIuanBnfDIzMjVmNzNiZmIwZjRjYzA1YjFmNjFiMTczZjBkOTE0Y2QwOWU5ZTk3NDk5ZTNlZWE3OWNhOTkxYTM5YjJhNzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Vapor" + }, + { + "attributeName" : "Model", + "attributeValue" : "MIS7000" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Brushed Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS (By Google)" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Phones and iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black Sport Strap" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100 processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.3 full round AMOLED 326 pixels per inch display
  • \n
  • Altimeter" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "MISFIT", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b08"), + "name" : "MISFIT Vapor MIS7001 Smart Watch, Rose Tone", + "description" : "MISFIT Vapor MIS7001 Smart Watch, Rose Tone", + "price" : "211", + "sku" : "MISFIT-Vapor-MIS7001-Smart-Watch,-Rose-Tone", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS7001-Smart-Watches-491378007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTEwMHxpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDAxLzg5Nzg2MjMzNjUxNTAuanBnfDFjMjAzMDhhYzc3MzU4MjhhOWU5MjJhYmZiYzA1NmVlODYxNjFkZjVhODM2MWEzZGIxNjRjNDg4ODc0ZTQ2M2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Vapor" + }, + { + "attributeName" : "Model", + "attributeValue" : "MIS7001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Brushed Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS (By Google)" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Phones and iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Midnight Blue Sport Strap" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Tone" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100 processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.3 full round AMOLED 326 pixels per inch display
  • \n
  • Altimeter" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "MISFIT", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b09"), + "name" : "Apple Series 3 Nike+ Smart Watch, Black", + "description" : "Apple Series 3 Nike+ Smart Watch, Black", + "price" : "500", + "sku" : "Apple-Series-3-Nike+-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MQL42HN-A-Sports-Fitness-Watches-491363076-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTQyOXxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaGYxLzg5MTI0ODE1NTAzNjYuanBnfDc0MDAyZGVjNWJhMDE4MzA0ZDc2ZGViMWNlM2M4OTg5MzRlMTBlZGZlY2NiODRlYThkNzYxYjM5YTBkYWM5ZTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5s or later" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey Aluminium & Anthracite/Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0a"), + "name" : "Fitbit Versa Smart Watch, Black/Black Aluminium", + "description" : "Fitbit Versa Smart Watch, Black/Black Aluminium", + "price" : "312", + "sku" : "Fitbit-Versa-Smart-Watch,-Black-Black-Aluminium", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB505GMBK-CJK-Smart-Watches-491392187-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTIyNnxpbWFnZS9qcGVnfGltYWdlcy9oNmMvaDMwLzg5OTg0MDI4MTgwNzguanBnfGIzZGMwYTJkNjhmYTUzM2ExNTY5OWQ2MWE5ZWNjMDZkMzRiYTQ4OTU4OTQ2ODYwOGM3NjA2OTVmZDQyMGFkODc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Versa" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 Days" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Woven wristbands" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0b"), + "name" : "FOSSIL FTW2112P Q Wander Gen 2 Smart Watch, Rose Gold", + "description" : "FOSSIL FTW2112P Q Wander Gen 2 Smart Watch, Rose Gold", + "price" : "290", + "sku" : "FOSSIL-FTW2112P-Q-Wander-Gen-2-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2112-Smart-Watches-491362955-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjA2MXxpbWFnZS9qcGVnfGltYWdlcy9oMzEvaDJhLzg4ODMxNzAzNDQ5OTAuanBnfDA4NjNjMzcwZGY4Yzc0ZmVlOGYzZWYwNjYxY2ExMDBjMWZkZTI2YWY5MjAyYTcyMDEwMjkxZGI2YTBiZTYzZjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2112P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "360" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0c"), + "name" : "FOSSIL FTW4000P Q Explorist Gen 3 Smart Watch, Silver", + "description" : "FOSSIL FTW4000P Q Explorist Gen 3 Smart Watch, Silver", + "price" : "319", + "sku" : "FOSSIL-FTW4000P-Q-Explorist-Gen-3-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4000P-Q-Explorist-Gen-3-Smart-Watch-Silver-491363007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM3NHxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDI3Lzg4NzQ3MTkzMTM5NTAuanBnfDkxYzU2YWExNzE1MmU2MGY4MTgzZWY0NDE3MTZjYmVmZjkyNmUwN2ZjMGNjNzhkZjUyNmMzODBlMjcyNTIzN2M", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4000P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0d"), + "name" : "FOSSIL FTW6000P Q Venture Gen 3 Smart Watch, Rose Gold", + "description" : "FOSSIL FTW6000P Q Venture Gen 3 Smart Watch, Rose Gold", + "price" : "319", + "sku" : "FOSSIL-FTW6000P-Q-Venture-Gen-3-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6000-Smart-Watches-491363011-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjEyN3xpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGMyLzg4ODMxNzk1MjAwMzAuanBnfDc1MDIzNmJiYTY5YmYzZmUzMjRhMWVjYzczYzhkODI4NGY0NDY4NmNhOWNkYjFhM2QwOTM0Yjg1MzNlYWE2NTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6000P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyro Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0e"), + "name" : "FOSSIL FTW4004P Q Explorist Gen 3 Smart Watch, Brown", + "description" : "FOSSIL FTW4004P Q Explorist Gen 3 Smart Watch, Brown", + "price" : "290", + "sku" : "FOSSIL-FTW4004P-Q-Explorist-Gen-3-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4004P-Q-Explorist-Gen-3-Smart-Watch-Brown-491363013-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5MnxpbWFnZS9qcGVnfGltYWdlcy9oYjUvaDdmLzg4NzQ3MTU3MDk0NzAuanBnfGRiNDg0ZjRiYmRhYjRiMTBhZDUxOTkzNmM5MGRmZGUyN2MxZDYzOGI5MTYzNTExNWRjMjRhM2ZhNTgwNDgxMzE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4004P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue Case" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b0f"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "593", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---40-mm-Space-Gray-Aluminium-Case-with-Black-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-BK-S-LP-GPS-491488360-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjg4NXxpbWFnZS9qcGVnfGltYWdlcy9oM2QvaDhlLzkwNTE1Mjc2MTAzOTguanBnfDQyZWIxYjQwZTJjMGJiZmUwNzRhMDI5YjliNGNlZTRiMzViZTZhNDRjYjBlMTU3NTg5ZDlhZjA4MzNjMjUzZTI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b10"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "767", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---44-mm-Silver-Aluminium-Case-with-Pure-Platinum-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-PPB-Bnd-Cel-491488352-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzM2N3xpbWFnZS9qcGVnfGltYWdlcy9oZmYvaDFkLzkwNTE1MTY2MDAzNTAuanBnfDRiNjY0OThhNDUxMWM1MjAwOGU2ZDg1MDE5YmFlY2RhYjczM2I0MjNhZjMyYjI4YzNhOTI1Y2Q5MWVkNGFkZjI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b11"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Gold Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Stainless Steel Case with Gold Milanese Loop", + "price" : "1173", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Gold-Stainless-Steel-Case-with-Gold-Milanese-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-SS-Cs-G-MLN-LP-Cel-491488334-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE3MHxpbWFnZS9qcGVnfGltYWdlcy9oNDEvaDdlLzkwNTA2NTQ3NjkxODIuanBnfDhmNWQ5OWQxYmM5NjAyMjkzODcyYmQxZTM0NDMwNzg3MjU0Yzc0ODU3YjYwYjE3MjhiZmY3MGM1OTNjZTNlOGU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold Milanese" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b12"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "593", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---40-mm-Space-Gray-Aluminium-Case-with-Anthracite-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-AB-Bnd-GPS-491488356-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaGYxLzkwNTE1MjM2MTI3MDIuanBnfGJjZWM5ZDg5Y2YwYzlhNjg5YzZjOGIzYjU5NzFhZTcwNDRkOWMyYTRkY2JlZjM1YjQzNTU1NzBlOWMwMTYzOGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b13"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "637", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---44-mm-Space-Gray-Aluminium-Case-with-Anthracite-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-AB-Bnd-GPS-491488358-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDI3LzkwNTE1Mjg1OTM0MzguanBnfGE5YTdlMTBmYjBjM2VhYjljZjczYTQ4YzhjYWNmOTdiZjZiYTgwOWQ0M2ZiYWZlMjYzNjg1ZTViZDM5ZThjYjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b14"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Black Stainless Steel Case with Space Black Milanese Loop", + "price" : "1173", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Space-Black-Stainless-Steel-Case-with-Space-Black-Milanese-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SB-SS-CsSB-MLN-LP-Cel-491488332-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzc3MXxpbWFnZS9qcGVnfGltYWdlcy9oMzEvaDFkLzkwNTA2NDU5MjE4MjIuanBnfDE3ODA3NjM0OGY3OGRhMWMwZjc4NGIwZGVmNTdmMzkyZjFjOWQ2YzExZDVjMmY4ODViM2MzZjgyYzk4YzM2NmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "47.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Space Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b15"), + "name" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Band", + "price" : "593", + "sku" : "Apple-Watch-Series-4-GPS---40-mm-Gold-Aluminum-Case-with-Pink-Sand-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmG-AL-Cs-P-S-S-Bd-GPS-491488339-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxN3xpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGFmLzkwNTA2NjEzODgzMTguanBnfGMxMmEzZWYzYjRmM2FjYzc0MDQxN2JkNzZhZDFlN2NkYjE3OWU0MGYxM2E1MjQ5ZDhjNGRjNDQzMzZiNDk4MDA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b16"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "724", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---40-mm-Space-Gray-Aluminium-Case-with-Black-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-BK-S-LP-Cel-491488350-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzA3OHxpbWFnZS9qcGVnfGltYWdlcy9oMTQvaGUyLzkwNTE1MTkyODczMjYuanBnfDA4NWZiNzI0ZWY0ZTA0NmZlYTA0Njk3ZmIzZWYyYmE1ZTY0MThjNDYwODIwMjZhMWNhZDQ2MjMxYjUzNzJlYWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b17"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "767", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---44-mm-Space-Gray-Aluminium-Case-with-Anthracite-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-AB-Bnd-Cel-491488354-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oYTkvaGIzLzkwNTE1MjQ5MjM0MjIuanBnfDVkZTQwMzUxYjQxNTRkODliYWY5NDk4N2U1ZGMxOGVkNmUyOTkwZmUyOWMyOTdlZjRhNTNhY2VlMGJkYjkyZmQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b18"), + "name" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS - 40 mm Space Gray Aluminum Case with Black Sport Loop", + "price" : "593", + "sku" : "Apple-Watch-Series-4-GPS---40-mm-Space-Gray-Aluminum-Case-with-Black-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmSG-AL-Cs-BK-S-LP-GPS-491488338-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTMzMXxpbWFnZS9qcGVnfGltYWdlcy9oNTUvaDAzLzkwNTA2NTgxMTE1MTguanBnfGQxMDEwYzMzYzQxNzRkYTliMmI3MzMwMjI0OGJkNWQ4NTNmMWQ4ZjhlZmQ0NzczMTkzNjZmZjQ0NzkyNjY1N2M", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b19"), + "name" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with White Sport Band", + "price" : "637", + "sku" : "Apple-Watch-Series-4-GPS---44-mm-Silver-Aluminum-Case-with-White-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmSL-AL-Cs-WH-S-Bd-GPS-491488341-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODYzNnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDM4LzkwNTA2NTk3NDk5MTguanBnfDRhN2YzMmNmYTJkZGVmYjc4MDc3Y2MwMGEwYjYxNDEzYjM0MzVlMmI3NzQwOWE4OTc0YmRjODY0YTQyNmQxNWY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1a"), + "name" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS - 40 mm Gold Aluminum Case with Pink Sand Sport Loop", + "price" : "593", + "sku" : "Apple-Watch-Series-4-GPS---40-mm-Gold-Aluminum-Case-with-Pink-Sand-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mmG-AL-Cs-P-S-S-LP-GPS-491488340-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk2NnxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDU0LzkwNTA2NjI2OTkwMzguanBnfDc5NmEwNWMxOGYxYzQ5YWUwNjk2YzI1NDlhY2IwMzJkYTg1MjBjMWY0Nzk4Zjg1NWI1M2YzNjAxYjhmNWE4MDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1b"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "767", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---44-mm-Space-Gray-Aluminium-Case-with-Black-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-BK-S-LP-Cel-491488353-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzA3OHxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDVkLzkwNTE1MTQyNDEwNTQuanBnfDIxZjdlOGZlOWZlM2NmZjlkOWViMWUwMzBhNWRkMDVjYzI1NDhmMjQwYmRlN2FhOTMwMGY3NjA3YTQ2MTkwOWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1c"), + "name" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "637", + "sku" : "Apple-Watch-Series-4-GPS---44-mm-Silver-Aluminum-Case-with-Seashell-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmSL-AL-Cs-SS-S-LP-GPS-491488342-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTkwM3xpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDUyLzkwNTA2NjQ2NjUxMTguanBnfDJhOTQzOGIyYzAxN2I1Mjk3MTc0ZWQ0NDA1M2I0YTU5NzRkMTYzZWU5ZjczOGNkYjdhY2VhOTE0N2Y5MTlhYjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1d"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "767", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---44-mm-Silver-Aluminium-Case-with-Summit-White-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-SW-S-LP-Cel-491488351-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDcyOXxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaDQyLzkwNTE1MTU2MTczMTAuanBnfDA5ZDVhYjU3MDU3MTBmYTI2ZjExNzIyZThjNGY3M2UyN2EyZWMyZjE5MTEyMmZlM2Y1NjQ4ZWMyZjAyMGUxZDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1e"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "637", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---44-mm-Silver-Aluminium-Case-with-Summit-White-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-SW-S-LP-GPS-491488361-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDU3NXxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaGEzLzkwNTE1MjIyMzY0NDYuanBnfDJlNGE0ZGViZmRjNjM5MTc0YmMxOTMwODA2N2RkYzI0N2VjNjdkZmU5M2FiYjMxN2I1MTc1ZmMzZDZkMmQzY2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b1f"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Space Gray Aluminium Case with Anthracite/Black Nike Sport Band", + "price" : "724", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---40-mm-Space-Gray-Aluminium-Case-with-Anthracite-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SG-AL-AB-Bnd-Cel-491488349-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGQ3LzkwNTE1MTAwNDY3NTAuanBnfGJkNGNkM2VkOTliNmMyMmQwYzJlOTgxNTU4ZWNhZDMyYWNiZWU5ZTc0ZTEyOWM5MzNhM2MwNDYxYTExYTQ3Mjk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Anthracite/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b20"), + "name" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS - 44 mm Gold Aluminum Case with Pink Sand Sport Band", + "price" : "637", + "sku" : "Apple-Watch-Series-4-GPS---44-mm-Gold-Aluminum-Case-with-Pink-Sand-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mmG-AL-Cs-P-S-S-Bd-GPS-491488345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxN3xpbWFnZS9qcGVnfGltYWdlcy9oN2EvaGFmLzkwNTA2Njk1ODAzMTguanBnfGQ2MjI0NmQ4MmM2OWFmNTg1YWIyYzljMDliOGMyZDhkYzdjNGM5M2IzY2ZlNmY3ZDljNWU2MzIyYjgwZTIwNzY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b21"), + "name" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "724", + "sku" : "Apple-Watch-Nike+-Series-4-GPS-+-Cellular---40-mm-Silver-Aluminium-Case-with-Pure-Platinum-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-PPB-Bnd-Cel-491488347-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzM2N3xpbWFnZS9qcGVnfGltYWdlcy9oOWEvaDRlLzkwNTE1MTIyNzQ5NzQuanBnfDBmZmZkNmZmMDM2YjNlNWJjNDg2MTdiZDMyYjk0YmVkYzljZTc4ZTBjYTU0MzAzNDNlNTk0NGIxZWE2OGYzY2Y", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • \n
  • LTE and UMTS
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b22"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Summit White Nike Sport Loop", + "price" : "593", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---40-mm-Silver-Aluminium-Case-with-Summit-White-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-SW-S-LP-GPS-491488359-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDU3NXxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaDEwLzkwNTE1MjQ1OTU3NDIuanBnfGEyZTkwZjFhMmNjOGUzYzJjYWIwMDc4MTc5N2UwNGU1NjU0MTZhYzM3NDY2NzMwMmEzYWUxM2U4ODg1YTdlOTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Summit White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b23"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "637", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---44-mm-Silver-Aluminium-Case-with-Pure-Platinum-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SL-AL-PPB-Bnd-GPS-491488357-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzM2N3xpbWFnZS9qcGVnfGltYWdlcy9oMjYvaDZlLzkwNTE1MTgyMzg3NTAuanBnfGIwOWRhNmI3ZGU0ZDgyNjZhYTg5Y2U1N2I0NGM5ZGQ3YjBlZGY3MDBjZjUxMDY2MGJhOGRkNWNhOGE2MzQ1NGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b24"), + "name" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "description" : "Apple Watch Nike+ Series 4 GPS - 40 mm Silver Aluminium Case with Pure Platinum/Black Nike Sport Band", + "price" : "593", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---40-mm-Silver-Aluminium-Case-with-Pure-Platinum-Black-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-40-SL-AL-PPB-Bnd-GPS-491488355-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQ1OXxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaGY0LzkwNTE1MjA1OTgwNDYuanBnfDBhOWZkZDNlODU3NDBhMWU3YjgzODJjMTQwMjhmYmQ5ZGEzNzZjOTk3YjBlMzBjNzQ2NzI2NTFmYWZjMzc0ODI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pure Platinum/Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b25"), + "name" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "description" : "Apple Watch Nike+ Series 4 GPS - 44 mm Space Gray Aluminium Case with Black Nike Sport Loop", + "price" : "637", + "sku" : "Apple-Watch-Nike+-Series-4-GPS---44-mm-Space-Gray-Aluminium-Case-with-Black-Nike-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-S4-44-SG-AL-BK-S-LP-GPS-491488362-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjg4NXxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDBiLzkwNTE1MzAyMzE4MzguanBnfGY5OTI0MzU3Y2NjNjdiNGFkN2Q0YzgxYWFlNWYwMDQ0NDg3OTcwMmU4MzI4M2Q0ZmRmZTNmNzlhMTUyMjgxMDc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Model", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b26"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Loop", + "price" : "724", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Gold-Aluminium-Case-with-Pink-Sand-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-AL-Cs-PS-S-LP-Cel-491488316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjc5N3xpbWFnZS9qcGVnfGltYWdlcy9oYjIvaGE5LzkwNTA2MjUyMTI0NDYuanBnfDcyM2YyYjQ1YzUyZWI0YmU1NGQyNTIzYWYxYWJlMWVkZTUzMjRiM2VkMjc2Yjc1MTc4YjUyNDI0MWMxNzJlZTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b27"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Gold Aluminum Case with Pink Sand Sport Loop", + "price" : "767", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Gold-Aluminum-Case-with-Pink-Sand-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-GD-AL-Cs-PS-S-LP-Cel-491488328-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTkxNXxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDZhLzkwNTA2NDAwMjM1ODIuanBnfGJjZWU1NTQ0YzJmYzk1ZTQ3ZmY2NjVlMjNmNDJhODU2ZDQ3NGRlOTNjYzY3MGZjMWVkOTBjODVmMzZjNDY1ZmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b28"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with White Sport Band", + "price" : "724", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Silver-Aluminium-Case-with-White-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SL-AL-Cs-WH-S-Bnd-Cel-491488311-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTE0NXxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaGUxLzkwNTA2MTg2NTg4NDYuanBnfDA5MjdiZmZjZTc0YmE0MmRjMzEyYjI2NjBkMzA5YWY3NTZiYjMzMGJjYmZiNTdiODhmNTUzZDRkMTBjMmFiOTY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b29"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with White Sport Band", + "price" : "767", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Silver-Aluminum-Case-with-White-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SL-AL-Cs-WH-S-Bnd-Cel-491488323-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkxNnxpbWFnZS9qcGVnfGltYWdlcy9oYTQvaGFkLzkwNTA2MzM0MDQ0NDYuanBnfDdiZmQ4NzhiYWI5YmMxNTRiNjAzZmQ2ZmQwNzk1OWEzNDc2ZGIzNGI0MGJjYjEzYWFiY2IzN2RiZDZjNmNjNjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2a"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with White Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Stainless Steel Case with White Sport Band", + "price" : "985", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Stainless-Steel-Case-with-White-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SS-Cs-WH-S-Bnd-Cel-491488317-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4MHxpbWFnZS9qcGVnfGltYWdlcy9oYTkvaGVlLzkwNTA2Mjg0ODkyNDYuanBnfDBiMDVkNmNhY2U1M2QxMmJkYmFmOTgzMWYxNTc5OGIwMWI2NTdlNGUyYTU2MzQ5ZmU0MDQyNjFkNzY2ZWU2MzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "39.8" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Stainless Steel" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2b"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Space Gray Aluminum Case with Black Sport Loop", + "price" : "767", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Space-Gray-Aluminum-Case-with-Black-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SG-AL-Cs-BK-S-LP-Cel-491488326-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTMyMnxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGRjLzkwNTA2NDE2NjE5ODIuanBnfGFjNDU4ODMzYWM5NzczODdmOGQ5OTMzNjE5ZmQyMTM4ZjA4ZTU0ZjI4YjFjN2MyMmUwZWE2ZDUwNWMzNWY0ZmY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Space Gray" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2c"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Band", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Gold Aluminium Case with Pink Sand Sport Band", + "price" : "724", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Gold-Aluminium-Case-with-Pink-Sand-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-GD-AL-Cs-PS-S-Bnd-Cel-491488315-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODA2MHxpbWFnZS9qcGVnfGltYWdlcy9oZGIvaGE5LzkwNTA2MjIyNjMzMjYuanBnfGIxMWZkZThiZjMzZWRiMjQ0MTBjMTg4MzUyMGZlMTIxMWQyNTEzMmI2NTVhODY0ZjI1ZTcyNjg5YWE5ZmNkYTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2d"), + "name" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 44 mm Silver Aluminum Case with Seashell Sport Loop", + "price" : "767", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---44-mm-Silver-Aluminum-Case-with-Seashell-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-44mm-SL-AL-Cs-SS-S-LP-Cel-491488324-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjIxNHxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaDg2LzkwNTA2MzgzODUxODIuanBnfDA5NzI1NWNiZWY4OTJkNTIyNjhmZDM5OGM2M2NkYWNmNDE0ODdiYzkxN2VkYjNkNTMyNDhjYTg0N2Y4OTI1Y2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "36.7" + }, + { + "attributeName" : "Size", + "attributeValue" : "44 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2e"), + "name" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Seashell Sport Loop", + "description" : "Apple Watch Series 4 GPS + Cellular - 40 mm Silver Aluminium Case with Seashell Sport Loop", + "price" : "724", + "sku" : "Apple-Watch-Series-4-GPS-+-Cellular---40-mm-Silver-Aluminium-Case-with-Seashell-Sport-Loop", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-WatchS4-40mm-SL-AL-Cs-SS-S-LP-Cel-491488312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTQ2M3xpbWFnZS9qcGVnfGltYWdlcy9oOTAvaGNlLzkwNTA2MTg5ODY1MjYuanBnfGJmYTVlZWFlMzk5YzA0YjI0NjlmZmI3MWQ5NjY1M2ZkOWIzOGYzOGQ2ZjU3YTEwMjhhMjFjYmU5NmU4ZDc1ZDc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 4" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminium" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GLONASS" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 5" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.07" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30.1" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Seashell" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64-bit dual-core processor" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Barometric altimeter
  • \n
  • Digital Crown with haptic feedback
  • \n
  • Louder speaker
  • \n
  • Ion-X strengthened glass
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b2f"), + "name" : "Fossil Q Scarlette FTW5017P Hybrid Smart Watch, Blue/Rose Gold", + "description" : "Fossil Q Scarlette FTW5017P Hybrid Smart Watch, Blue/Rose Gold", + "price" : "211", + "sku" : "Fossil-Q-Scarlette-FTW5017P-Hybrid-Smart-Watch,-Blue-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5017-Smart-Watches-491350707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTk5M3xpbWFnZS9qcGVnfGltYWdlcy9oMmEvaGVmLzg4OTQ3NzA1Nzc0MzguanBnfDljYmY2Y2M3ZGEzZjdmYjM1YzM2MmMzNjQ0NWU3MGE1ZjFjZmZhYWJhYTBhZTljMTQ4OWRmOWE2ZDIzNjEyYzY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Scarlette" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5017P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue/Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b30"), + "name" : "GARMIN Vivofit 2 Activity Tracker, Black", + "description" : "GARMIN Vivofit 2 Activity Tracker, Black", + "price" : "116", + "sku" : "GARMIN-Vivofit-2-Activity-Tracker,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/GARMIN-Vivofit-2-Activity-Tracker-Black-491229540-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzA3NnxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaDVkLzg5MzI3NDc5MDMwMDYuanBnfDI5MzRkZmRiZGUyYjg4YzI0MjEyMjRjM2E4MWVhNWU1NDUyZGQ2ZjE1NDlkMDFmZTg3MTRmZmQxNDk5NGQ0MDE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Vivofit 2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart rate-based calorie computation
  • Step counter
  • Garmin Connect compatible (online community where you analyze" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB ANT Stick
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "GARMIN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "GARMIN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b31"), + "name" : "Fossil FTW1176 Smart Watch", + "description" : "Fossil FTW1176 Smart Watch", + "price" : "196", + "sku" : "Fossil-FTW1176-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW1176-Smart-Watches-491550745-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Mzg4fGltYWdlL2pwZWd8aW1hZ2VzL2g4Yy9oMzEvOTExNzM1NDM5MzYzMC5qcGd8MWVjNjczYmJkMjAxYTIzZmZkYjkzNmJkNjNkZWQxNzc2MDRlYTdjNWQyNGQ1YWRlNjhmNjkwNTJiYTk1ODU5YQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW1176" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Genuine Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial Colour)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "12 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b32"), + "name" : "Apple Watch Nike+ - 38mm Space Gray Aluminum Case with Black/Volt Nike Sport Band", + "description" : "Apple Watch Nike+ - 38mm Space Gray Aluminum Case with Black/Volt Nike Sport Band", + "price" : "477", + "sku" : "Apple-Watch-Nike+---38mm-Space-Gray-Aluminum-Case-with-Black-Volt-Nike-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Nike-38mm-Space-Gray-Aluminum-Case-with-Black-Volt-Nike-Sport-Band-491277330-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjA2M3xpbWFnZS9qcGVnfGltYWdlcy9oNjUvaDNlLzg5Mjk0MDYyMjIzNjYuanBnfGUxZmQyYTY3M2RjNmRjNGM0Y2ZjOTRlOTE1NGNjZDk0NjZmMWNiM2EwZDcxMGU1YmIyYjExMjJkMDNkY2RhNWI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Nike+" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "3.86" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.33" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "28.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "33.3 x 11.4 x 38.6 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/Volt" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Space Gray aluminum case
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Space Gray Aluminum Case
  • Nike Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b33"), + "name" : "Michael Kors Sofie MKT5022 Smart Watch, Gold", + "description" : "Michael Kors Sofie MKT5022 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael-Kors-Sofie-MKT5022-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5022-Smart-Watches-491363046-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODYzNHxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaGJiLzg4ODMxNzU5MTU1NTAuanBnfDNmNDcxMzk5MWYwNWMxOGU3NzM3YzQxYzQ3YWQ1ODBlNjA3NWI3MzcwNDg0MTEzNmE1ZmRjY2MzMzk2Nzc2NzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5022" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear 2.0" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b34"), + "name" : "Michael Kors MKT5028 Smart Watch, Blue", + "description" : "Michael Kors MKT5028 Smart Watch, Blue", + "price" : "377", + "sku" : "Michael-Kors-MKT5028-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5028-Smart-Watches-491363048-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDIwOXxpbWFnZS9qcGVnfGltYWdlcy9oYzcvaGRlLzg4ODMxNzQyNzcxNTAuanBnfDZhN2YyYTZlZGZhMzEzNDMwNWQ1NDNlYzc1NGFlYzkzYjFmNzM5MzYyY2RiMDU1OGNmNGI4NGJlMjk3MTM4ZGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5028" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b35"), + "name" : "Skagen SKT1101 Hybrid Smart Watch, Black", + "description" : "Skagen SKT1101 Hybrid Smart Watch, Black", + "price" : "208", + "sku" : "Skagen-SKT1101-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1101-Smart-Watches-491362895-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDU4MHxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaGFmLzg4ODk3ODg0NjUxODIuanBnfDc0MDdmYzVhMmM0ZmViM2NlMTI5ZWNmM2JmZjdiMTIxMTg4ZWMxZDg3ZTQ5NWFmNTU3OTk5YmU4ZWEwZTdmMTU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1101" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b36"), + "name" : "Fossil Q Commuter FTW1151P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Commuter FTW1151P Hybrid Smart Watch, Brown", + "price" : "211", + "sku" : "Fossil-Q-Commuter-FTW1151P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1151-Smart-Watches-491363023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDU3MHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDIyLzg4OTQ2NjQ0MDkxMTguanBnfGRhODRjMDAwNDIzMzk0MmE2ZjZjNjY0YjY5MzExYTJkNDc5M2NjN2MwZmYzM2RkZDg4NWNjMDgzMmRhMjE0ZmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1151P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b37"), + "name" : "Fossil Q Commuter FTW1150 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Commuter FTW1150 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil-Q-Commuter-FTW1150-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1150-Smart-Watches-491363022-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDkwMHxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDIxLzg4OTQ2NjcwMzA1NTguanBnfGY1MGM2ODkzNTIwZTJiNDRhMzkzMjhlNzgxZTNkNWNhZDkwZjI1ZjcxNmMwZTYwNTNiZWZmODViZGM2YmYzOWU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1150" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Off-White (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b38"), + "name" : "Fossil Q Commuter FTW1149 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Commuter FTW1149 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil-Q-Commuter-FTW1149-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1149-Smart-Watches-491363021-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzM5MnxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDFkLzg4OTQ2NjMwOTgzOTguanBnfDg1OWE5NTA2M2Y3MDNmYjg1NmNjMDQwY2JjYTM0NTU3NWYyYWE3N2JiYWVjYzJlNDVlOTY0MDJkZjEwMTE2NDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1149" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b39"), + "name" : "Fossil Q Virginia FTW5011P Hybrid Smart Watch, Silver/Rose Gold", + "description" : "Fossil Q Virginia FTW5011P Hybrid Smart Watch, Silver/Rose Gold", + "price" : "189", + "sku" : "Fossil-Q-Virginia-FTW5011P-Hybrid-Smart-Watch,-Silver-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5011-Smart-Watches-491350703-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE4NHxpbWFnZS9qcGVnfGltYWdlcy9oYjUvaDk5Lzg4OTQ3MDE5NjEyNDYuanBnfDA5MzYwYWU1MjMyNjJlMjQ4OTI0ZDljMzU5MWNiZTExMDM2MTQ5MmJiYTVlMzNmYWNmMTM5NDQ0Mzk2ZDE0OWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Virginia" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5011P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver/Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3a"), + "name" : "Fossil Q Virginia FTW5010P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Virginia FTW5010P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil-Q-Virginia-FTW5010P-Hybrid-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5010-Smart-Watches-491363033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Nzk0OHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDRiLzg4OTQ3MDgwNTYwOTQuanBnfGVhYWQ0NTk4YTQ4NGQ1Y2ViYzZjNWYyMzQ4ODNlZDRlZDBhZTdkMWUwNzQ4M2QzNmZkMzQ5NzdlMGZjMGUxMmI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Virginia" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5010P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3b"), + "name" : "Fossil Q Commuter FTW1154 Hybrid Smart Watch, Blue", + "description" : "Fossil Q Commuter FTW1154 Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil-Q-Commuter-FTW1154-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1154-Smart-Watches-491363026-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTUyNnxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaDdmLzg4OTQ2NTIyODQ5NTguanBnfDgwZDBjN2UxZmMzNGRhOTAyMzliNTY3NGFjZmMyODVhOTlkOTFjNGI2YzVhODNjOWEyMThkNzhkYjlmYTVlMjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1154" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ or iPhone 5/iOS 8.2+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3c"), + "name" : "Fossil Q Commuter FTW1161 Hybrid Smart Watch, Gunmetal", + "description" : "Fossil Q Commuter FTW1161 Hybrid Smart Watch, Gunmetal", + "price" : "189", + "sku" : "Fossil-Q-Commuter-FTW1161-Hybrid-Smart-Watch,-Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1161-Smart-Watches-491363031-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDExNHxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDJhLzg4OTQ2NTMyNjc5OTguanBnfDQ0YjRlMTk4OGY1MzU1MmJhODlhNDk5MTk1ZDg3MmFhNDgxZDQ2Y2RhNmUzNGVjMjhiNzhhZmY0ZTA3OWZjOTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1161" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ or iPhone 5/iOS 8.2+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3d"), + "name" : "Fossil Q Crewmaster FTW1141 Hybrid Watch, Black/Red", + "description" : "Fossil Q Crewmaster FTW1141 Hybrid Watch, Black/Red", + "price" : "174", + "sku" : "Fossil-Q-Crewmaster-FTW1141-Hybrid-Watch,-Black-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1141-Smart-Watches-491350692-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODgxOHxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaDkxLzg4OTQ2ODc4NzEwMDYuanBnfDdmOWI2ZTM1YjNkYzI4NjZjNjI0N2EyNjZiNTExMTMwZjgwMjA5ZWIxMGYzYzI5NDkyMjFlMGMwZDNkY2YzOTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1141" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3e"), + "name" : "Fossil Q Neely FTW5007P Hybrid Smart Watch, Beige", + "description" : "Fossil Q Neely FTW5007P Hybrid Smart Watch, Beige", + "price" : "211", + "sku" : "Fossil-Q-Neely-FTW5007P-Hybrid-Smart-Watch,-Beige", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5007-Smart-Watches-491363032-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODU0NXxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGY2Lzg4OTQ3MDYwOTAwMTQuanBnfDQ4NzY5NGNhY2M5NGYzYjlmMGRjZDRlYzg4ZmI0YmEzNmU4NmE3NWEyOTgxNDhlM2Q3NDQzY2Y4ZDUxODUyYzc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Neely" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5007P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Beige" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b3f"), + "name" : "Fossil Q Virginia FTW5009 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Virginia FTW5009 Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil-Q-Virginia-FTW5009-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5009-Smart-Watches-491363034-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTQwMXxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGE5Lzg4OTQ3MDgzODM3NzQuanBnfDJiNjI4YjIwMjRlZjY0NjE3NzNlNWQ5ZGFkNTgyMzc4NGI4ZjkyYzY0ZmZiYmM2MmU3NjMyMDNjY2Y4YTYzZGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Virginia" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b40"), + "name" : "Michael Kors Grayson MKT4012 Hybrid Watch, Blue", + "description" : "Michael Kors Grayson MKT4012 Hybrid Watch, Blue", + "price" : "290", + "sku" : "Michael-Kors-Grayson-MKT4012-Hybrid-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4012-Smart-Watches-491363043-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzk2MHxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaDU2Lzg4OTQ3NjE1MzM0NzAuanBnfGQ5ODQ1MDFlNzIxMDkyZTBmNzg5NjFlYmFjYmYxZGVkNTI2ZWU4ZGIwNDFlMzM1N2IwM2RhZmVkYWYzMzEyYjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b41"), + "name" : "Fossil Q Modern Pursuit FTW1136P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Modern Pursuit FTW1136P Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil-Q-Modern-Pursuit-FTW1136P-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1136-Smart-Watches-491350690-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTQzOHxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDY0Lzg4OTQ3NzM1MjY1NTguanBnfGI2MTg5OWRkNmUzZTk1MDMyZDMwODAzOGE2YzliZjJjNWFlYjc4ZGVhMThjNDQ1Y2FkZDhjMjk4M2I1M2JhNzg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Modern Pursuit" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1136P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b42"), + "name" : "Fossil Q Modern Pursuit FTW1146P Hybrid Smart Watch, Wine", + "description" : "Fossil Q Modern Pursuit FTW1146P Hybrid Smart Watch, Wine", + "price" : "174", + "sku" : "Fossil-Q-Modern-Pursuit-FTW1146P-Hybrid-Smart-Watch,-Wine", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1146-Smart-Watches-491350695-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzYxMnxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGI4Lzg4OTQ3Nzk0MjQ3OTguanBnfDU3NGU3YTI3MzMzZDdjOTU5NDdhN2E4ZmYxYjEwYThjNGRmZjRmNjA4MDBiYmExOGY4MTJiNzBmOGViNTgzN2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Modern Pursuit" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1146P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Wine" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Wine" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b43"), + "name" : "Fitbit Ionic FB503WTGY Smart Watch, Blue-Grey & Silver-Grey", + "description" : "Fitbit Ionic FB503WTGY Smart Watch, Blue-Grey & Silver-Grey", + "price" : "363", + "sku" : "Fitbit-Ionic FB503WTGY-Smart-Watch,-Blue-Grey-&-Silver-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB503WTGY-Smart-Watches-491378202-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjg3NHxpbWFnZS9qcGVnfGltYWdlcy9oNmQvaDI3Lzg5ODE2MjgxNTc5ODIuanBnfDk4MTljNWZiMWE0MWI1MWYxY2JkMDc2NjE0NWY5YWRjYzc2NmIzMDFjM2U4OGJkY2I3MzUzYWYyMTE2MDA5MjQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Ionic" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB503WTGY" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "304" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue-Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver-Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5 days" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Small and large bands" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b44"), + "name" : "FOSSIL FTW2117P Q Founder Gen 3 Smart Watch, Black", + "description" : "FOSSIL FTW2117P Q Founder Gen 3 Smart Watch, Black", + "price" : "290", + "sku" : "FOSSIL-FTW2117P-Q-Founder-Gen-3-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2117-Smart-Watches-491362960-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTcyNHxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDY2Lzg4ODMxNzc4ODE2MzAuanBnfDI0NGY0M2QyYWE2OGJmYzRhNjkyOWRiZjUyNWE3ZTMwN2VlNGQ5ZTFjNjk0ZjI5ZWY0N2NlN2IxMjIyNjliNjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2117P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+ or iPhone 5/iOS 9+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black Gray Case" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "G-Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b45"), + "name" : "FOSSIL FTW4001P Q Explorist Gen 3 Smart Watch, Gunmetal", + "description" : "FOSSIL FTW4001P Q Explorist Gen 3 Smart Watch, Gunmetal", + "price" : "319", + "sku" : "FOSSIL-FTW4001P-Q-Explorist-Gen-3-Smart-Watch,-Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW4001P-Q-Explorist-Gen-3-Smart-Watch-Gunmetal-491363008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzk2M3xpbWFnZS9qcGVnfGltYWdlcy9oMTAvaDkzLzg4NzQ3MTk5NjkzMTAuanBnfGJjMzhiMTdkMzkyYTZkNmRiMDlkNDgzNzExYzI1ZDk0MzA1ZDU0ODMyMDY2NTA5YzUyOGQ0NDVjZjU4OTYyMjI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW4001P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Charger (USB Type)
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b46"), + "name" : "FOSSIL FTW2109P Q Marshal Gen 2 Smart Watch, Silver", + "description" : "FOSSIL FTW2109P Q Marshal Gen 2 Smart Watch, Silver", + "price" : "290", + "sku" : "FOSSIL-FTW2109P-Q-Marshal-Gen-2-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2109-Smart-Watches-491362953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDE5NnxpbWFnZS9qcGVnfGltYWdlcy9oNjQvaDI1Lzg4ODMxNzA2NzI2NzAuanBnfDliMDlkZjBlMDc1ZTU2N2Y2NjZkYjA1NzAxOWU4MmQ2MTE0YmI5ZmMzOWY5OGMzMmY0ODkyYjYyMDgzZWZhZmY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2109P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "360" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+ or iPhone 5/iOS 9+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b47"), + "name" : "FOSSIL FTW2106P Q Marshal Gen 2 Smart Watch, Tan", + "description" : "FOSSIL FTW2106P Q Marshal Gen 2 Smart Watch, Tan", + "price" : "276", + "sku" : "FOSSIL-FTW2106P-Q-Marshal-Gen-2-Smart-Watch,-Tan", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2106-Smart-Watches-491362950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzgzM3xpbWFnZS9qcGVnfGltYWdlcy9oNDEvaGRjLzg4ODMxNzEwMDAzNTAuanBnfDdmMzAyMzE2MGUyMmJmNzJjMWEwNjAwYTgxOWI2MTA4ZDVhNDVkNGY3NjgyM2EyNDgyNDdhM2Q2MjQzZDU4ZDA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW2106P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "360" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Devices 4.3+ or iPhone 5/iOS 9+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Tan" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "FOSSIL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b48"), + "name" : "Skagen SKT1100 Hybrid Smart Watch, Silver", + "description" : "Skagen SKT1100 Hybrid Smart Watch, Silver", + "price" : "218", + "sku" : "Skagen-SKT1100-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1100-Smart-Watches-491362894-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDkzOXxpbWFnZS9qcGVnfGltYWdlcy9oYjgvaGUwLzg4ODk3NzkxOTE4MzguanBnfGUyY2Q1Njc4N2FlODUyN2M2ZjIxYmRiYjc1MjlmZWU4NWI5NGYzZmEzZjEyYjM2MzQ4NzhjMDNiYzRkNzJmYzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1100" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b49"), + "name" : "Skagen SKT1113 Hybrid Smart Watch, Silver", + "description" : "Skagen SKT1113 Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Skagen-SKT1113-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1113-Smart-Watches-491363001-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTQ3OXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGRmLzg4ODk3ODA4NjMwMDYuanBnfGY5NWMxOTc5Mjc0MDY4MjUxOTUwZjhhYjc4NjA2NGI1ZDc3ZmRhMjJkZDJhMTNiYmU1ODczOTg2ZGZkNGFhYmE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1113" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4a"), + "name" : "Skagen SKT1114 Hybrid Smart Watch, Green", + "description" : "Skagen SKT1114 Hybrid Smart Watch, Green", + "price" : "211", + "sku" : "Skagen-SKT1114-Hybrid-Smart-Watch,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1114-Smart-Watches-491363002-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTg1NnxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDUyLzg4ODk3Nzg2Njc1NTAuanBnfDZlZWY1MWRkNjI1ZTUxZGFjZWFlNzBhODkxMWE0MDIzODhmNjNmOGI2NTQ1NjhhYjc5MmQyOTQyNDEzMTg5YWY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1114" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Titanium" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4b"), + "name" : "Skagen SKT1112 Hybrid Smart Watch, Black", + "description" : "Skagen SKT1112 Hybrid Smart Watch, Black", + "price" : "196", + "sku" : "Skagen-SKT1112-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1112-Smart-Watches-491363000-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODEzNXxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaGVkLzg4ODk3OTk2MzkwNzAuanBnfGJkZWI0NzgwOWRjMDc0YjRlMTdhZmVhMGQ5NzJmOWZiYjZhZjhjNzhjYTBjZGU3N2Q1N2RlNGE5NWYzZGM4NzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1112" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4c"), + "name" : "Skagen SKT1111 Hybrid Smart Watch, Brown", + "description" : "Skagen SKT1111 Hybrid Smart Watch, Brown", + "price" : "196", + "sku" : "Skagen-SKT1111-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT1111-Smart-Watches-491362999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU1OXxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaDk3Lzg4ODk4MDMwNzk3MTAuanBnfDZlMTFiODc5ZTcyNTkzYWI2NjY3YjQ1NzVjOGZiMDMxZTFkYzNmOTgzNmFmZWE5MjZiZjNkMmRhNzdkMmY3ZDI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1111" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4d"), + "name" : "Fossil Q Accomplice FTW1208P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Accomplice FTW1208P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil-Q-Accomplice-FTW1208P-Hybrid-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1208-Smart-Watches-491363006-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDQ4MXxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaGVhLzg4OTQ2NDY0NTIyNTQuanBnfGNlOTkxMDU1YTYyNzZkM2RjMWVjNzFiZjE0NmJjZmIxNDFiY2UyMDg1Yjc5N2FhMzhhZWYxYzY3MWMyMmM1YTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1208P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4e"), + "name" : "Fossil Q Control FTW7001 Gen 3 Smart Watch, Grey", + "description" : "Fossil Q Control FTW7001 Gen 3 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil-Q-Control-FTW7001-Gen-3-Smart-Watch,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW7001-Smart-Watches-491350721-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzU3OHxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDdlLzg4OTQ2NTgxODMxOTguanBnfDA5MTc0M2MyMTZmMmY4MDExNWU1Mzk0YTUwZGJkNjlmNmRjOGQyYTgzMTU3NGIwNTIzMWJkZGFhN2JjMzVhMmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Control" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW7001" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.3+ or iOS 9.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b4f"), + "name" : "Fossil Q Commuter FTW1148 Hybrid Smart Watch, Black", + "description" : "Fossil Q Commuter FTW1148 Hybrid Smart Watch, Black", + "price" : "211", + "sku" : "Fossil-Q-Commuter-FTW1148-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1148-Smart-Watches-491363020-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzAwM3xpbWFnZS9qcGVnfGltYWdlcy9oNTgvaDg5Lzg4OTQ2NTg1MTA4NzguanBnfGMyYzk1MDVhNDdiZDZmMWYyMDI2YzczYWFjNDdjMzc1OTA4MDRhZDFkZTBiNDIzYWEyNjJhMjczZmMxNGM0MTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1148" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b50"), + "name" : "Fossil Q Commuter FTW1152P Hybrid Smart Watch, Gold", + "description" : "Fossil Q Commuter FTW1152P Hybrid Smart Watch, Gold", + "price" : "211", + "sku" : "Fossil-Q-Commuter-FTW1152P-Hybrid-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1152-Smart-Watches-491363024-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDk4NnxpbWFnZS9qcGVnfGltYWdlcy9oMGMvaDI3Lzg4OTQ2NjM3NTM3NTguanBnfDkyNDlhY2U5OTYwODgzMWVkMzFmMjEzZGJmZWU3ZmUwY2U2NTJkZWFkNjc2MWQ5OWEzN2RiYWI2YzUzNjYyZGE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1152P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b51"), + "name" : "Fossil Q Accomplice FTW1200P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Accomplice FTW1200P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil-Q-Accomplice-FTW1200P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1200-Smart-Watches-491362989-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTIzMHxpbWFnZS9qcGVnfGltYWdlcy9oY2MvaDI3Lzg4OTQ2Njg4NjU1NjYuanBnfDdhNDU1YWY4MTI3MjgwOWQ1Njg4ZGI4MTgyYzIwZjhiMGI1Mjc0OTYzYmIxMzQ2YTA0YWMyNWIxZjVhY2VhMDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1200P" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b52"), + "name" : "Fossil Q Explorist FTW4005P Gen 3 Smart Watch, Black", + "description" : "Fossil Q Explorist FTW4005P Gen 3 Smart Watch, Black", + "price" : "290", + "sku" : "Fossil-Q-Explorist-FTW4005P-Gen-3-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4005-Smart-Watches-491350709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTIyMnxpbWFnZS9qcGVnfGltYWdlcy9oZDYvaDNiLzg4OTQ2NjkxOTMyNDYuanBnfDJhOWRlNWJmNDQ3OGQ5MzI3YWYyNGI4YzE2MDA1YTVjMzVlOWVhNjRmNWUwMTM3ZjQxNDIwZTlhMzg0NWIwN2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Explorist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4005P" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Optical Sensor" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Case)" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b53"), + "name" : "Fossil Q Crewmaster FTW1126 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Crewmaster FTW1126 Hybrid Smart Watch, Silver", + "price" : "203", + "sku" : "Fossil-Q-Crewmaster-FTW1126-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1126-Smart-Watches-491362944-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM2NHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDE0Lzg4OTQ2NzE0ODcwMDYuanBnfGY4ODVkZDEyNTU0MTY0ZDhiNGZlM2JjYzA5ODM3MzljMDQ1MjQyZDQyZDVjNjcxYzY4OGY2Y2I3MzQwZDI4ZTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1126" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b54"), + "name" : "Fossil Q Crewmaster FTW1124 Hybrid Smart Watch, Black", + "description" : "Fossil Q Crewmaster FTW1124 Hybrid Smart Watch, Black", + "price" : "174", + "sku" : "Fossil-Q-Crewmaster-FTW1124-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1124-Smart-Watches-491362942-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjkzNXxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaDAzLzg4OTQ2NzIxNDIzNjYuanBnfDJkNDQ2NWVjYTY1YjAyZTBlMzlkYjIwMzE4Y2RmZDdkNzczOGVjYWQyYTU4NTNhYWRhYjRiNzQ3MGU3M2Q0ZTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1124" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b55"), + "name" : "Fossil Q Grant FTW1147 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1147 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil-Q-Grant-FTW1147-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1147-Smart-Watches-491363003-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTM3NHxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDk4Lzg4OTQ2NzgwNDA2MDYuanBnfDlkODEwM2Q2Nzk1MmIwZjczYjhlNTM4YzI2ZTQxOTA2NTZlZGI5YzQ1YzVlMTM4MTVjMzMzODYyOTY1YmUyNTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1147" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Months Based On Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b56"), + "name" : "Fossil Q Gazer FTW1106 Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Gazer FTW1106 Hybrid Smart Watch, Rose Gold", + "price" : "203", + "sku" : "Fossil-Q-Gazer-FTW1106-Hybrid-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1106-Smart-Watches-491362937-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzQ2NHxpbWFnZS9qcGVnfGltYWdlcy9oNGYvaGU3Lzg4OTQ2ODA5ODk3MjYuanBnfGYyOTk3MmI4ZDExMGFhMjQ2NTYyMjJkMjhiNTYzNjhhNWMwOGI1YTRjOGM4ZDA3ZGNiYWY2ZDMyYWY1YTBlNDU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1106" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b57"), + "name" : "Fossil Q Gazer FTW1105 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Gazer FTW1105 Hybrid Smart Watch, Silver", + "price" : "203", + "sku" : "Fossil-Q-Gazer-FTW1105-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1105-Smart-Watches-491362936-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODAzNXxpbWFnZS9qcGVnfGltYWdlcy9oMzIvaDZmLzg4OTQ2ODUzODA2MzguanBnfDUxYjc2ZjYxYThhZDFmNGU0OWVlZjE2MGNhOTRlZjQ1YWIzYzg5Yzc3ZmRjOTQ1Y2QyNzY3MmZjMjAyYzg5ZjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1105" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b58"), + "name" : "Fossil Q Crewmaster FTW1125 Gen 2 Hybrid Smart Watch, Blue", + "description" : "Fossil Q Crewmaster FTW1125 Gen 2 Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil-Q-Crewmaster-FTW1125-Gen-2-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1125-Smart-Watches-491362943-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzU2NHxpbWFnZS9qcGVnfGltYWdlcy9oYTQvaDc0Lzg4OTQ2ODQ3MjUyNzguanBnfGZjNWU4MWU0YTQ5NzM1MTU0MjE0ZDZmYmIyMGJjODJiNDlhYjM3OWNmZDQxZjM4NGNkNTg5NGNmNzY2ZjdjMWQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Crewmaster" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1125" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months Based on usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b59"), + "name" : "Fossil Q Gazer FTW1116 Hybrid Smart Watch, Grey", + "description" : "Fossil Q Gazer FTW1116 Hybrid Smart Watch, Grey", + "price" : "174", + "sku" : "Fossil-Q-Gazer-FTW1116-Hybrid-Smart-Watch,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1116-Smart-Watches-491362940-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Njg1MnxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDUyLzg4OTQ2OTA4MjAxMjYuanBnfDE3ZjU1OTMzODM4YmYxOGQwMDRlOTM3ZThkM2MwZGFjZTRlYWJmMDk4ZTEwMjQ0MTY4YTY2Mjk1NWQ3YjU5OTU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1116" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Dial)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Months Based On Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5a"), + "name" : "Fossil Q Gazer FTW1145P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Gazer FTW1145P Hybrid Smart Watch, Blue", + "price" : "203", + "sku" : "Fossil-Q-Gazer-FTW1145P-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1145-Smart-Watches-491362988-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDMyMHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDliLzg4OTQ2OTk2Njc0ODYuanBnfGE2YzA0YjA3NjlhYzA3ODhjZDQzYjgxYTIxZWE0ZDRkMDVjNTFjMDg3MWM1NDNkODZjZGIzNDFiNjBhODYzYzk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gazer" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1145P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5b"), + "name" : "Fossil Q Tailor FTW1127P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Tailor FTW1127P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil-Q-Tailor-FTW1127P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1127-Smart-Watches-491362945-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTc5OHxpbWFnZS9qcGVnfGltYWdlcy9oMWUvaDM5Lzg4OTQ3MDA5NzgyMDYuanBnfGUwNGY4MmVhNjQxNjg2MWY0N2IyNmQ0MGQ3NTViODc0MjQwZmM3Nzg2NWZlZjQwZGM0YTg5NTM3N2YxMTk4NDE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1127P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5c"), + "name" : "Fossil Q Wander FTW2114P Gen 2 Smart Watch, White", + "description" : "Fossil Q Wander FTW2114P Gen 2 Smart Watch, White", + "price" : "276", + "sku" : "Fossil-Q-Wander-FTW2114P-Gen-2-Smart-Watch,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2114-Smart-Watches-491362957-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDc5NnxpbWFnZS9qcGVnfGltYWdlcy9oNWYvaGJiLzg4OTQ3MDIyODg5MjYuanBnfDNhYmUxNTc0N2FiMWYwZjllNWNiMjM5ZTU3YzIyMGNlOGI2Y2I5NTA2MGFlMGQ3ZDMzOThlNTRiZjY4MDg2NGE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2114P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5d"), + "name" : "Fossil Q Tailor FTW1129 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Tailor FTW1129 Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil-Q-Tailor-FTW1129-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1129-Smart-Watches-491362947-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUxM3xpbWFnZS9qcGVnfGltYWdlcy9oZDAvaDA2Lzg4OTQ3MDg3MTE0NTQuanBnfDQ2ZDRiM2UxOTAzZjc5ZmUwN2NkNTNhZjZmMTFhNzE2MTJmNjk2MTRlNTM5ODczZTY2M2JiYmZiYjMwY2QyZDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1129" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months Based on Usage" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5e"), + "name" : "Fossil Q Wander FTW2113P Gen 2 Smart Watch, Wine", + "description" : "Fossil Q Wander FTW2113P Gen 2 Smart Watch, Wine", + "price" : "276", + "sku" : "Fossil-Q-Wander-FTW2113P-Gen-2-Smart-Watch,-Wine", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2113-Smart-Watches-491362956-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDMxM3xpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDAwLzg4OTQ3MTQ5MzczNzQuanBnfDQ0N2ZhYzAzZThmNDk5ODlmMDAwMjhlODUxOTE0YTU0ZjExMTI2MGJiM2RlNjIyYzNkMTY3MTZiODZlNTE0Yzk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2113P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Wine" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Burgundy (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b5f"), + "name" : "Fossil Q Nate FTW1115P Hybrid Smart Watch, Black", + "description" : "Fossil Q Nate FTW1115P Hybrid Smart Watch, Black", + "price" : "203", + "sku" : "Fossil-Q-Nate-FTW1115P-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1115-Smart-Watches-491362939-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDA2NHxpbWFnZS9qcGVnfGltYWdlcy9oZDAvaGIyLzg4OTQ3MjA3NzAwNzguanBnfGI0YjhlNGQ5MTA2YWU5Njc4MmM2Y2E1NmY4YmNiMTg5ZWM2MzIzOTliOWY0YjZmYmZjYWE0NThhZWVlNjYzMTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1115P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b60"), + "name" : "Fossil Q Wander FTW2111P Gen 2 Smart Watch, Silver", + "description" : "Fossil Q Wander FTW2111P Gen 2 Smart Watch, Silver", + "price" : "290", + "sku" : "Fossil-Q-Wander-FTW2111P-Gen-2-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2111-Smart-Watches-491362954-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njg4MHxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDU4Lzg4OTQ3MjIwODA3OTguanBnfGU2MzhlYjAyNmU2MTM4YWZhZmUwOTFhYzBkNzFkODA5NjYwY2Q0MTRmYWU4MTNiYjMxNDMxMTM4YmFkZDE2N2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2111P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Case)" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b61"), + "name" : "Fossil Q Nate FTW1123P Hybrid Smart Watch, Stainless Steel", + "description" : "Fossil Q Nate FTW1123P Hybrid Smart Watch, Stainless Steel", + "price" : "203", + "sku" : "Fossil-Q-Nate-FTW1123P-Hybrid-Smart-Watch,-Stainless-Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1123-Smart-Watches-491362941-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTA5NnxpbWFnZS9qcGVnfGltYWdlcy9oZjkvaGU4Lzg4OTQ3MjUwMjk5MTguanBnfDM2ODEwMjlkNmUxYTJjZjE4MDQwZDdiZWEwNmFkODlhYTkyMjgxYzBlMjkwMGJjYWE3ZjZkMDQ1ZDA5YjFiOWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1123P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b62"), + "name" : "Fossil Q Venture FTW6009P Gen 3 Smart Watch, Black", + "description" : "Fossil Q Venture FTW6009P Gen 3 Smart Watch, Black", + "price" : "290", + "sku" : "Fossil-Q-Venture-FTW6009P-Gen-3-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6009-Smart-Watches-491350710-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDc0MXxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDVjLzg4OTQ3MzAyNzI3OTguanBnfGQ0YzNjZGZmMTVlYjZhODhiYzJmYzIxZWU2OTU3ODI2YmUxYTEyNWExOWU3YWUxMjFmZjExZDM1YTMxNWEwYjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6009P" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b63"), + "name" : "Fossil Q Founder FTW2115P Gen 2 Smart Watch, White", + "description" : "Fossil Q Founder FTW2115P Gen 2 Smart Watch, White", + "price" : "276", + "sku" : "Fossil-Q-Founder-FTW2115P-Gen-2-Smart-Watch,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2115-Smart-Watches-491362958-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjMyNXxpbWFnZS9qcGVnfGltYWdlcy9oZDUvaGY0Lzg4OTQ3MzM1NDk1OTguanBnfGUyZDU3MzcxZjIxYzk1NDdhZDVjNTc5YWI5ZjAyM2Q4OTc1M2NiNjg4OTQxZGI5OWYwZDkyNTc0MDY0MGIxZWI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Founder" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2115P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b64"), + "name" : "Fossil Q Venture FTW6001P Gen 3 Smart Watch, Gold", + "description" : "Fossil Q Venture FTW6001P Gen 3 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil-Q-Venture-FTW6001P-Gen-3-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6001-Smart-Watches-491363014-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDc5MXxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaGZkLzg4OTQ3MjA0NDIzOTguanBnfGRjYzBhODU0ODU1OGEzN2M1NDViZjBiZTUwMzgzMDgwY2U5OWJlZjdkOGEyNzM2ODU5ZjA2YmIzZjE2OGRkYTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6001P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b65"), + "name" : "Fossil Q Nate FTW1114P Hybrid Smart Watch, Dark Brown", + "description" : "Fossil Q Nate FTW1114P Hybrid Smart Watch, Dark Brown", + "price" : "174", + "sku" : "Fossil-Q-Nate-FTW1114P-Hybrid-Smart-Watch,-Dark-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1114-Smart-Watches-491362938-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTYwMHxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaDY2Lzg4OTQ3MjYzNDA2MzguanBnfGRlNDYxN2VkYjkyMTAyMmQ4OGU0MDc0MmNmZDkwZTc2NDZjZDE5ZDM2YTRlZGQyZmNkMTM4NWFiMTRkMmZlMjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1114P" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b66"), + "name" : "Fossil Q Tailor FTW1128P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Tailor FTW1128P Hybrid Smart Watch, Blue", + "price" : "174", + "sku" : "Fossil-Q-Tailor-FTW1128P-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1128-Smart-Watches-491362946-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzUyMHxpbWFnZS9qcGVnfGltYWdlcy9oYzkvaGYyLzg4OTQ3MTQyODIwMTQuanBnfDU5MzY2ZTIwNmMwOTFlOGI0MGFlZmUwYWU4OWU5MjgyZGZhOWFiNjgzM2M1ODI4ZDg4YTliYWVlZDAzMTgyZTY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1128P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b67"), + "name" : "Fossil Q Founder FTW2119P Gen 2 Smart Watch, Dark Brown", + "description" : "Fossil Q Founder FTW2119P Gen 2 Smart Watch, Dark Brown", + "price" : "276", + "sku" : "Fossil-Q-Founder-FTW2119P-Gen-2-Smart-Watch,-Dark-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2119-Smart-Watches-491362961-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTk3MHxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaGI0Lzg4OTQ3MjQwNDY4NzguanBnfDgzNWRjY2MyNDExZGI3YjM3NjJlYTUxODljYzM2NzQ5YzgwMTZjYWVmZWNmZjkxYjdhZTc0MTczMjM5OTVlNGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Founder" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2119P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b68"), + "name" : "Fossil Q Venture FTW6002P Gen 3 Smart Watch, Rose Gold/ Blue", + "description" : "Fossil Q Venture FTW6002P Gen 3 Smart Watch, Rose Gold/ Blue", + "price" : "319", + "sku" : "Fossil-Q-Venture-FTW6002P-Gen-3-Smart-Watch,-Rose-Gold--Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6002-Smart-Watches-491363015-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Nzg1M3xpbWFnZS9qcGVnfGltYWdlcy9oNjUvaGIwLzg4OTQ3MzIyMzg4NzguanBnfGMyYjdiN2M2NWFmMTFkZWM5YWIyOTllMGZmYWVjZWE5ZjU1NTY5ZmJkOTRjNzA1ZDgwYTdkMzExZGY2MDFhNWQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6002P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue/ Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Blue" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b69"), + "name" : "Fossil Q Founder FTW2116P Gen 2 Smart Watch, Stainless Steel", + "description" : "Fossil Q Founder FTW2116P Gen 2 Smart Watch, Stainless Steel", + "price" : "290", + "sku" : "Fossil-Q-Founder-FTW2116P-Gen-2-Smart-Watch,-Stainless-Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2116-Smart-Watches-491362959-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODIwNXxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDM3Lzg4OTQ3MjY5OTU5OTguanBnfDk2MDQxN2RkYjNiYjQ5NjM0ZGE3YTc0MjUxNTdjZWZiMjIwYzNkZWEyY2YzNzMzN2ZiZjE2OGYzYTQ2YTZhMjE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Founder" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2116P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6a"), + "name" : "Michael Kors Dylan MKT5009 Smart Watch, Black", + "description" : "Michael Kors Dylan MKT5009 Smart Watch, Black", + "price" : "377", + "sku" : "Michael-Kors-Dylan-MKT5009-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5009-Smart-Watches-491362909-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTIzNnxpbWFnZS9qcGVnfGltYWdlcy9oYWEvaGZlLzg4OTQ3MzkzMTY3NjYuanBnfDFiNWQ2NzA5YmRiNWExZDM5Yzg4MzEwMDdmZDQzZjYxNWJlMGExMDI3OWFkNGEwYmE3YWVkNDRiNGJhMDkwY2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "46 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6b"), + "name" : "Michael Kors Dylan MKT5010 Smart Watch, Gold", + "description" : "Michael Kors Dylan MKT5010 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael-Kors-Dylan-MKT5010-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5010-Smart-Watches-491362905-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzAyOXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDVmLzg4OTQ3NDU4NzAzNjYuanBnfDEzYTdkM2NmZTQ2ZmIzZTk5ODhiOTRjYTk4MmE2MWJkOTY2NWQzNDcyZmYyYzFkYzkzNDZkYTZiZGI3NGY5MDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5010" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "46 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6c"), + "name" : "Michael Kors Bradshaw MKT5005 Smart Watch, Black", + "description" : "Michael Kors Bradshaw MKT5005 Smart Watch, Black", + "price" : "377", + "sku" : "Michael-Kors-Bradshaw-MKT5005-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5005-Smart-Watches-491362903-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjExMnxpbWFnZS9qcGVnfGltYWdlcy9oNzMvaDAzLzg4OTQ3NDY4NTM0MDYuanBnfDliMzA4YzRiNzhmMGY5NjhjOTRkYzNmYWQyOGU0MzRiYmYyYzhkNjgxMjA2ZmY0M2NkMTE4NWM3NTQ1OWE2M2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5005" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android devices" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6d"), + "name" : "Fossil Q Venture FTW6006P Gen 3 Smart Watch, Gold", + "description" : "Fossil Q Venture FTW6006P Gen 3 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil-Q-Venture-FTW6006P-Gen-3-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6006-Smart-Watches-491363017-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDM0N3xpbWFnZS9qcGVnfGltYWdlcy9oYzAvaGIxLzg4OTQ3Mzk2NDQ0NDYuanBnfDJkNjg4YTc2ZWNlYjA2ZmI0MTAyMzZkNzUyYmVhZDI2NDhhOTA0NTZkZWI1YTBlNzQ0Njg5YTEwN2NmNzA5YmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Venture" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6006P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android v4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 Hours Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6e"), + "name" : "Michael Kors Bradshaw MKT5001 Smart Watch, Gold", + "description" : "Michael Kors Bradshaw MKT5001 Smart Watch, Gold", + "price" : "377", + "sku" : "Michael-Kors-Bradshaw-MKT5001-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5001-Smart-Watches-491362907-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzM0MnxpbWFnZS9qcGVnfGltYWdlcy9oOGYvaDI2Lzg4OTQ3NDk1NDAzODIuanBnfDBlMzgxZjdjOTdkZWNkNzQ1ZjY2YTdmMDQ2MDg3YjlkNGU5NTAzYTQxNzFhOTk5OTdmY2I5YWU2ZDIzNjU3MTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b6f"), + "name" : "Michael Kors Gage MKT4000 Hybrid Watch, Silver", + "description" : "Michael Kors Gage MKT4000 Hybrid Watch, Silver", + "price" : "319", + "sku" : "Michael-Kors-Gage-MKT4000-Hybrid-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4000-Smart-Watches-491362901-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTc5MHxpbWFnZS9qcGVnfGltYWdlcy9oY2MvaDBmLzg4OTQ3NTQzMjQ1MTAuanBnfGRlNzlhOTJkMDQ2ODNiMjZmZDA4MDdlYzFkZDZmNGU1MTgxNThhZTMzZDQ2YWNmOTBmODcyZTFhYzk1YWZlMzQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4000" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b70"), + "name" : "Michael Kors Slim Runway MKT4004 Hybrid Smart Watch, Silver", + "description" : "Michael Kors Slim Runway MKT4004 Hybrid Smart Watch, Silver", + "price" : "319", + "sku" : "Michael-Kors-Slim-Runway-MKT4004-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4004-Smart-Watches-491362992-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTUyNHxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGJhLzg4OTQ3NTUzMDc1NTAuanBnfDc4ZTllZmYyOWQ1YmJlMzM4NDlkOTcxNjU4NzQ5MGI3ZTE0MjU0OTIzNTUwMWE5NTU0NjMxMTAwZjJkMTU2ZmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4004" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Size", + "attributeValue" : "41 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b71"), + "name" : "Michael Kors Gage MKT4001 Hybrid Smart Watch, Brown", + "description" : "Michael Kors Gage MKT4001 Hybrid Smart Watch, Brown", + "price" : "290", + "sku" : "Michael-Kors-Gage-MKT4001-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4001-Smart-Watches-491362899-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTExNHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDUyLzg4OTQ3NTMzNDE0NzAuanBnfGIzYjczMzJlN2ZjMzEyMTY5NTUyN2U2MWNmNDdjODY2YzhiYTFmZGMxZjFlMTNhNGY2MzZhODFiMTkyNzc0NTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b72"), + "name" : "Michael Kors Slim Runway MKT4002 Hybrid Smart Watch, Gold", + "description" : "Michael Kors Slim Runway MKT4002 Hybrid Smart Watch, Gold", + "price" : "269", + "sku" : "Michael-Kors-Slim-Runway-MKT4002-Hybrid-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4002-Smart-Watches-491362900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjI4M3xpbWFnZS9qcGVnfGltYWdlcy9oNmEvaGE2Lzg4OTQ3NjE4NjExNTAuanBnfDQ1Mjc5ZGRiNzI5YmM3ZGU3M2RlYWNjN2NjZmNhYWZmNmFjNDViZTliYjhjYjcxOTBjYmI5YjQxY2U2MjllNmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT4002" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "While (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b73"), + "name" : "Michael Kors Dylan MKT5011 Smart Watch, Black", + "description" : "Michael Kors Dylan MKT5011 Smart Watch, Black", + "price" : "377", + "sku" : "Michael-Kors-Dylan-MKT5011-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5011-Smart-Watches-491362904-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzMxMHxpbWFnZS9qcGVnfGltYWdlcy9oMjEvaGZkLzg4OTQ3Njc5NTU5OTguanBnfDE4ZWY1ZWY2MDdkY2M5ODQ4YzRiMWM2MTMxMTI1NjBmZmNiZmFjOTgxMWJhZjIzODRlMjhlNzQ3NTNiNGNiNDU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5011" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b74"), + "name" : "Michael Kors Bradshaw MKT5003 Smart Watch, Gold", + "description" : "Michael Kors Bradshaw MKT5003 Smart Watch, Gold", + "price" : "403", + "sku" : "Michael-Kors-Bradshaw-MKT5003-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5003-Smart-Watches-491362908-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODUzMnxpbWFnZS9qcGVnfGltYWdlcy9oNmMvaDNlLzg4OTQ3NzMxOTg4NzguanBnfDk3OGU1ZTQ3YjQ4YzQzMGFhYWViNWY3NTBhZTVmMzYzOWEzMDhjYmY1ZjE5NTQwY2FhYmVmODZkNDU0ZWYxMDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5003" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone and Android Phones" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b75"), + "name" : "Fossil Q Jacqueline FTW5018P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Jacqueline FTW5018P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil-Q-Jacqueline-FTW5018P-Hybrid-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5018-Smart-Watches-491350708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzU4NHxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaDlkLzg4OTQ3Nzg0NDE3NTguanBnfDE0ZThmOGMzZDcwYjI1YTg0YWI0Njk0NzA4MDc4YWJiYzViZjQzMTEzMGYxYjYwODM5ZTNlNTllZWI5ODJiYTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5018P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b76"), + "name" : "Michael Kors Bradshaw MKT5007 Smart Watch, Brown", + "description" : "Michael Kors Bradshaw MKT5007 Smart Watch, Brown", + "price" : "377", + "sku" : "Michael-Kors-Bradshaw-MKT5007-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5007-Smart-Watches-491362902-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzkxMnxpbWFnZS9qcGVnfGltYWdlcy9oNjAvaGYyLzg4OTQ3Njc0MzE3MTAuanBnfGMwNWQzNTEzN2Q1NDI0MWI1ZmY2OGM1MjBiYTg5NmFjZjVjMDE4NzRmM2Y2M2E2NzM0MzdiMGY4NTk4MDExMWM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MKT5007" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Size", + "attributeValue" : "44.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b77"), + "name" : "Fossil Q Wander FTW2103P Gen 2 Smart Watch, Black", + "description" : "Fossil Q Wander FTW2103P Gen 2 Smart Watch, Black", + "price" : "276", + "sku" : "Fossil-Q-Wander-FTW2103P-Gen-2-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2103-Smart-Watches-491362949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjQ5MXxpbWFnZS9qcGVnfGltYWdlcy9oZTAvaGIxLzg4OTQ3NzU4MjAzMTguanBnfGViOGE3ZGI1YWRiZGY1NzA5MmVjN2U1NjRiZjkyYzZiOGNmZjgwOGYzMTVkYWE3MTU2YzJmMjQ0MTE4MDMyY2U", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Wander" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2103P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b78"), + "name" : "Fossil Q Marshal FTW2107P Gen 2 Smart Watch, Black", + "description" : "Fossil Q Marshal FTW2107P Gen 2 Smart Watch, Black", + "price" : "276", + "sku" : "Fossil-Q-Marshal-FTW2107P-Gen-2-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2107-Smart-Watches-491362951-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTUxN3xpbWFnZS9qcGVnfGltYWdlcy9oYmMvaGJhLzg4OTQ3ODUyNTc1MDIuanBnfDI0ZWU3MjI1ODU1OGY3MmQ5YmMyM2Q2OWNhZDM1MDQ5YjExZjY0ZDExYzA4MDc2NzhjYjU5ZjQ3NDg3MDc4Yjg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Marshal" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2107P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b79"), + "name" : "Fossil Q Marshal FTW2108P Gen 2 Smart Watch, Smoke", + "description" : "Fossil Q Marshal FTW2108P Gen 2 Smart Watch, Smoke", + "price" : "290", + "sku" : "Fossil-Q-Marshal-FTW2108P-Gen-2-Smart-Watch,-Smoke", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2108-Smart-Watches-491362952-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODM4NHxpbWFnZS9qcGVnfGltYWdlcy9oOTIvaGRlLzg4OTQ3ODI3NjcxMzQuanBnfGJmOGJlODE5MjQwZTY3ZTIxMzNlMDQyZWZhMGY3NTVhZmIzMDA5NjdlYjU4YjRhMTI5NmZmN2Q4ZDBmZmFlOTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Marshal" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2108P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Wear" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Smoke" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Grey" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Wear 2100" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (USB type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7a"), + "name" : "Apple Watch Series 2 - 42mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 2 - 42mm Space Gray Aluminum Case with Black Sport Band", + "price" : "486", + "sku" : "Apple-Watch-Series-2---42mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Series-2-42mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band-491277196-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTYxNnxpbWFnZS9qcGVnfGltYWdlcy9oYmEvaGQ0Lzg5MjkzNzgxMDc0MjIuanBnfDNkYzJhMjYzMzViNDZmMmZmOTZhNWQ3NGQ0OTc3ZjlkMzg1NWViMDY5ZGM0Y2I5YWE1YzZlYjVkNWQ0NGUzZGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 2" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 3" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.2" + }, + { + "attributeName" : "Size", + "attributeValue" : "36.4 x 11.4 x 42.5 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-Core" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 Hours (varies by use and configuration)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • S2 dual-core processor
  • Built-in GPS
  • Water resistant 50 meters
  • Ion-X glass
  • 2x brighter OLED Retina display with Force Touch (1000 nits)
  • Ceramic back
  • Digital Crown
  • Heart rate sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Space Gray Aluminum Case
  • Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter (Included with Series 2 only)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7b"), + "name" : "Misfit Phase MIS5007 Smart Watch, Brown", + "description" : "Misfit Phase MIS5007 Smart Watch, Brown", + "price" : "203", + "sku" : "Misfit-Phase-MIS5007-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS5007-Smart-Watches-491350687-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDYyOXxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDk0Lzg4ODk4MDExNzkxNjYuanBnfDliZTEwNjgzZmI0YzVkZTg1ZmQxOTEzNGE5N2JiNTk5M2UwMGI2ZmI5YmVmY2ExMmIyNzQ3ZmU2MjU1YmRhYzc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MIS5007" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Misfit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7c"), + "name" : "Misfit Phase MIS5000 Hybrid Smart Watch, Black", + "description" : "Misfit Phase MIS5000 Hybrid Smart Watch, Black", + "price" : "182", + "sku" : "Misfit-Phase-MIS5000-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Misfit-MIS5000-Smart-Watches-491350685-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE1NHxpbWFnZS9qcGVnfGltYWdlcy9oZmQvaGZmLzg4ODk4MzAwMTUwMDYuanBnfDlmZGM5MzBlNDczYjlkMmI4YjdiZWJkZGU0ZDdjMjM2OWQ1NzE3Mjg2MzY0NGNkNmJhNjE0MzI2ZjgzYjc3MDc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MIS5000" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "MISFIT" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Misfit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7d"), + "name" : "Fossil Q X Cory Richards FTW2120SETP Smart Watch, Silver/Brown", + "description" : "Fossil Q X Cory Richards FTW2120SETP Smart Watch, Silver/Brown", + "price" : "348", + "sku" : "Fossil-Q-X-Cory-Richards-FTW2120SETP-Smart-Watch,-Silver-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW2120SET-Smart-Watches-491350699-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODU5OXxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaDhhLzg4OTQ2NDU0NjkyMTQuanBnfDU4MWU1MDM1ZGIyOTY5MjA2NzI0NjJiZmJhODM0NzNmYWVjNjk5NWJmNjc0YTQ3NWVlN2FhMGVmYzhhNzhkYWU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q X Cory Richards" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW2120SETP" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver/Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 24 hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7e"), + "name" : "Fossil Q Accomplice FTW1201P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Accomplice FTW1201P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil-Q-Accomplice-FTW1201P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1201-Smart-Watches-491350696-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTAzM3xpbWFnZS9qcGVnfGltYWdlcy9oODQvaDdhLzg4OTQ2NTE2Mjk1OTguanBnfGU3MjE3MDI5ZTRjOGZmOGYwMzUwYmI3ODNmODdhOGU3OTA5MWI4ZGU5OWQ2OGNhYmQ3NmJjZjMzOGRhZTVlMjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1201P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b7f"), + "name" : "Fossil Q Accomplice FTW1202P Hybrid Smart Watch, Silver", + "description" : "Fossil Q Accomplice FTW1202P Hybrid Smart Watch, Silver", + "price" : "203", + "sku" : "Fossil-Q-Accomplice-FTW1202P-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1202-Smart-Watches-491350697-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzA3MnxpbWFnZS9qcGVnfGltYWdlcy9oYmEvaDFiLzg4OTQ2NDU3OTY4OTQuanBnfDIzOTYzNjI2ZTE2NDQxZjNkNmViYWYxY2UxNTI4MzI4YTI1NzUzMWFkMTRjNTQwZTk1MmIzNjgwNTViNmQzMGQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1202P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 Months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b80"), + "name" : "Fossil Q Accomplice FTW1203P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Accomplice FTW1203P Hybrid Smart Watch, Blue", + "price" : "203", + "sku" : "Fossil-Q-Accomplice-FTW1203P-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1203-Smart-Watches-491350698-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODE1M3xpbWFnZS9qcGVnfGltYWdlcy9oMDIvaGM4Lzg4OTQ2NTM5MjMzNTguanBnfGM5MTIzNzliNGY3NzYyODdjNDliOTM5ODQ4NDJkNzE3ZmZjNDIxMGViNzNiMGUxNzljMzIwMDYxOWIxN2Q4OTE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Accomplice" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1203P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b81"), + "name" : "Fossil Q Activist FTW1204 Hybrid Smart Watch, Brown", + "description" : "Fossil Q Activist FTW1204 Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil-Q-Activist-FTW1204-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1204-Smart-Watches-491350700-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODM0NHxpbWFnZS9qcGVnfGltYWdlcy9oNTkvaDlhLzg4OTQ2NTc4NTU1MTguanBnfDZiZWY4ZWE2NGUyM2VlNjEwNGQ3MjMxZDU2YTQ5NjIyOWE1YjM5YmMzYTAxN2E5NjczMTJmYjk4YTNlZDE2ODI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Activist" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1204" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b82"), + "name" : "Fossil Q Grant FTW1157P Hybrid Smart Watch, Black", + "description" : "Fossil Q Grant FTW1157P Hybrid Smart Watch, Black", + "price" : "189", + "sku" : "Fossil-Q-Grant-FTW1157P-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1157-Smart-Watches-491350701-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzI0MXxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDljLzg4OTQ2ODYyMzI2MDYuanBnfDY3OTE2MGFmNWVjZTk0YjM5Zjk4YjFkYjk1NjdkYTY0Y2JkOWJhNmFiMTYyNDkyNjUwYTcxNDMyNGU1ZjcxMmI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1157P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b83"), + "name" : "Fossil Q Grant FTW1140P Hybrid Smart Watch, Blue/Gray", + "description" : "Fossil Q Grant FTW1140P Hybrid Smart Watch, Blue/Gray", + "price" : "203", + "sku" : "Fossil-Q-Grant-FTW1140P-Hybrid-Smart-Watch,-Blue-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1140-Smart-Watches-491350691-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjA3MHxpbWFnZS9qcGVnfGltYWdlcy9oODUvaDUwLzg4OTQ2OTA0OTI0NDYuanBnfDc0ZDc3YjgyYTFjZmFhZjNkNTlhMmIxMzJlZGU0ZmQ4MmVjNTIwOTRiZGZmZjdlYWMwOTE2ZTA2ODY4NWM2YjI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1140P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue/Gray" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b84"), + "name" : "Fossil Q Neely Cabernet FTW5003P Hybrid Smart Watch, Red", + "description" : "Fossil Q Neely Cabernet FTW5003P Hybrid Smart Watch, Red", + "price" : "189", + "sku" : "Fossil-Q-Neely-Cabernet-FTW5003P-Hybrid-Smart-Watch,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5003-Smart-Watches-491350702-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzA4OHxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDVhLzg4OTQ3MDMyNzE5NjYuanBnfDI5NGI5NmVkOWQ4Mjc1MGExZWFkNmNlZTRhNzA1MDk3ZmRlYmMwNjFmOGRiOTc1Y2YxMzY0MmQwMDg2ZWNhYTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Neely Cabernet" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5003P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b85"), + "name" : "Fossil Q Tailor FTW1144P Hybrid Smart Watch, Gold", + "description" : "Fossil Q Tailor FTW1144P Hybrid Smart Watch, Gold", + "price" : "203", + "sku" : "Fossil-Q-Tailor-FTW1144P-Hybrid-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1144-Smart-Watches-491350694-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzU0MnxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDUwLzg4OTQ3MTQ2MDk2OTQuanBnfDYzMzFlZjVlOTlhMzhmMTAyNmY2ODY4NTg1ZDJlYmZhYzRkNjhkMzgwNWNkMmVmNjU0Yzc3MjYyYWY0MGY4ZDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Tailor" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1144P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b86"), + "name" : "Fossil Q Nate FTW1142P Hybrid Smart Watch, Gold", + "description" : "Fossil Q Nate FTW1142P Hybrid Smart Watch, Gold", + "price" : "203", + "sku" : "Fossil-Q-Nate-FTW1142P-Hybrid-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1142-Smart-Watches-491350693-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTc3NHxpbWFnZS9qcGVnfGltYWdlcy9oMmEvaDYyLzg4OTQ3Mzk5NzIxMjYuanBnfGRjNzI2MWZhNTMxZWU1MDdmNGMzZTUxODkyNTBiMzllZjFhNTQzOWIzZGUyNTM5OTAyYjE4NWEwMTkzNTlkMTk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1142P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b87"), + "name" : "Fossil Q Modern Pursuit FTW1135P Hybrid Smart Watch, White", + "description" : "Fossil Q Modern Pursuit FTW1135P Hybrid Smart Watch, White", + "price" : "174", + "sku" : "Fossil-Q-Modern-Pursuit-FTW1135P-Hybrid-Smart-Watch,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1135-Smart-Watches-491350689-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDYzMHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGE0Lzg4OTQ3NjUxMzc5NTAuanBnfDk0MGU1NjU2M2ExYWY0MmYzNTA4NWQxYjhlMTJhNzRiM2IyM2Y2MGViNWJlMzQ0MWM5YTg1ODgzNDgwY2M4YzU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Modern Pursuit" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1135P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b88"), + "name" : "Fossil Q Scarlette FTW5015P Hybrid Smart Watch, Silver", + "description" : "Fossil Q Scarlette FTW5015P Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil-Q-Scarlette-FTW5015P-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5015-Smart-Watches-491350705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzMzM3xpbWFnZS9qcGVnfGltYWdlcy9oMDAvaGZhLzg4OTQ3Njk1OTQzOTguanBnfDJlMGMzZGRiMzY0ZmNkNTgxODUzYjJhMGJkNDc3YjJmZDU2YmUxZDNjYjc5NWYzZGZiNTRmYzAzMGQ3MTkxZjU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Scarlette" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5015P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b89"), + "name" : "Fossil Q Scarlette FTW5016P Hybrid Smart Watch, Rose Gold", + "description" : "Fossil Q Scarlette FTW5016P Hybrid Smart Watch, Rose Gold", + "price" : "211", + "sku" : "Fossil-Q-Scarlette-FTW5016P-Hybrid-Smart-Watch,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5016-Smart-Watches-491350706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI2MnxpbWFnZS9qcGVnfGltYWdlcy9oZmUvaDI2Lzg4OTQ3ODAwODAxNTguanBnfDQwMDVkYTdmOGM2OTA3Mzk5ODg1NTcyN2RhOGJlZjg2NjVjMzFlM2IzZWNjNzc3NTI1OGUxYzZiNDlmODljMDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Scarlette" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5016P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8a"), + "name" : "Fossil Q Jacqueline FTW5012P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Jacqueline FTW5012P Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil-Q-Jacqueline-FTW5012P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5012-Smart-Watches-491350704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTAxNHxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaDQ1Lzg4OTQ3NzQ1MDk1OTguanBnfDRhOGRjMmU0OWZiM2VkYWI4NGRmZTgxMDJiNDAyNjMxNDgxOTA4YWYwMmFmYTVhOTdkZjVlOWQxMGJjNmQxOTY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5012P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Month" + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8b"), + "name" : "Fossil Q Commuter FTW1153 Hybrid Smart Watch, Silver", + "description" : "Fossil Q Commuter FTW1153 Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil-Q-Commuter-FTW1153-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1153-Smart-Watches-491363025-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE2OHxpbWFnZS9qcGVnfGltYWdlcy9oYjAvaGM0Lzg4OTQ2Njc2ODU5MTguanBnfDZlM2FmYjYwMWUzODQzMGJmOWNmMTM3ZThmODg1ZDMwMWQyOTY0NmMzMDE0YzQzODY5NGJmZDRiZWFjYmMyNGE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Commuter" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1153" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8c"), + "name" : "Fossil Q Grant FTW1122P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1122P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil-Q-Grant-FTW1122P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1122-Smart-Watches-491363105-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTM5MXxpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDY1Lzg4OTQ2NzMxMjU0MDYuanBnfDEyNTVlNmEwYmIwNDY3NDUxOGY4ZjQwOWU5MzY0MWRjN2EzNTg0ZWYyMzU0NGU2NmU5NmM0YTg5MzBmOGEyMjA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1122P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8d"), + "name" : "Fossil Q Grant FTW1155 Hybrid Smart Watch, Blue", + "description" : "Fossil Q Grant FTW1155 Hybrid Smart Watch, Blue", + "price" : "189", + "sku" : "Fossil-Q-Grant-FTW1155-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1155-Smart-Watches-491363027-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTk1OXxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDM0Lzg4OTQ2Nzc3MTI5MjYuanBnfDQyMmQ4MWIxNzVkYjhkOWNlM2QxNjhjOGFkNjY5ZjhiZGVlMzhlYWVhZjllZTY2ZWI3NzhiYzRmNjVjMDM1Zjc", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1155" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue (Dial)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8e"), + "name" : "Fossil Q Grant FTW1139P Hybrid Smart Watch, Black/Smoke", + "description" : "Fossil Q Grant FTW1139P Hybrid Smart Watch, Black/Smoke", + "price" : "203", + "sku" : "Fossil-Q-Grant-FTW1139P-Hybrid-Smart-Watch,-Black-Smoke", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1139-Smart-Watches-491363106-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDEyMXxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGJjLzg4OTQ2NzM3ODA3NjYuanBnfDc1NzcxYjEzNjg3OTliMzljOTZmZWM1NWFiZjllOTdmZTk4MTZkYWU1ZmViODMyODI0YmJlZjI4MTkyMWE0ZTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1139P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black/Smoke" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b8f"), + "name" : "Fossil Q Grant FTW1156P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1156P Hybrid Smart Watch, Brown", + "price" : "189", + "sku" : "Fossil-Q-Grant-FTW1156P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1156-Smart-Watches-491363028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODY0NXxpbWFnZS9qcGVnfGltYWdlcy9oZTUvaDExLzg4OTQ2NzkwMjM2NDYuanBnfGI1MDAzYzE2YTg2ZWMyNTM1ODg5Yjk3OGUwNzc2YjA4OWM0NjRiYjdlNjE2ZmVlMTRiYzBmNzUxODdiODMwYWU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1156P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b90"), + "name" : "Fossil Q Grant FTW1158P Hybrid Smart Watch, Silver", + "description" : "Fossil Q Grant FTW1158P Hybrid Smart Watch, Silver", + "price" : "211", + "sku" : "Fossil-Q-Grant-FTW1158P-Hybrid-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1158-Smart-Watches-491363038-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTg1M3xpbWFnZS9qcGVnfGltYWdlcy9oYjUvaDM1Lzg4OTQ2ODM3NDIyMzguanBnfDBiZTg4OGE3NGQyNTY4ZmEwMDU5ZjIxN2IyNTU3MjQ4ZTE4Zjg1ZjU1MGQ4MDc5MTc1ODNmZjg0NDlmOGY3MzY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1158P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iOS 9.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b91"), + "name" : "Fossil Q Grant FTW1118P Hybrid Smart Watch, Brown", + "description" : "Fossil Q Grant FTW1118P Hybrid Smart Watch, Brown", + "price" : "174", + "sku" : "Fossil-Q-Grant-FTW1118P-Hybrid-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1118-Smart-Watches-491363104-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODkzNnxpbWFnZS9qcGVnfGltYWdlcy9oMDcvaGYyLzg4OTQ2OTI3ODYyMDYuanBnfDgyMGI5MzAxNTQ5MDlmOGQ5NmRjMzc4NDgwYTg0YWY5OTFmYTMxZmZmNjZlZmJmMGJkYjViNGE0OTZlNmU5ZDQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Grant" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1118P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "One year Based on Usage" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b92"), + "name" : "Fossil Q Neely FTW5008P Hybrid Smart Watch, Black", + "description" : "Fossil Q Neely FTW5008P Hybrid Smart Watch, Black", + "price" : "189", + "sku" : "Fossil-Q-Neely-FTW5008P-Hybrid-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5008-Smart-Watches-491363037-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjgxNnxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGE5Lzg4OTQ3MTM5NTQzMzQuanBnfDM5ODkyZmFlNTBiYzg4OTU4ODJlYjRjMGJhYTk1NWRmMmNhMDc0OWQ4ODJiZGU5MjZkMjA0OGRkY2NmOGU1ZWQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Neely" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5008P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver (Case)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b93"), + "name" : "Fossil Q Nate FTW1160P Hybrid Smart Watch, Gunmetal", + "description" : "Fossil Q Nate FTW1160P Hybrid Smart Watch, Gunmetal", + "price" : "211", + "sku" : "Fossil-Q-Nate-FTW1160P-Hybrid-Smart-Watch,-Gunmetal", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1160-Smart-Watches-491363030-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTM5MnxpbWFnZS9qcGVnfGltYWdlcy9oZWQvaDgwLzg4OTQ3Mjk5NDUxMTguanBnfDg2N2U5MDI5Mjc1MDNjMjk3NDgxNTM2OWIyM2MzYjNiYTcwNzg1YTUwNjRlYWMxNmRjMGI4YWUzZDViODZkNDk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1160P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gunmetal" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Gunmetal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b94"), + "name" : "Fossil Q Nate FTW1159P Hybrid Smart Watch, Dark Brown", + "description" : "Fossil Q Nate FTW1159P Hybrid Smart Watch, Dark Brown", + "price" : "189", + "sku" : "Fossil-Q-Nate-FTW1159P-Hybrid-Smart-Watch,-Dark-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW1159-Smart-Watches-491363029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDU4MnxpbWFnZS9qcGVnfGltYWdlcy9oZTgvaDYyLzg4OTQ3MzQ1MzI2MzguanBnfDE2MzJlMzQwNTM0OTMwMTNkZmM1NWQ4YmMzMWRlNGVkMjFlZDY4N2EzOTAwZTQzZGUyMzY4MmJiZDEwOTZhMGM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Nate" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW1159P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b95"), + "name" : "Fossil Q Jacqueline FTW5013P Hybrid Smart Watch", + "description" : "Fossil Q Jacqueline FTW5013P Hybrid Smart Watch", + "price" : "189", + "sku" : "Fossil-Q-Jacqueline-FTW5013P-Hybrid-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5013-Smart-Watches-491363036-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODM5NHxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaGY4Lzg4OTQ3Nzk3NTI0NzguanBnfGMyOWM3ZTBmYTEzZTVlMjAxZWE0ZmUwODYwODFmNWIwZWJiMzJjYTRjNTg5NDRkMzUyMTRmYzY4MzYzMmFlOGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5013P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b96"), + "name" : "Fossil Q Jacqueline FTW5014P Hybrid Smart Watch, Blue", + "description" : "Fossil Q Jacqueline FTW5014P Hybrid Smart Watch, Blue", + "price" : "189", + "sku" : "Fossil-Q-Jacqueline-FTW5014P-Hybrid-Smart-Watch,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW5014-Smart-Watches-491363035-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTkzN3xpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGJiLzg4OTQ3ODM5NDY3ODIuanBnfDYyNWIxNTUwOTNlNGM3NjAyMGRjZGVhZmEyOGNiOWU4Mzg3YTRlN2YxYmNhNmM2MjViYmY4ZTI2YjIyYzQ1NGU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Jacqueline" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW5014P" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Case - Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Upto 6 months" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Q Tool" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b97"), + "name" : "Apple Watch Series 3 - 42mm Space Gray Aluminum Case with Black Sport Band", + "description" : "Apple Watch Series 3 - 42mm Space Gray Aluminum Case with Black Sport Band", + "price" : "596", + "sku" : "Apple-Watch-Series-3---42mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Watch-Series-3-42mm-Space-Gray-Aluminum-Case-with-Black-Sport-Band-491379734-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTYwNnxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaGJmLzg5MzQwMzk3MTU4NzAuanBnfGU1MmY2ZmIxOWQwMDcyZjk4ZDBhNWQxYTg3M2NkMWM5MmEyYTVjYmI0MmUzM2U0YjQ1ZGZlMDNlODYxNDIwNzI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Series 3" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "watchOS 4" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "3.64" + }, + { + "attributeName" : "Depth", + "attributeValue" : "1.14" + }, + { + "attributeName" : "Weight", + "attributeValue" : "34.9" + }, + { + "attributeName" : "Size", + "attributeValue" : "42mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Rectangle" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 18 hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Built-in GPS and GLONASS
  • Faster dual-core processor
  • W2 chip
  • Barometric altimeter
  • Heart rate sensor
  • Ion-X strengthened glass
  • Ceramic back
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Space Gray Aluminum Case
  • Sport Band (can be configured for either S/M or M/L length)
  • 1m Magnetic Charging Cable
  • 5W USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b98"), + "name" : "SKAGEN Falster SKT5001 Smart Watch, Falster Black Leather", + "description" : "SKAGEN Falster SKT5001 Smart Watch, Falster Black Leather", + "price" : "290", + "sku" : "SKAGEN-Falster-SKT5001-Smart-Watch,-Falster-Black-Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5001-Smart-Watches-491378296-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzQwN3xpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDBmLzg5Nzg1OTgxOTkzMjYuanBnfGJiZjE5ZTBjNmI3ZGFjMzBlNzlmYmUwY2E5NTc4MjZkNTllNGRkYWUzZWRiZTk3YTU0YzVhMWUzNGRjZWFkODM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5001" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b99"), + "name" : "SKAGEN Falster SKT5000 Smart Watch, Falster Steel Mesh", + "description" : "SKAGEN Falster SKT5000 Smart Watch, Falster Steel Mesh", + "price" : "319", + "sku" : "SKAGEN-Falster-SKT5000-Smart-Watch,-Falster-Steel-Mesh", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5000-Smart-Watches-491378295-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDU5OHxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDFjLzg5Nzg1OTMyODQxMjYuanBnfGVhNDY3YjJmYTY2ZjU0ODRiM2JhMjcxMzM0ODNjOWUyOTllNTRiZTI2NmFmNDg4OGM1YjU3MzIwMDA3YmI4NGI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5000" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9a"), + "name" : "Diesel On DZT1009 Smart Watch", + "description" : "Diesel On DZT1009 Smart Watch", + "price" : "247", + "sku" : "Diesel-On-DZT1009-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Diesel-DZT1009-Smart-Watches-491378404-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTAzNXxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaDdkLzg5Nzg1ODYyNzE3NzQuanBnfDk4YmY3ZDU3NWM3Nzk2NGUzN2QzZGI0NTg1MWIwNGY4YWM1NjFmZDc2NjE3OGQ2YmUxNjU4NGZmY2IxNzRiMzE", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT1009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "48 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Diesel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9b"), + "name" : "SKAGEN Falster SKT5003 Smart Watch, Falster Brown Leather", + "description" : "SKAGEN Falster SKT5003 Smart Watch, Falster Brown Leather", + "price" : "290", + "sku" : "SKAGEN-Falster-SKT5003-Smart-Watch,-Falster-Brown-Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5003-Smart-Watches-491378298-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjY0OXxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGM3Lzg5Nzg2MDc1NzA5NzQuanBnfDA1YjNmZjAyNjk2NTQ5ODM5MDYzMDEzZjY1NTE0MjczMjMwZTMyYzY5ZjhjMTIyN2JhZDBiOTYxNWNjOGZkNGY", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5003" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9c"), + "name" : "SKAGEN Falster SKT5002 Smart Watch, Falster Rose Gold Tone Steel Mesh", + "description" : "SKAGEN Falster SKT5002 Smart Watch, Falster Rose Gold Tone Steel Mesh", + "price" : "319", + "sku" : "SKAGEN-Falster-SKT5002-Smart-Watch,-Falster-Rose-Gold-Tone-Steel-Mesh", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5002-Smart-Watches-491378297-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzE1NHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDU0Lzg5Nzg2MDM1NzMyNzguanBnfGI1NDBmZGM4MTYzOTE1ZmU4ZWIzYzk0MTVhM2VmOGMzYzY1Y2IyNzQ5MjY3Mjk4OTAzMDdhMTE5NWUzMmFjM2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5002" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Unisex" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.3+" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SKAGEN", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9d"), + "name" : "Michael Kors Access MKT5040 Smart Watch", + "description" : "Michael Kors Access MKT5040 Smart Watch", + "price" : "435", + "sku" : "Michael-Kors-Access-MKT5040-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5040-Smart-Watches-491378193-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODk0OXxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDhiLzg5Nzg1ODc2NDgwMzAuanBnfGZiOGY0NjAzN2ZjODhkYzlkZWE5MDkxNDU2YjBlYjcyMzI5NTkxZGIyYzRkODVjMWUwY2EzZjBkMDVmNDE0YmQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT5040" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android Phones and iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Powered by Android Wear
  • Compatible with iPhone and Android phones
  • Oversized
  • Silver-Tone/Rose Gold-Tone Stainless Steel
  • 42mm Case
  • AMOLED Display: Active-Matrix Organic Light-Emitting Diode
  • Social Media Updates 
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9e"), + "name" : "Michael Kors Access MKT5039 Smart Watch, Sofie Pavé Gold-Tone and Silicone", + "description" : "Michael Kors Access MKT5039 Smart Watch, Sofie Pavé Gold-Tone and Silicone", + "price" : "406", + "sku" : "Michael-Kors-Access-MKT5039-Smart-Watch,-Sofie-Pavé-Gold-Tone-and-Silicone", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT5039-Smart-Watches-491378194-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE1OXxpbWFnZS9qcGVnfGltYWdlcy9oMDAvaDIzLzg5Nzg1OTU2NDM0MjIuanBnfGM5ZjhiZDU2MGU5NjkwNTQxMDY4M2QxNTcwMTM0Y2FiNzE2MzhhYjA0NmQ5YzlkY2ZmNzZhNWY3MmFlNTg3N2Y", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT5039" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "42 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637b9f"), + "name" : "Michael Kors Access MKT4026 Smart Watch, Quartz Stainless Steel and Leather", + "description" : "Michael Kors Access MKT4026 Smart Watch, Quartz Stainless Steel and Leather", + "price" : "290", + "sku" : "Michael-Kors-Access-MKT4026-Smart-Watch,-Quartz-Stainless-Steel-and-Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4026-Smart-Watches-491378196-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzEzNXxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDBmLzg5OTk0NjM2MTY1NDIuanBnfGM1ZThiZjEzNGUwMTljYjFkMWRiODMwYjJiOWE5ZDk0Y2JlMzlmY2YxNzlhNjI3NzVkOWRlN2I2ZTg3MzZkMjQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT4026" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "48 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba0"), + "name" : "Michael Kors Access MKT4025 Smart Watch, Quartz Stainless Steel and Leather", + "description" : "Michael Kors Access MKT4025 Smart Watch, Quartz Stainless Steel and Leather", + "price" : "290", + "sku" : "Michael-Kors-Access-MKT4025-Smart-Watch,-Quartz-Stainless-Steel-and-Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/Michael-Kors-MKT4025-Smart-Watches-491378195-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTk3NHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDkzLzg5OTk0NjMyODg4NjIuanBnfDQ4N2FmZjU0NjE3MjI2OTEwZDI4ODI5ODNkYzI3Y2U5MjUxMjhjM2NlNDM1NTVjNTQxODZiMjVmZmMyZjExYTg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Access" + }, + { + "attributeName" : "Model", + "attributeValue" : "MKT4025" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ or iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "48 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Michael Kors" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Michael", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba1"), + "name" : "Fitbit Versa Lite FB415SRLV Smart Watch", + "description" : "Fitbit Versa Lite FB415SRLV Smart Watch", + "price" : "232", + "sku" : "Fitbit-Versa-Lite-FB415SRLV-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415SRLV-Smart-Watches-491550912-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTU0N3xpbWFnZS9qcGVnfGltYWdlcy9oZjQvaDYzLzkxMjI3MjcxMzMyMTQuanBnfGEyYWM4NTY3NDc0NmJiMTcyZTNmNjZiMjIwNWI5NmY0MWRlYzRjMDM3N2FjMmU5OTRkNWJlNDQ5ZjE4MDcxZDM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415SRLV" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Lilac/Silver Aluminum" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac/Silver Aluminum" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba2"), + "name" : "Fitbit Versa Lite FB415SRWT Smart Watch", + "description" : "Fitbit Versa Lite FB415SRWT Smart Watch", + "price" : "232", + "sku" : "Fitbit-Versa-Lite-FB415SRWT-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415SRWT-Smart-Watches-491550913-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDIxNHxpbWFnZS9qcGVnfGltYWdlcy9oODMvaDY1LzkxMjI3MjYwODQ2MzguanBnfDMwN2RkNzQyZGVlN2YyZGIzNDEzMTAxMzkyMjRiMDUzYjM2MThiOTZjYWM2MzliOTBjNzJhNGE2NDZlYWI5MmM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415SRWT" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "White/Silver Aluminum" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Silver Aluminum" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba3"), + "name" : "Fitbit Versa Lite FB415PMPM Smart Watch", + "description" : "Fitbit Versa Lite FB415PMPM Smart Watch", + "price" : "232", + "sku" : "Fitbit-Versa-Lite-FB415PMPM-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Fitbit-FB415PMPM-Smart-Watches-491550910-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDM5MnxpbWFnZS9qcGVnfGltYWdlcy9oZDcvaGViLzkxMjI3MjE0OTcxMTguanBnfDUwNmEyOTAxOGY4MTVjMGRiMmJjMzBjNmMyMTViYTExODJlMTNhZmEwNmNiNTA2ZGQwZWZkZDFmYjUzZGFjMmU", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Versa Lite" + }, + { + "attributeName" : "Model", + "attributeValue" : "FB415PMPM" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Polyester " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Mulberry" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Square" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mulberry" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "4+ Day Battery Life" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Instantly access your favourite apps for weather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Classic wristband (both small and large)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Fitbit" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fitbit", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba4"), + "name" : "Skagen SKT1412 Smart Watch", + "description" : "Skagen SKT1412 Smart Watch", + "price" : "196", + "sku" : "Skagen-SKT1412-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1412-Smart-Watches-491550748-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTk3fGltYWdlL2pwZWd8aW1hZ2VzL2g5Mi9oZDMvOTExNzM1NjY4NzM5MC5qcGd8NmIzN2M5Y2MzY2I3YjBmMWU1YzQ2OGQ2OWM4NDM1ZWYwZmQzYzBiYTQ1MmEwYTIwYzA0MzI0ZjMyMDBlODQ1MA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1412" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Genuine Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0 or higher" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial Colour)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba5"), + "name" : "Skagen SKT1413 Smart Watch", + "description" : "Skagen SKT1413 Smart Watch", + "price" : "211", + "sku" : "Skagen-SKT1413-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1413-Smart-Watches-491550749-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDU5fGltYWdlL2pwZWd8aW1hZ2VzL2hjZS9oNzgvOTExNzM1NTM3NjY3MC5qcGd8ZWY5YmE0OGNkYjdjMzllYjBmZmYwZDVlMDY5NjE0ZDY4ZmJlM2UwMjY3Y2Q0MjlmZDhkNWY2MjFkNWE1YTYxNg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1413" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0 or higher" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White (Dial Colour)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba6"), + "name" : "Fossil FTW5033 Smart Watch", + "description" : "Fossil FTW5033 Smart Watch", + "price" : "196", + "sku" : "Fossil-FTW5033-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW5033-Smart-Watches-491550754-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTgwfGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oZDYvOTExNzM1Mjc1NTIzMC5qcGd8MjRiNjIxOWIzOGNiOTk2ZGM3NDBjMjhjZjYxZjI3NDRiYjZiNmY1MWU5MzY2YzExZjcyYTgxYzc4YzRhZWQzZA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW5033" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "12 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Case Diameter: 36mm
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba7"), + "name" : "Fossil FTW5023 Smart Watch", + "description" : "Fossil FTW5023 Smart Watch", + "price" : "174", + "sku" : "Fossil-FTW5023-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW5023-Smart-Watches-491550753-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODQ0fGltYWdlL2pwZWd8aW1hZ2VzL2hkZS9oODYvOTExNzM1MjQyNzU1MC5qcGd8NjJjNGU1YjA3Mjg5YmY1Njg3NzlmMWE3OWFiMzhkN2FiZTg4NzE4ZmZkZTNhMzcwYmMyMjU5M2JhNGY1ZTJmMQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW5023" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather Calfskin" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+" + }, + { + "attributeName" : "Size", + "attributeValue" : "38 mm x 41 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver - Dial Colour" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 Month" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba8"), + "name" : "Fossil FTW5034 Smart Watch", + "description" : "Fossil FTW5034 Smart Watch", + "price" : "196", + "sku" : "Fossil-FTW5034-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW5034-Smart-Watches-491550755-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDM4fGltYWdlL2pwZWd8aW1hZ2VzL2g4Yy9oZDgvOTExNzM1MDc4OTE1MC5qcGd8NjdjZGQwZjkxZDZmNWY1NThiN2FhMDJmZDkwOWYwMjA3MDM4Y2E1YzhlYjNlNWY3MTU4MTU3MDIxYjFjODQ5Mg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW5034" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 5.0+ and iOS 9.0+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "12 Months" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ba9"), + "name" : "Fossil FTW6010 Smart Watch", + "description" : "Fossil FTW6010 Smart Watch", + "price" : "319", + "sku" : "Fossil-FTW6010-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-FTW6010-Smart-Watches-491550757-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTAyfGltYWdlL2pwZWd8aW1hZ2VzL2gxNy9oNmMvOTExNzM1MDQ2MTQ3MC5qcGd8NWMxZjc2ODI2NDlmMmZlNGYxZWZiZWYxY2EwZTM2ODA0NjIwNjUyNTgwZDJkNDU5Yzg2MjY5ZjZlZWNlYzZkZA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "FTW6010" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Dial Colour)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637baa"), + "name" : "Skagen SKT1400 Smart Watch", + "description" : "Skagen SKT1400 Smart Watch", + "price" : "211", + "sku" : "Skagen-SKT1400-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1400-Smart-Watch-491550746-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM2N3xpbWFnZS9qcGVnfGltYWdlcy9oNTQvaDUzLzkxMjgxMjk0OTUwNzAuanBnfDgzZjk2ZGY1MzY3YWEzMjRiMDU1ZTk0NWNmNzA1OGVmMDViNmMwODIwMmUwNDcyOTBmOTQ0MjQxMjZhYmQ0MTA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1400" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Case Thickness: 1.2 cm
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bab"), + "name" : "Skagen SKT1404 Smart Watch", + "description" : "Skagen SKT1404 Smart Watch", + "price" : "211", + "sku" : "Skagen-SKT1404-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/SKAGEN-SKT1404-Smart-Watch-491550747-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjQyfGltYWdlL2pwZWd8aW1hZ2VzL2hkZC9oNzIvOTEyODEzMDE1MDQzMC5qcGd8OWRhZjU2NzFiMDIwYWQzZGM1ODkwY2ZmYjIxNGE5N2VmZjMyODcyYjQ1NmUwNmQ2NWQzNjViM2ZjZDhkNTZjMg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT1404" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Analog" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Case Thickness: 1.2 cm
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "SKAGEN" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bac"), + "name" : "Fossil Q Gen 4 Hr FTW4015 Smart Watch, Brown", + "description" : "Fossil Q Gen 4 Hr FTW4015 Smart Watch, Brown", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW4015-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4015-Smart-Watch-491503420-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzI4fGltYWdlL2pwZWd8aW1hZ2VzL2hmZC9oZmYvOTA4MzM0OTI3MDU1OC5qcGd8YmU1Y2RiOTJiMWIyNWQyYmExNmM4MDQyMWRlYTgyZDdhNzZmZGRlZWEwM2QwNjFiMDY2ODg5MTQ2MTVlMGY4NQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4015" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bad"), + "name" : "Fossil Gen 4 Venture HR FTW6012 Smart Watch, Gold", + "description" : "Fossil Gen 4 Venture HR FTW6012 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil-Gen-4-Venture-HR-FTW6012-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6012-Smart-Watch-491503425-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Nzg1fGltYWdlL2pwZWd8aW1hZ2VzL2g4MC9oM2UvOTA4MzM1NDcxMDA0Ni5qcGd8MTZiMzZmOWMyMzdmYTNjOTU1ZjA3MjhhYmIzMGQwOTI1NGJhNzkwMzA2YzgxOGRmMzMxNzczZDMzMzQ4OWZjNA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel Plated" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart Rate Tracking" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bae"), + "name" : "Fossil Q Gen 4 Hr FTW6016 Smart Watch, Grey", + "description" : "Fossil Q Gen 4 Hr FTW6016 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6016-Smart-Watch,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6016-Smart-Watch-491503429-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjkzfGltYWdlL2pwZWd8aW1hZ2VzL2hjMS9oMjcvOTA4MzM2MDI4MDYwNi5qcGd8NTNlMzk1M2E2MjViN2VkNDRkZDc3MGM0NTI3YTQ1NTFlNWEwYjFmOGVlOTlkNDVhZjk3ZjE0YzI3NTIxN2QzNQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6016" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637baf"), + "name" : "Fossil Q Gen 4 Hr FTW6011 Smart Watch, Gold", + "description" : "Fossil Q Gen 4 Hr FTW6011 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6011-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6011-Smart-Watch-491503424-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDMxfGltYWdlL2pwZWd8aW1hZ2VzL2g2YS9oNmMvOTA4MzM1NTAzNzcyNi5qcGd8MTQ4ODAxMTY1MTQ3MTBhZmNmNWNjMTVlZmZmNGMzMjMwZmM0MTliODJkOWI3NDg0ZjYxYmJlNjJjYzVjM2Q5Yg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6011" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb0"), + "name" : "Fossil Q Gen 4 Hr FTW6021SET Smart Watch, Gold", + "description" : "Fossil Q Gen 4 Hr FTW6021SET Smart Watch, Gold", + "price" : "355", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6021SET-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6021SET-Smart-Watch-491503434-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU2MHxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaDg3LzkwODMzNzAxMTEwMDYuanBnfDZkMjQ3ODA2YjQ1YjgwZTljZWJmMWFmMWZkM2I0OWI0ZDk2MTRlYmQ5ZjYyNDQ5ZjgwZmM5ZDY4ODZjYzc0MTM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6021SET" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold/Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb1"), + "name" : "Fossil Gen 4 Venture HR FTW6017 Smart Watch, Silver", + "description" : "Fossil Gen 4 Venture HR FTW6017 Smart Watch, Silver", + "price" : "319", + "sku" : "Fossil-Gen-4-Venture-HR-FTW6017-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6017-Smart-Watch-491503430-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTc2NXxpbWFnZS9qcGVnfGltYWdlcy9oNGYvaDhmLzkwODMzNjYxNzg4NDYuanBnfGJmNjQ3YTI0M2Q4ZDQ2ZjkwZTRjNWYyM2NkZDI3MjE4NmQyYjE5MTE5NjJkYzg1NjFiNGY2ZjZlMWNiOWNlMDI", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6017" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Google Pay(TM)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb2"), + "name" : "Fossil Gen 4 Venture HR FTW6014 Smart Watch, Brown", + "description" : "Fossil Gen 4 Venture HR FTW6014 Smart Watch, Brown", + "price" : "319", + "sku" : "Fossil-Gen-4-Venture-HR-FTW6014-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6014-Smart-Watch-491503427-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjE2fGltYWdlL2pwZWd8aW1hZ2VzL2hiMy9oMzYvOTA4MzM3MTU1Mjc5OC5qcGd8YjYyMTVlNmM4NWRkNGNmZmRmNTViNWQzN2IwMjFmYzJjZjFiNjFkNWI3YWU1MGYxMWNlM2VmYzU1ZDUxNmM0Yw", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6014" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Google Pay(TM)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb3"), + "name" : "Fossil Gen 4 Venture HR FTW6020 Smart Watch, Gold", + "description" : "Fossil Gen 4 Venture HR FTW6020 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil-Gen-4-Venture-HR-FTW6020-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6020-Smart-Watch-491503433-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDQyfGltYWdlL2pwZWd8aW1hZ2VzL2g0NC9oNDcvOTA4MzM2NzgxNzI0Ni5qcGd8NDQwMjgxMGFjOTQxOWU1ODE2MDg3MDlmNDYzZmJjNjg2ZTBiNzlkMGZkZTA3ODU4ZWYxMWVmOTYxMTAwZWQ4MA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Gen 4 Venture HR" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6020" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "NFC" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2100 Qualcomm Snapdragon Wear" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 Hours" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Operating System: Wear OS by Google
  • \n
  • RAM: 512 MB
  • \n
  • Internal Memory: 4 GB
  • \n
  • Calorie Count" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb4"), + "name" : "Fossil Q Gen 4 Hr FTW6015 Smart Watch, Nude", + "description" : "Fossil Q Gen 4 Hr FTW6015 Smart Watch, Nude", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6015-Smart-Watch,-Nude", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6015-Smart-Watch-491503428-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTc1fGltYWdlL2pwZWd8aW1hZ2VzL2g1ZS9oZGQvOTA4MzM2MjU3NDM2Ni5qcGd8OWQ4N2I1N2E0NzExMDFkMTJiMjI5ZTMwODRiZmJjNjBhZmU1ZDExZjIzMzcwYTNiN2VjMWQwOTcyNWU2NGRmOQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6015" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Nude" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb5"), + "name" : "Fossil Q Gen 4 Hr FTW4012 Smart Watch, Grey", + "description" : "Fossil Q Gen 4 Hr FTW4012 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW4012-Smart-Watch,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4012-Smart-Watch-491503419-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTQ1NHxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGQ2LzkwODMzNTIyODUyMTQuanBnfDk4MmEzYjg2YTcxMWVjNDk0OGY3ODRkMGZiZmRiNzEyMzFlYWFmNzFhYWZiODQwZjIzYzM2NDQzZDg0YzY5Y2E", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4012" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb6"), + "name" : "Fossil Q Gen 4 Hr FTW6023 Smart Watch, Black", + "description" : "Fossil Q Gen 4 Hr FTW6023 Smart Watch, Black", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6023-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6023-Smart-Watch-491503435-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQ5MHxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGM1LzkwODMzNzUxNTcyNzguanBnfGM0OWYxNDY1ZTI0N2RhYmY0YjgwZTQzMTIzMGRjZDc5ODdjMWM2YzdiM2JkMTExYjY4ZGE4Y2VkYjY5MzMyNzM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6023" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb7"), + "name" : "Fossil Q Gen 4 Hr FTW4017 Smart Watch, Black", + "description" : "Fossil Q Gen 4 Hr FTW4017 Smart Watch, Black", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW4017-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4017-Smart-Watch-491503422-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Mzk2fGltYWdlL2pwZWd8aW1hZ2VzL2hlYS9oYzMvOTA4MzM1NTY5MzA4Ni5qcGd8ZmNiZGVmNWI2MTkxNjYyZGM5YzczNzI3ODg0YzkzMGEwYjFmMWQyZjNmZjI0MDVhMzFiNThiNGQ2N2Q4YjhmNA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4017" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb8"), + "name" : "Fossil Q Gen 4 Hr FTW4018 Smart Watch, Black", + "description" : "Fossil Q Gen 4 Hr FTW4018 Smart Watch, Black", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW4018-Smart-Watch,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4018-Smart-Watch-491503423-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI5NnxpbWFnZS9qcGVnfGltYWdlcy9oMGMvaGQzLzkwODMzNjIyNDY2ODYuanBnfDhmMWNmZTY0MzgzZDIxYmIzNjkzZTk1NTFmYWQzZDcyNzc1NTg3ZGZlODMzMWI4MWE3OGI4ZWZmOWYxZWU1ODQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4018" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bb9"), + "name" : "Fossil Q Gen 4 Hr FTW6019 Smart Watch, Grey", + "description" : "Fossil Q Gen 4 Hr FTW6019 Smart Watch, Grey", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6019-Smart-Watch,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6019-Smart-Watch-491503432-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTY2fGltYWdlL2pwZWd8aW1hZ2VzL2g1Mi9oMTkvOTA4MzM2ODgwMDI4Ni5qcGd8M2NlNTk3ZWMxZjVjYTMzODA3MzYwMGU4NThkODczMjkwYzY0NjMzMDRkZWEyMGMzODgwZWRiNDVjYWEwM2Y3Mw", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6019" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bba"), + "name" : "Fossil Q Gen 4 Hr FTW4011 Smart Watch, Silver", + "description" : "Fossil Q Gen 4 Hr FTW4011 Smart Watch, Silver", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW4011-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4011-Smart-Watch-491503418-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM0fGltYWdlL2pwZWd8aW1hZ2VzL2hhNi9oNDQvOTA4MzM0OTU5ODIzOC5qcGd8NGYxNjU0NzIzM2I5YWUzYzk3NzBiNzczYTQ3NWI2NjExZGFkNDk1ZjFiMzkxZjk3NzExZGFlZjVhZjVlYzUwZA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4011" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbb"), + "name" : "Fossil Q Gen 4 Hr FTW6018 Smart Watch, Gold", + "description" : "Fossil Q Gen 4 Hr FTW6018 Smart Watch, Gold", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6018-Smart-Watch,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6018-Smart-Watch-491503431-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzAzfGltYWdlL2pwZWd8aW1hZ2VzL2gyNy9oZjQvOTA4MzM3Mzg0NjU1OC5qcGd8NDNiMzNjMDViNjcwYTY5ZmRkYzNjYmVkZDNhOTBkYTY1ZDdjMjhlY2FhYmRhMGY5ZjdlZTliNzFlMDBhOTY4NQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6018" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • GPS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbc"), + "name" : "Fossil Q Gen 4 Hr FTW6013 Smart Watch, Silver", + "description" : "Fossil Q Gen 4 Hr FTW6013 Smart Watch, Silver", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW6013-Smart-Watch,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW6013-Smart-Watch-491503426-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDkwfGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oYTkvOTA4MzM1OTk1MjkyNi5qcGd8YzFlMGQwOTY5YWJlODBhZDExM2FjYjViN2YyYWY3ZmM5NjBhOTJjY2RiOTMyNDM3MjgyNmMzOTY4Njk4ZDBkOQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW6013" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Female" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Heart Rate Tracking" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbd"), + "name" : "Fossil Q Gen 4 Hr FTW4016 Smart Watch, Brown", + "description" : "Fossil Q Gen 4 Hr FTW4016 Smart Watch, Brown", + "price" : "319", + "sku" : "Fossil-Q-Gen-4-Hr-FTW4016-Smart-Watch,-Brown", + "imageUrl" : "https://www.reliancedigital.in/medias/Fossil-FTW4016-Smart-Watch-491503421-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzQ5fGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oZWQvOTA4MzM0OTk5MTQ1NC5qcGd8ZTg5MDE4NzMzMzM5NjYwZjE1MjBhMzEyNjMxYzE4ZjQ2YTk2ZDg5OTZhMzFiYzY1ZjEzOGE2Zjg1ODBjNmRjOA", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Q Gen 4 Hr" + }, + { + "attributeName" : "Model", + "attributeValue" : "FTW4016" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android OS 4.4+ (excluding Go edition)" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Weight", + "attributeValue" : "249" + }, + { + "attributeName" : "Size", + "attributeValue" : "45 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rapid Charging" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Fossil", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbe"), + "name" : "DIESEL On DZT2009 Smart Watch", + "description" : "DIESEL On DZT2009 Smart Watch", + "price" : "355", + "sku" : "DIESEL-On-DZT2009-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2009-Smart-Watch-491503437-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTUwOXxpbWFnZS9qcGVnfGltYWdlcy9oMmEvaDc1LzkwODc3MjcyNzE5NjYuanBnfGFhNzJjNmMzZWViMGFkZjlmYjA1NWYyMmI5YmZlMzA5NjU5ZTU4MGM5ZGNlMjNkZTIxNGFkZmNjZTVjYjVmY2Q", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2009" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bbf"), + "name" : "DIESEL On DZT2010 Smart Watch", + "description" : "DIESEL On DZT2010 Smart Watch", + "price" : "355", + "sku" : "DIESEL-On-DZT2010-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2010-Smart-Watch-491503438-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTY2NHxpbWFnZS9qcGVnfGltYWdlcy9oYjYvaDhkLzkwODc3Mjc5MjczMjYuanBnfGUzODQyMTU0NTAwNGE4ODdiZTY5ZGJhOWFhYjYyM2Y5NGI2ZmMyNDdiMDMxNDM4ODE5NTZkYWI0YjM2YWE0Mzk", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2010" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc0"), + "name" : "DIESEL On DZT2011 Smart Watch", + "description" : "DIESEL On DZT2011 Smart Watch", + "price" : "377", + "sku" : "DIESEL-On-DZT2011-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2011-Smart-Watch-491503439-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTgyNnxpbWFnZS9qcGVnfGltYWdlcy9oMTQvaDJhLzkwODc3MjgyNTUwMDYuanBnfDlmNWNjNjdmNTYzNTBiMTFhYzRiNzdhNWFhZTVjMDRjMjEwOWUwOGRjZDU1ODBlYzllMjk2YTYwN2IwODU1ZjM", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2011" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc1"), + "name" : "DIESEL On DZT2008 Smart Watch", + "description" : "DIESEL On DZT2008 Smart Watch", + "price" : "355", + "sku" : "DIESEL-On-DZT2008-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/DIESEL-DZT2008-Smart-Watch-491503436-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTk1MXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaGNmLzkwODc3Mjc1OTk2NDYuanBnfDRjYmFiOWNjZjg2M2FkMjM4ODE1OWJiNDU3OTE2NDdjMTM1OGY2ZjNkYjZiNWFmMTA1NDk0YTU3NTNhZmQxM2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "On" + }, + { + "attributeName" : "Model", + "attributeValue" : "DZT2008" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "Android 4.4+ (excluding Go edition) and iOS 9.3+ operating systems" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sliver" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger (usb Type)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "DIESEL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "DIESEL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc2"), + "name" : "Skagen Falster SKT5103 Smart Watch", + "description" : "Skagen Falster SKT5103 Smart Watch", + "price" : "319", + "sku" : "Skagen-Falster-SKT5103-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5103-Smart-Waches-491503501-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDUwfGltYWdlL2pwZWd8aW1hZ2VzL2hiYy9oYTcvOTA5NTQ0ODY5MDcxOC5qcGd8MWQzMTFlMjg2ZDM2ZjE4YjcxOTJmM2MyZmJiNTNhODI4YmFhNTUzNzlhYjA1ZDE5YmFiZTA3MmQ4NGFiZGY2NQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5103" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc3"), + "name" : "Skagen Falster SKT5100 Smart Watch", + "description" : "Skagen Falster SKT5100 Smart Watch", + "price" : "290", + "sku" : "Skagen-Falster-SKT5100-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5100-Smart-Waches-491503499-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDc4OHxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDdlLzkwOTU0NDkwODM5MzQuanBnfGFlMjk5MTdjNmNmYTk5YjhjMTNhMWQzOGI0ZTkwM2ExNDJhOTZlNDEyMDY2ZDNkOTM4MDc0NDAyYjY4NmI1ZTQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5100" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Synching", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc4"), + "name" : "Skagen Falster SKT5105 Smart Watch", + "description" : "Skagen Falster SKT5105 Smart Watch", + "price" : "319", + "sku" : "Skagen-Falster-SKT5105-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5105-Smart-Waches-491503502-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMTMvaGZhLzkwOTU0NDgzNjMwMzguanBnfGU4MDA5NWVkZTI2OTkzNjY2ZjQxZmI4M2MwM2JiNDY4ZjAxMjgwNzAzNjA4YzBmNTNlNWY0ZTg4NWRjM2JjZDg", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5105" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc5"), + "name" : "Skagen Falster SKT5102 Smart Watch", + "description" : "Skagen Falster SKT5102 Smart Watch", + "price" : "319", + "sku" : "Skagen-Falster-SKT5102-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/FOSSIL-SKT5102-Smart-Waches-491503500-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODk0OXxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaGRlLzkwOTU0NDk0MTE2MTQuanBnfDFkMTczYTAwNWY2MGU3MmZjOGY0NTE5NjIzOTk4ZTg0MDdkZDQzODBhN2M1ZTZlNzViYzMxZjZkNTIwZGEyN2Y", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Falster" + }, + { + "attributeName" : "Model", + "attributeValue" : "SKT5102" + }, + { + "attributeName" : "Gender", + "attributeValue" : "Male" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Size", + "attributeValue" : "Case Diameter: 40 mm" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "24 hours" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "2 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc6"), + "name" : "Skagen SKT5109 Smart Watch", + "description" : "Skagen SKT5109 Smart Watch", + "price" : "319", + "sku" : "Skagen-SKT5109-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5109-Smart-Watch-491503504-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2hmMy9oZjcvOTA5Nzc1NzMyNzM5MC5qcGd8Y2U4MjRjOGMzZGY4OGJlZjYzNGMwMDc4NDA5N2NjOTRhZDgwODQzZWIwYmI1YjI3ZDM2YzY2NjliNDJhZWFhZQ", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT5109" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black (Case)" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dial Color: Full Color Display
  • \n
  • Interchangeable Compatibility: 20 mm
  • \n
  • Water Resistant: 3 ATM
  • \n
  • Case Thickness: 11 mm
  • \n
  • Strap Width: 20 mm
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc7"), + "name" : "Skagen SKT5107 Smart Watch", + "description" : "Skagen SKT5107 Smart Watch", + "price" : "290", + "sku" : "Skagen-SKT5107-Smart-Watch", + "imageUrl" : "https://www.reliancedigital.in/medias/Skagen-SKT5107-Smart-Watch-491503503-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYzMHxpbWFnZS9qcGVnfGltYWdlcy9oNzYvaGI4LzkwOTc3NTc2NTUwNzAuanBnfGE2ZDEyM2ZhZDFiNjI2YzNkMWUwNjY1MTQ2ZDk2YTQxYTI4NDhkMWQ5Yzg2NGUxZjY5MmM0YTNjNTMwZTU1N2I", + "category" : { + "_id" : NumberLong(191456), + "name" : "Smart Watches" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SKT5107" + }, + { + "attributeName" : "Display", + "attributeValue" : "Digital" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Case Material", + "attributeValue" : "Stainless Steel" + }, + { + "attributeName" : "Strap Material", + "attributeValue" : "Silicone" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Wear OS by Google" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "iPhone 5/ iOS 9+" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Strap Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Watch Shape", + "attributeValue" : "Circle" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold (Case)" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "1-2 Days" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dial Color: Full Color Display
  • \n
  • Case Thickness: 11 mm
  • \n
  • Altimeter" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Wireless Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "FOSSIL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skagen", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc8"), + "name" : "Extramarks SmartStudy 25.65 cm (10.1 inch) Tablet 2 GB RAM, 32 GB, Black ST-600QC", + "description" : "Extramarks SmartStudy 25.65 cm (10.1 inch) Tablet 2 GB RAM, 32 GB, Black ST-600QC", + "price" : "508", + "sku" : "Extramarks-SmartStudy-25.65-cm-(10.1-inch)-Tablet-2-GB-RAM,-32-GB,-Black-ST-600QC", + "imageUrl" : "https://www.reliancedigital.in/medias/Extramarks-ST-600QC-Tablets-491419830-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDA1MXxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDRlLzkwNDk2NzE0MDE1MDIuanBnfDg0M2JlY2M1Y2I1YzhlNDQ2YWJmMWRlNmUwOTQ5ZDBkNGFlN2FiODM4ZTM4ZDc3NWQxNWQ1NDNjZGY1YmMzYmU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "ST-600QC" + }, + { + "attributeName" : "Brand", + "attributeValue" : "EXTRAMARKS" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.65 cm (10.1 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "G-Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "6000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Extramarks", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bc9"), + "name" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Blue SM-T595N", + "description" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Blue SM-T595N", + "price" : "464", + "sku" : "Samsung-Galaxy-Tab-A-26.72-cm-(10.5-inch)-Tablet-3-GB-RAM,-32-GB,-Blue-SM-T595N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-5-T595N-Tablets-491420132-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDkyfGltYWdlL2pwZWd8aW1hZ2VzL2gxNC9oYjcvOTA0NDc1MTgxMDU5MC5qcGd8NDk4OTJkMzZkMjI2MWEyYmEyOTEyODBkNGVhNzI5ZDVmZDA5YTI4ZDA0YjRkZTc4Y2NmOGFjNjc2MTBkNThlYg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T595N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "26" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "534" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1200" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.72 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Video Playback Time: Up to 15 hours
  • \n
  • Audio Playback Time: Up to 183 hours
  • \n
  • Internet Usage Time(LTE): Up to 15 hours
  • \n
  • Talk Time (3G WCDMA): Up to 51 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bca"), + "name" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Black SM-T595N", + "description" : "Samsung Galaxy Tab A 26.72 cm (10.5 inch) Tablet 3 GB RAM, 32 GB, Black SM-T595N", + "price" : "464", + "sku" : "Samsung-Galaxy-Tab-A-26.72-cm-(10.5-inch)-Tablet-3-GB-RAM,-32-GB,-Black-SM-T595N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-5-T595N-Tablets-491420133-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjEzfGltYWdlL2pwZWd8aW1hZ2VzL2hjNS9oMGYvOTA0NDc1MjEzODI3MC5qcGd8ZjExYjJmN2RjMzQ0NDQxNDJjMTVlZmZmMDBlMTU1MTNhNmYzODM1YTBiOTBkNzFlZDYwZWY1YzY0MjBhNGViOA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T595N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "26" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "534" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1200" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.72 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Video Playback Time: Up to 15 hours
  • \n
  • Audio Playback Time: Up to 183 hours
  • \n
  • Internet Usage Time(LTE): Up to 15 hours
  • \n
  • Talk Time (3G WCDMA): Up to 51 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcb"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 8 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 8 GB, Black", + "price" : "189", + "sku" : "Amazon-All-New-Kindle-Paperwhite-15.24-cm-(6-inch)-Wi-Fi-E-Reader-8-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-Kindle-New-Paperwhite-Wifi-eReader-8GB-491488489-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjIyfGltYWdlL2pwZWd8aW1hZ2VzL2g1Ni9oOWQvOTA1NjE4MTYxNjY3MC5qcGd8ZDNjYjk4ZmU2OTE4ZmRhYmI2NjMyNmFjMTUwYWQ0NTk2NzJiNTQ4MWJhZjkzOTE0YWM4YTM5ZGU0NzA1NjgyMQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle " + }, + { + "attributeName" : "Model", + "attributeValue" : "B077454Z99" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "182" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcc"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Space Grey", + "price" : "2028", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-Tablet-1-TB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXV2HN-A-Tablet-491503284-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTkwOHxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaDQ2LzkwNzA4ODc2OTg0NjIuanBnfGUwYjA1Y2I4Y2QzMTNiZDk0MzJjODExYTMwMDEwNGU1NGI2ZjdkN2MwNGY5NzMxNmU5YTFkYzU1YjA0ZDZhZDQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcd"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Gold", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Gold", + "price" : "560", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-+-Cellular-Tablet-32-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-32-GB-Gold-491379700-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY4OXxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaGNlLzg5MzQxNTU5NzY3MzQuanBnfGFkZDIzNzMyNGMwNDdiZDdhOGY1NmNmMDA0MjFhNWViODU2OWU5MmVkYTA3ODZiNzQyMDUyZTIyODBhNGFjMzE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bce"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 GB, Space Grey", + "price" : "1767", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-512-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFP2HN-A-Tablet-491503266-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDEzNDN8aW1hZ2UvanBlZ3xpbWFnZXMvaDlkL2gwOS85MDcwODUwNzM2MTU4LmpwZ3w3MGFjYjNjYWQ4ZGZlZWE5OGYzODNlYzMxNzJiOTcwYzFlZDlmMTlhMmJhN2Y4Y2RhM2NmYzg1NzJjMmM3OGFh", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bcf"), + "name" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Gold SM-T385NZDA", + "description" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Gold SM-T385NZDA", + "price" : "280", + "sku" : "Samsung-Galaxy-Tab-A-20.32-cm-(8-inch)-Tablet-2-GB-RAM,-16-GB,-Gold-SM-T385NZDA", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T385NZDA-Tablets-eReaders-491351057-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQ5MXxpbWFnZS9qcGVnfGltYWdlcy9oMTYvaDg3Lzg4ODIxNDc4NTIzMTguanBnfGU5YzI3OGQ5N2MwYTk3ZTQwOWE3YjkxMDhkZTk5YmNkMTNhZTM5MWY4NDYzNzNmZGFhNjkyY2VhYjc4NDBiMWU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Tab" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "21.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.32 cm (8 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : GSM850,GSM900,DCS1800,PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS : B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B17(700),B20(800),B28(700)
  • \n
  • TDD LTE : B38(2600),B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Talk Time (3G WCDMA): Up to 36 Hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd0"), + "name" : "Amazon Kindle Paperwhite 15.24 cm (6 inch) E-Reader 4 GB, Black", + "description" : "Amazon Kindle Paperwhite 15.24 cm (6 inch) E-Reader 4 GB, Black", + "price" : "167", + "sku" : "Amazon-Kindle-Paperwhite-15.24-cm-(6-inch)-E-Reader-4-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-Paperwhite-eReaders-491351049-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjU0OHxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDViLzg5MzM1MTI3MDgxMjYuanBnfDRkNzY5MjE0ZDY1OGJjZWQ5Y2U0YjBlYWNhZjJjNzNhMzVjYzIzOTEyODRmNzY5ODQ0ZDU4MDQ3NzA3ZmM3MTg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Kindle Paperwhite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "7 Days" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Next-Generation Reading Experience
  • \n
  • Read Comfortably With One Hand
  • \n
  • No Distractions
  • \n
  • Skim Through Without Losing Your Place
  • \n
  • Sharp" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd1"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 4 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi E-Reader 4 GB, Black", + "price" : "160", + "sku" : "Amazon-All-New-Kindle-Paperwhite-15.24-cm-(6-inch)-Wi-Fi-E-Reader-4-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-All-New-Kindle-Paperwhite-Wi-Fi-E-Reader-6-inch-15.24-cm-4-GB-491216604-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDA1MHxpbWFnZS9qcGVnfGltYWdlcy9oNTQvaDU0Lzg5MzI5NDQ0NDU0NzAuanBnfDM0ZTllNGI1YWQ1OTgwMTJiYTMyZTViZDUxYjgwZWNiYzUyOGU5YTBiODhlNGQ1MGUyMzQ5NDQzMDVlYmU2OGQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Paperwhite" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB 2.0 charging cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Holds thousands of books
  • Fully charges in approximately 4 hours from a computer via USB cable
  • Battery lasts weeks on a single charge
  • Content format supported - Kindle Format 8 (AZW3)" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd2"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + 3G E-Reader 4 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + 3G E-Reader 4 GB, Black", + "price" : "203", + "sku" : "Amazon-All-New-Kindle-Paperwhite-15.24-cm-(6-inch)-Wi-Fi-+-3G-E-Reader-4-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-All-New-Kindle-Paperwhite-Wi-Fi-3G-E-Reader-6-inch-15.24-cm-4-GB-491216603-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjA4NXxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDA2Lzg5MzI5NDU3NTYxOTAuanBnfDI3MzY0NjYyNzU3OTVhZmE3ZjM0MmVhYWVhM2Y3NGY2Mzk5YjJhMmNmYzA3NWFjNmZmZGJlOWExMzE3NDU2YmQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "217" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Paperwhite" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB 2.0 charging cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Holds thousands of books
  • Fully charges in approximately 4 hours from a computer via USB cable
  • Battery lasts weeks on a single charge
  • Content format supported - Kindle Format 8 (AZW3)" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd3"), + "name" : "Samsung Galaxy J Max 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285YZKYINS", + "description" : "Samsung Galaxy J Max 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285YZKYINS", + "price" : "203", + "sku" : "Samsung-Galaxy-J-Max-17.77-cm-(7-inch)-Tablet-1.5-GB-RAM,-8-GB,-Black-SM-T285YZKYINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J-Max-Tablet-7-inch-17.77-cm-Black-491282614-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzg2MHxpbWFnZS9qcGVnfGltYWdlcy9oNjAvaGNhLzg5MjkxNzAyMjcyMzAuanBnfDE5OTk5ZDg0YzMxNGY3MmEyZWY4YTNjNDU3ZDBkYWYyNWRmOGI2YTkyYzg5ZjBlMjM0YWViNDA3YzA5M2E3YzE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "J Max" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.77 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "200" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 Quad Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd4"), + "name" : "Lenovo Tab 3 17.78 cm (7 inch) Tablet, 2 GB RAM, 16 GB, Slate Black 7 Plus", + "description" : "Lenovo Tab 3 17.78 cm (7 inch) Tablet, 2 GB RAM, 16 GB, Slate Black 7 Plus", + "price" : "160", + "sku" : "Lenovo-Tab-3-17.78-cm-(7-inch)-Tablet,-2-GB-RAM,-16-GB,-Slate-Black-7-Plus", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-TAB-3-7PLUS-Tablets-491297560-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTQ4MnxpbWFnZS9qcGVnfGltYWdlcy9oMTkvaGZkLzg5MjIxNzc0MDQ5NTguanBnfGUzYzUyMDE1MGJhOGQ5NjljYmZlN2VhZDBmOTlmYTQzMzcwNjdlMmI1MzgwZDJmYTQwYTNjYTJkYWM4MDdmZDk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Tab3 7 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "259" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Slate Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.78 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.01 Marshmallow" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM - B2/3/5/8" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS - B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD - B1/3/7, TDD - B38/39/40/412" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz 64-bit Qualcomm Snapdragon 410 Quad Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd5"), + "name" : "Amazon Kindle Paperwhite Starter Pack 15.24 cm (6 inch) E-Reader 4 GB, Black", + "description" : "Amazon Kindle Paperwhite Starter Pack 15.24 cm (6 inch) E-Reader 4 GB, Black", + "price" : "179", + "sku" : "Amazon-Kindle-Paperwhite-Starter-Pack-15.24-cm-(6-inch)-E-Reader-4-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-B071LDM6L8-eReaders-491379527-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDQyM3xpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDg2Lzg5MTI4OTUxMTUyOTQuanBnfGQyODlhYTk1NTIyOWU4MmU5NzVhZDc0MWQ4MDk3NjFkNTRhOGJjYTYyZjBmM2MzMDE4NmRlMzcxMjFmN2U0YmM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Kindle Paperwhite Starter Pack" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable and Quick Start Guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd6"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MV0N2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MV0N2HN/A", + "price" : "1014", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-+-Cellular-Tablet,-256-GB,-Space-Grey-MV0N2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0N2HN-A-Tablet-491551020-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDE3M3xpbWFnZS9qcGVnfGltYWdlcy9oOWIvaDY4LzkxMjU0OTIwMzE1MTguanBnfGQ5NjkzZDk4MzMzODVhOTk3OTdkOGYxM2U0ZmFmYjQzYmNiYTEyY2QwMGNhNzkyZDI4NWViYTZiY2VkMjc5YmM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0N2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd7"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Space Grey MUUQ2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Space Grey MUUQ2HN/A", + "price" : "854", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-Tablet,-256-GB,-Space-Grey-MUUQ2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUQ2HN-A-Tablet-491551014-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDEyM3xpbWFnZS9qcGVnfGltYWdlcy9oZjAvaGUyLzkxMjU0MzYxMjkzMTAuanBnfDBiMGM2ZjgyOGExMWU1ZTcxMTQxMmEyYWEzYzBlOTY0MmE2NzM3MWFkOTYyMjkwYmQ2ZTA5MTU4YWIzZDMyYjE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUQ2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd8"), + "name" : "Samsung Galaxy S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Black SM-T835N", + "description" : "Samsung Galaxy S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Black SM-T835N", + "price" : "913", + "sku" : "Samsung-Galaxy-S4-26.67-cm-(10.5-inch)-Tablet-4-GB-RAM,-64-GB,-Black-SM-T835N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-TAB-S4-T835N-Tablets-491488488-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODkxfGltYWdlL2pwZWd8aW1hZ2VzL2g4Ni9oNmUvOTA3MzE3ODc3MTQ4Ni5qcGd8Nzg5YzFmMmVkYmQ5MDFlYjkxN2JlOGExODljZjkxNTM3YTQ0MmY4Yjk0MWYxN2MwY2ZiODE2MzAzYTAxMTU1Nw", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "S4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "483" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour Reproduction", + "attributeValue" : "Black" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android O" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 GHz Qualcomm MSM8998 Processor" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "S Pen" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: 16 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4 speakers
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bd9"), + "name" : "Samsung Galaxy Tab S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Grey T835N", + "description" : "Samsung Galaxy Tab S4 26.67 cm (10.5 inch) Tablet 4 GB RAM, 64 GB, Grey T835N", + "price" : "913", + "sku" : "Samsung-Galaxy-Tab-S4-26.67-cm-(10.5-inch)-Tablet-4-GB-RAM,-64-GB,-Grey-T835N", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-TAB-S4-T835N-Tablet-491488487-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTM0fGltYWdlL2pwZWd8aW1hZ2VzL2g5Yy9oMjEvOTA4MzAwMDcxNzM0Mi5qcGd8N2MxY2M4YzEzYzdjMjBiN2JhMzNhYzIwYWQ3MzRjNjVhZDVkMGZiMWNiY2Q4ODExZGQ2NDRkNWM0MDIwYzU0YQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "S4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "483" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour Reproduction", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android O" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100)/B2(1900)/B3(1800)/B4(AWS)/B5(850)/B7(2600)/B8(900)/B12(700)/B13(700)/B17(700)/B20(800)/B28(700)/B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 GHz Qualcomm MSM8998 Processor" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7300" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "S Pen" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video playback: 16 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bda"), + "name" : "Apple iPad Pro 2017 26.67 cm (10.5 inch) Wi-Fi Tablet 512 GB, Gold", + "description" : "Apple iPad Pro 2017 26.67 cm (10.5 inch) Wi-Fi Tablet 512 GB, Gold", + "price" : "1167", + "sku" : "Apple-iPad-Pro-2017-26.67-cm-(10.5-inch)-Wi-Fi-Tablet-512-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MPGK2HN-A-Tablets-491297755-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTM2OXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDBjLzg5MjIxNzM0NzI3OTguanBnfGM1ZjgzYjI1MGJmNGE0NmQ0NDcyZGU5ZmRjOTAyN2JhMTc4ZjlmNDljMWY5ODZiNDIzNjYzY2JmMGU3MjI1Nzg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Connector" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10X Fusion chip with 64‑bit architecture" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "8135" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi‐Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdb"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Silver", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Silver", + "price" : "672", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-+-Cellular-Tablet-128-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-128-GB-Silver-491379705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Njk4MXxpbWFnZS9qcGVnfGltYWdlcy9oNDUvaDllLzg5MzQxNjM4NDEwNTQuanBnfDEwYTIwM2ZhZjUwYTE0NDAwNmJkZTc5MjRhZWQ0OTc4MmViZWM2YjJkNmY4NTQwNGU4NTRkMGUyMDMzZjhiMDU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdc"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Space Grey", + "price" : "560", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-+-Cellular-Tablet-32-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR6N2HNA-Tablets-491379698-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjUwOHxpbWFnZS9qcGVnfGltYWdlcy9oODIvaGE1Lzg5MzQxNTQwMTA2NTQuanBnfGI3YTYyZDAyYzdiZWJkOTk4NWNhZDQwY2IxNDVlOGJmODY2ZDYyMjc5Yzg3NmZhMTEwMjI3NDMzMDUwOWMxYjk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdd"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 32 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 32 GB, Space Grey", + "price" : "406", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-Tablet-32-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-32-GB-Space-Grey-491379695-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzkzN3xpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDA1Lzg5MzQxNjkyODA1NDIuanBnfDBiYzc3MDIyMmJiMTk0MjdjOGRlMDc3MWQ1MTExYjc0OWMzZmIwZDQxNGU5YTY0NjRiMTQ0MjJkZWEwYWVjZTE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bde"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "price" : "1245", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU0M2HN-A-Tablet-491503286-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTU5N3xpbWFnZS9qcGVnfGltYWdlcy9oOGMvaGM3LzkwNzA4OTcyNjY3MTguanBnfGVlYzkxMTk2MjExNWE4ZGQyZWM1NDFkZjY2MzY2YWJkODVkZWQxYTE2YmQ2Mjg2Y2I5YmI1NjhiOWEyYzQ4YmY", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bdf"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Silver", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 32 GB, Silver", + "price" : "560", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-+-Cellular-Tablet-32-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-32-GB-Silver-491379699-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjA2N3xpbWFnZS9qcGVnfGltYWdlcy9oMWUvaDZjLzg5MzQxNTQ5OTM2OTQuanBnfGQxNGNmYWM3MDBlMWY4NGViODBiNjU5NTBlMTViNWRkNzRjYjY3NWM2YTY0NzllNTNmZWQzOTZhZjlhZjg1Yjc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be0"), + "name" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, White SM-T285NZWSINS", + "description" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, White SM-T285NZWSINS", + "price" : "151", + "sku" : "Samsung-Galaxy-Tab-A-17.77-cm-(7-inch)-Tablet-1.5-GB-RAM,-8-GB,-White-SM-T285NZWSINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T285NZWSINS-Tablets-491379520-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDcwNHxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaDIxLzg4OTc3NTk4NzEwMDYuanBnfDVlZjJjODFkMDQzZWE2YmMwZTk1MTcxMTU1ZDczMDAxZmJkYjk5YTFhMWIzN2FhOGIzMWQwZWNhZjUzNjJhYTA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T285N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "10.88" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "289" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.77 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 5.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core 1.5GHz" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 8 hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be1"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Space Grey", + "price" : "672", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-+-Cellular-Tablet-128-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-128-GB-Space-Grey-491379704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjUwOHxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDBkLzg5MzQxNjE4NzQ5NzQuanBnfDcxMzQyYTYzMzIxYTk1MjM0YzE2MjU2NTRmZTc4NmU2MWRiYjI1ZmZlNTBhNjA4ZGIxNTQwMGY4ZDkwNWNkYzc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be2"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 64 GB, Space Grey", + "price" : "1043", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-Tablet-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXN2HN-A-Tablet-491503278-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjA1MHxpbWFnZS9qcGVnfGltYWdlcy9oMWUvaGFkLzkwNzA4ODAyOTI4OTQuanBnfDllNzFiMjBjNWRhYTJhZjY1NmNlMmZjMzZjNWFmNDkzMTYwMGM2MzdlNDI1OWFlMTkzYTVhYjNmZTk3ODkyNDI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be3"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MUX52HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MUX52HN/A", + "price" : "666", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-+-Cellular-Tablet,-64-GB,-Space-Grey-MUX52HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUX52HN-A-Tablets-491551029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODE2N3xpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDFmLzkxMzYzMzkyODgwOTQuanBnfDg2YjM1N2EzM2MyZmU3ZTcxZjQxMjUwYzgyZmRiM2U0ZWM1YjU4OTBmZGMwOWM2NTBiMzdhOTU1YzU4NDhjZTk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUX52HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be4"), + "name" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285NZKSINS", + "description" : "Samsung Galaxy Tab A 17.77 cm (7 inch) Tablet 1.5 GB RAM, 8 GB, Black SM-T285NZKSINS", + "price" : "151", + "sku" : "Samsung-Galaxy-Tab-A-17.77-cm-(7-inch)-Tablet-1.5-GB-RAM,-8-GB,-Black-SM-T285NZKSINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T285NZKSINS-Tablets-491379521-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzQxNHxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGFmLzg4OTc3NjAxOTg2ODYuanBnfDlhMTcwMjgzZGYwY2M1MDFkMWE1NjAwMjMzMDZjZGY5NTQxZTA1ZTg5OTk3ZGFhYTg3OGEwNmEyYWVjNTIxZTI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab A SM-T285N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "10.88" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "289" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.77 cm (7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 5.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core 1.5GHz" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 8 hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be5"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Space Grey", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Space Grey", + "price" : "518", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-Tablet-128-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-128-GB-Space-Grey-491379701-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzkzN3xpbWFnZS9qcGVnfGltYWdlcy9oNTkvaDExLzg5MzQxNTM2ODI5NzQuanBnfDhkN2RjOTc0M2U0NjQ1MDNlNTllNzYxOTAwODkyZjM2MjQ2Nzc5MzJlMDFkNTkwM2Y5YWVlOTUyYmFmMmU2NzM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be6"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Space Grey MUUJ2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Space Grey MUUJ2HN/A", + "price" : "651", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-Tablet,-64-GB,-Space-Grey-MUUJ2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUJ2HN-A-Tablet-491551011-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTgxfGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oNzcvOTEyNTQzNjQ1Njk5MC5qcGd8YmFlMGYyNzNhYmFmYzQ5MjIxYTJiODBlZDc2MmJiNDI0YjQzZDJlYjYwOTA5ZTIzNWQ3OWY5NjYzMTdlZWQ2Yg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUJ2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be7"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "price" : "1448", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU102HN-A-Tablet-491503288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjAyMnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaGQ1LzkwNzA4OTYyODM2NzguanBnfDRlZDMyMjYyN2Q4OTg1MTI3ZjM3YTNmN2JhZDI5MGIyMDRlMzU2NDlmZDBjYjI3YjFkMDQ1MmMyOTk1Zjc3NjI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be8"), + "name" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, Black B07FRJTZ4T", + "description" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, Black B07FRJTZ4T", + "price" : "116", + "sku" : "Amazon-All-New-Kindle-15.24-cm-(6-inch)-E-Reader-4-GB,-Black-B07FRJTZ4T", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-B07FRJTZ4T-eReaders-491551047-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzYyfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oYmQvOTEyMzA5MjUyOTE4Mi5qcGd8ZDM0Nzg5ODI0OTNlY2VhZWRiNzhhMGMxNTA5ZWFlNTRjNjQxZDI1YzJiMDU4MDcyMTljMjhlYTM3OTViMDA2YQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Model", + "attributeValue" : "B07FRJTZ4T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 weeks" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637be9"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MV0D2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Space Grey MV0D2HN/A", + "price" : "811", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-+-Cellular-Tablet,-64-GB,-Space-Grey-MV0D2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0D2HN-A-Tablet-491551017-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDEzOHxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGJhLzkxMjU0NzkwNTUzOTAuanBnfGYzNmExN2ZiZGNlNjZkZmE2MjM1ZjQzNDMxMjAwOTA5NjU1Mjg2YWNjOWZhNGU4NjQzZTg5MjY0NDdjZjdjNmI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0D2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bea"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 256 GB, Space Grey", + "price" : "1245", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-Tablet-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXQ2HN-A-Tablet-491503280-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDEyMjZ8aW1hZ2UvanBlZ3xpbWFnZXMvaDZhL2hkOC85MDcwODc5NjM3NTM0LmpwZ3wyMjFlM2U4ZDE3NmE4OWM1ZDY4ZmI3YWEyMjA2ZTA5NjViNGZmYzM0MDdmZTJlYWNmNjk2MGZmZWFkNTE0NDZj", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637beb"), + "name" : "Extramarks Toddler 17.78 cm (7 inch) Tablet 1 GB RAM, 8 GB, Yellow EW-200", + "description" : "Extramarks Toddler 17.78 cm (7 inch) Tablet 1 GB RAM, 8 GB, Yellow EW-200", + "price" : "174", + "sku" : "Extramarks-Toddler-17.78-cm-(7-inch)-Tablet-1-GB-RAM,-8-GB,-Yellow-EW-200", + "imageUrl" : "https://www.reliancedigital.in/medias/Extramarks-EW-200-Tablets-491419829-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjAyNXxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaGYwLzkwNDk2NzEwNzM4MjIuanBnfDQwZTQyNmU1MDU0NzU3YTZjZWY5NmU4NWE4YWEwYTFiMzJkMTgxNjBjYTJlM2ZlNzg4MGY4MzU2ZGNiYzIyOTI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EW-200" + }, + { + "attributeName" : "Brand", + "attributeValue" : "EXTRAMARKS" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour Reproduction", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.78 cm (7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "G-Sensor" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "5 V" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Age-appropriate" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Extramarks", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bec"), + "name" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + Free 4G E-Reader 32 GB, Black", + "description" : "Amazon All-New Kindle Paperwhite 15.24 cm (6 inch) Wi-Fi + Free 4G E-Reader 32 GB, Black", + "price" : "261", + "sku" : "Amazon-All-New-Kindle-Paperwhite-15.24-cm-(6-inch)-Wi-Fi-+-Free-4G-E-Reader-32-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-Kindle-New-Paperwhite-Wifi-eReader-32GB-491488490-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTgzNHxpbWFnZS9qcGVnfGltYWdlcy9oYzAvaDRkLzkwNTYxODE5NDQzNTAuanBnfDRiNDZhMzY1NjZiNTYwZTM5MDViZjcwMWU0OWI4NzAyOTg4YWE0NmMxNTRkZDE3MjE0NWRiM2VmMDVjYmJiY2M", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle " + }, + { + "attributeName" : "Model", + "attributeValue" : "B077498K1F" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bed"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "price" : "2231", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-1-TB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU1V2HN-A-Tablet-491503292-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjU2NXxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaGI3LzkwNzA5MDcyMjgxOTAuanBnfGQ2ZTFjZTA3MjhkZjM0Mjc1M2ZkMmIyMWNjZWRjZmUwMmRiMmQ1MDg1MmNhOGM4YWMxYWYzMDU1NTA5YjEyZTk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bee"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Silver", + "price" : "1506", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-Tablet-512-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXU2HN-A-Tablet-491503283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDMxOTR8aW1hZ2UvanBlZ3xpbWFnZXMvaDMzL2g1OC85MDcwODg3MDQzMTAyLmpwZ3wwNTljNDdhMTc0YTc1NGFjYzliMTY4MDhlNDc4ZTg3M2YxMzI3MmY2ODRhYmZmNmY5ZjFiNmE2MzU4NWU5M2E1", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bef"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 512 GB, Space Grey", + "price" : "1506", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-Tablet-512-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXT2HN-A-Tablet-491503282-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjgwOHxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaDUzLzkwNzA4ODkwMDkxODIuanBnfDMxMmMxNmVmYzY3NmE2MmY2ZmMzNGNjZDAwZmVjOTZmNDM5MTE5Y2Q1YzNlNjNlODlmMTQyZmM2YWU2M2E0MTI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf0"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi Tablet 1 TB, Silver", + "price" : "2028", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-Tablet-1-TB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTXW2HN-A-Tablet-491503285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzA3OXxpbWFnZS9qcGVnfGltYWdlcy9oNWIvaDU2LzkwNzA4ODQ5NDU5NTAuanBnfDI2ZmYzYWFlY2VkNzA4NWQ4NGRlYzA0YjM3MGMxYTBiOGIwNzQ3ZGU4NTBjZWZmMjY1YTU1MmFlZDU0MjMzOTc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf1"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "price" : "1245", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU0U2HN-A-Tablet-491503287-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Njc5NHxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDAyLzkwNzA5MDM2MjM3MTAuanBnfDBiYWE4YzI2MjVjMDBjNzk2NGYxMjExMjgwZDk3ZWZhNDM2NzMwMzA0NjM3ZDYzODk4MmYxYjJjYmEwNjYyZjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf2"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "price" : "2231", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-1-TB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU222HN-A-Tablet-491503293-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM3NnxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaGVlLzkwNzA4OTY5MzkwMzguanBnfDFlZDMxNDJlYTQxZThjNmNmNWJhNjMzZTY1ZGQ3NDFiM2U1MzdhMDdlNTI2NzUzMjIxMmI5YzIyMzQ1YzVmZDQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf3"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "price" : "1448", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU172HN-A-Tablet-491503289-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTg1NnxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDgwLzkwNzA4OTQzMTc1OTguanBnfDQ5MmQwNTQ0YzE0YzkzOTI3MWI1OGVhOTYyNjljN2NmM2IwN2FhYjdmYWY3ZjdmMTZkNjA5Y2VkZDBjODEwNzc", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf4"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "price" : "1709", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-512-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU1M2HN-A-Tablet-491503291-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjYyOXxpbWFnZS9qcGVnfGltYWdlcy9oYzcvaDA5LzkwNzA5MDg1Mzg5MTAuanBnfDAyMTVmMWFjZGVhNWE2ODQzODg5ODA2MjM3NmQxOTMyODFiYTIzZTJmZDZiOTllNmNjM2Y4NDQwMzk1MDdkNjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf5"), + "name" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 27.94 cm (11 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "price" : "1709", + "sku" : "Apple-iPad-Pro-2018-27.94-cm-(11-inch)-Wi-Fi-+-Cellular-Tablet-512-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MU1F2HN-A-Tablet-491503290-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDEyNjZ8aW1hZ2UvanBlZ3xpbWFnZXMvaGZmL2g1YS85MDcwOTA1NTg5NzkwLmpwZ3xkYmFjYjA1M2Q3ZDc1NDY3YTE0YTE4MmNhMzI1YTdjYjhlYWM5ODhhOGY3NDJmOTFlODcxOTEyN2I0YWZlNWU0", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.85" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "468" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "27.94 cm (11 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf6"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Silver", + "price" : "1970", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-512-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJJ2HN-A-Tablet-491503275-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTQyOHxpbWFnZS9qcGVnfGltYWdlcy9oODkvaGJmLzkwNzA4NjYzOTkyNjIuanBnfDUzOGVmYWYzZDE3ZmYyNTY0ZTMwODMzMDlkMjlhNzEyZDJkYzljNDUyNDM3MjE3MjhjYzU4YjI1YTkwNGE1YWI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf7"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Silver", + "price" : "1506", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTHP2HN-A-Tablet-491503271-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTg4NnxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDdjLzkwNzA4NTcwMjc2MTQuanBnfDdjNDJmZDk1NjQxNDIyODA0ZTE2MjQ4NmNlODE3NDBmMGE0YzI4ZDZlYzMzYjg0YTdhYmNjNTk1NmYwOWZlNGU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf8"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Space Grey", + "price" : "1709", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTHV2HN-A-Tablet-491503272-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTU0OXxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaGZiLzkwNzA4NjMxMjI0NjIuanBnfGVjYTRhNTZiNGUxNmI0ZTg5YzgzZWFkMDJkZDNmNjRkNTI2MjRiMWI2NWM1NTJjYWQxNjIzYzZiMTA0ZDhiMWE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bf9"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 64 GB, Space Grey", + "price" : "1506", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTHJ2HN-A-Tablet-491503270-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Mzg4N3xpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGUxLzkwNzA4NjA4Mjg3MDIuanBnfDI1ZGU4MjM5YmQ1NTg0MjM3MDA4ODc1ODM5YzVjZDljYzljZjcyMGUyMzBkOGEzYTc0NDM1MTM0NjI3YmU1MGU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfa"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Space Grey", + "price" : "2492", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-1-TB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJP2HN-A-Tablet-491503276-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDk1N3xpbWFnZS9qcGVnfGltYWdlcy9oMzQvaDU2LzkwNzA4NzAzMzE0MjIuanBnfGY5MGJmODUzMzEwN2VmODk5OGNkYjI0ZDBiY2UyODg2OWU2ZTg2OGRmZDBjOTJjNmU0ODIzZGNiYjBkMTQxZDA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfb"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 1 TB, Silver", + "price" : "2492", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-1-TB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJV2HN-A-Tablet-491503277-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzM3NHxpbWFnZS9qcGVnfGltYWdlcy9oMjYvaDhiLzkwNzA4Njc3MDk5ODIuanBnfGYxMDAzOWJiMTBjMmQ2ODIxMWI1Y2NmZGExMzcxN2ZkNWNlNjBiNDZjMDJmNGJiZTRhZjg5ZmIzNjdjMzI1MzM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfc"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 256 GB, Silver", + "price" : "1709", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJ62HN-A-Tablet-491503273-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDg2OXxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaGRjLzkwNzA4NTgwMTA2NTQuanBnfDA4YmRkNDIzMzRhMjU0ZWU1ZmY4YWFjMDg5Y2JhMjhmYjljYjNjNDJmNmI2OTkxMjIyODczYmNiOTlkYzEwYjE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfd"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi + Cellular Tablet 512 GB, Space Grey", + "price" : "1970", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-+-Cellular-Tablet-512-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTJD2HN-A-Tablet-491503274-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE2Njl8aW1hZ2UvanBlZ3xpbWFnZXMvaGY5L2hiMC85MDcwODcxNjQyMTQyLmpwZ3xjOTY1MTVjMzdmYmQwMTUxZTUzYmFjMWFmYjM1MWQzMmZkOWJmMTNkYmU5Zjc3ZGM2MzM4MGViMDFiNzQ0OWUx", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "633" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 42, 46, 66" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bfe"), + "name" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, White B07FQ1B3TQ", + "description" : "Amazon All-New Kindle 15.24 cm (6 inch) E-Reader 4 GB, White B07FQ1B3TQ", + "price" : "116", + "sku" : "Amazon-All-New-Kindle-15.24-cm-(6-inch)-E-Reader-4-GB,-White-B07FQ1B3TQ", + "imageUrl" : "https://www.reliancedigital.in/medias/Amazon-B07FQ1B3TQ-eReaders-491551048-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzAzfGltYWdlL2pwZWd8aW1hZ2VzL2g3Yi9oM2YvOTEyMzA5MjIwMTUwMi5qcGd8YWQzYTUwZWRjMmUwYTNlZDY4NDAyZWQ3ODU4NmIwYTFkNTNiNDhlNTNjNzBjZTFkYWVhYWZiOTc4NzE1ODkyYw", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Kindle" + }, + { + "attributeName" : "Model", + "attributeValue" : "B07FQ1B3TQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amazon" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB 2.0 Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 weeks" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Content Formats Supported: Kindle Format 8 (AZW3)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amazon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637bff"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Gold", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi + Cellular Tablet 128 GB, Gold", + "price" : "672", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-+-Cellular-Tablet-128-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Cellular-Tablet-24.63-cm-9.7-128-GB-Gold-491379706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY4OXxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDUwLzg5MzQxNjE1NDcyOTQuanBnfDY3ZjRiZTRjMDczMjQyNjc3Yjc5Y2I2M2I5M2E2Njk5YmRlNmQzOWQzOTEzMjc4N2I4MjI0NjhlMjYxMzE0NDk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "478" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA: 850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c00"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Gold", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Gold", + "price" : "518", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-Tablet-128-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-128-GB-Gold-491379703-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Mzc2MnxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDM3Lzg5MzQxNzAyNjM1ODIuanBnfDYzZTc4Mjg4NTM5ZmYyNGQ3Mjk0Mjc3OGI3NmZkMDZjNTdiMjBlY2FhYTkzNDdmMDUzNjM0YTMzNjljZjk5NDA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c01"), + "name" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Silver", + "description" : "Apple iPad 2018 24.63 cm (9.7 inch) Wi-Fi Tablet 128 GB, Silver", + "price" : "518", + "sku" : "Apple-iPad-2018-24.63-cm-(9.7-inch)-Wi-Fi-Tablet-128-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPad-2018-Wi-Fi-Tablet-24.63-cm-9.7-128-GB-Silver-491379702-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTU0N3xpbWFnZS9qcGVnfGltYWdlcy9oNTcvaDVlLzg5MzQxNjg5NTI4NjIuanBnfDQ0MGQyMDRlMjlmY2JkNTA1NGQxOWRmZjY4M2EyODA5MjgwNTI0ODU2YWU0NGI5NzEyNDAwNTI3M2I5YmFlM2I", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "24" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "469" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.63 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "FaceTime" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip with 64-bit architecture" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lightning to USB Cable
  • USB Power Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c02"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Silver", + "price" : "1303", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTEM2HN-A-Tablet-491503263-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzQ2M3xpbWFnZS9qcGVnfGltYWdlcy9oNWQvaDlmLzkwNzA4MzgyODQzMTguanBnfDVkNzkwNGZlMzA3MDI2NTUzYWUwODg5NGJiOGEyNjIyMWRkYmYyMGI2Njc3MjFjZjc4YzU4ZjAyN2U3ZjhkMTA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c03"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 64 GB, Space Grey", + "price" : "1303", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTEL2HN-A-Tablet-491503262-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjUwN3xpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDM5LzkwNzA4Mzk5MjI3MTguanBnfGIxNmUyOTAxNWI5MTY2NmQ5ODNkMjJlM2ZiYjE3NTAwNWQwNDFjYmMzNjNkYzRjMGNiYjgwMTI1MDU5MmJhZjQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c04"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 TB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 512 TB, Silver", + "price" : "1767", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-512-TB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFQ2HN-A-Tablet-491503267-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTE1NnxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDQ4LzkwNzA4NDc3ODcwMzguanBnfGE2MzE1ZjVkNjQ3NGM3ZDQxZjdhYmRlOGY1MGM4MDFmZTk5YTAyMzBiNDZkOTMzMWZkMTgwODEzYmNjNGMzMzI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c05"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Silver", + "price" : "2289", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-1-TB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFT2HN-A-Tablet-491503269-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTIyOHxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDQ2LzkwNzA4NDk3NTMxMTguanBnfGIzNjYyODJmZGZjYTU5ZmYyNGQxNDcxZjFlOWE1YmY0Zjg1YjFjNTRkN2JhYzY5OTMyNWFjZTA3ZjRmNGZiNmU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c06"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Space Grey", + "price" : "1506", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFL2HN-A-Tablet-491503264-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTY5NnxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaDQ0LzkwNzA4Mzk1OTUwMzguanBnfGI3MjU5OWEyMzExMWYzM2E3NmFlODI1YjE2MTEzMjdmNWZlY2Q1MmRjNjlhMDRhMTY2MjgzNjI1ZmMzMDdkYjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c07"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Silver", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 256 GB, Silver", + "price" : "1506", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFN2HN-A-Tablet-491503265-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIzMzl8aW1hZ2UvanBlZ3xpbWFnZXMvaGZkL2gwYS85MDcwODM5MjY3MzU4LmpwZ3xjYTcyZDBkMDgyMTFlYmZmMGE4YzkyOGUyZDIyZWFlZmNiMzA2ODExMDlhNzk3NDUxMjU0YzlhZGUyYmZlYjhh", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c08"), + "name" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Space Grey", + "description" : "Apple iPad Pro 2018 32.76 cm (12.9 inch) Wi-Fi Tablet 1 TB, Space Grey", + "price" : "2289", + "sku" : "Apple-iPad-Pro-2018-32.76-cm-(12.9-inch)-Wi-Fi-Tablet-1-TB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MTFR2HN-A-Tablet-491503268-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE3Njd8aW1hZ2UvanBlZ3xpbWFnZXMvaDVhL2hiYS85MDcwODUzMzU3NTk4LmpwZ3xlNTYzMzZkYmZkNjZlYzIzZmI0NGZlNTRmNmUxNjFkY2E3NGMzYTU5YzQ2NjBhOWUzNjg3NjU4MzgyNjNjMTlj", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "28.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "631" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "600" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2732 x 2048" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "32.76 cm (12.9 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "iBeacon micro-location" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, USB-C" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12X Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB-C Charge Cable (1 metre)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours of surfing the web on Wi-Fi" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ProMotion technology
  • \n
  • Embedded M12 coprocessor
  • \n
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Backside illumination sensor
  • \n
  • Auto image stabilisation
  • \n
  • Five microphones for calls" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c09"), + "name" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Black SM-T385NZKA", + "description" : "Samsung Galaxy Tab A 20.32 cm (8 inch) Tablet 2 GB RAM, 16 GB, Black SM-T385NZKA", + "price" : "289", + "sku" : "Samsung-Galaxy-Tab-A-20.32-cm-(8-inch)-Tablet-2-GB-RAM,-16-GB,-Black-SM-T385NZKA", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T385NZKA-Tablets-eReaders-491351058-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEwNXxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGNkLzg4ODIxNDk4MTgzOTguanBnfGNiYzlkNTg4ZjBiYTcxN2YyZGE5NDdiOGQ1MTM3NDlhYjk4OTIwMTg5NGVlMmUzMjFlYjFlY2MzYzRlZmZiNzE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Tab" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "21.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.32 cm (8 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : GSM850,GSM900,DCS1800,PCS1901" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS : B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B17(700),B20(800),B28(700)
  • \n
  • TDD LTE : B38(2600),B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.1" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Talk Time (3G WCDMA): Up to 36 Hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0a"), + "name" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Silver SM-T825NZSAINS", + "description" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Silver SM-T825NZSAINS", + "price" : "747", + "sku" : "Samsung-Galaxy-Tab-S3-24.58-cm-(9.7-inch)-Tablet-4-GB-RAM,-32-GB,-Silver-SM-T825NZSAINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-Tab-S3-SM-T825N-Tablet-24.58-cm-9.7-32-GB-Silver-491297574-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzAzM3xpbWFnZS9qcGVnfGltYWdlcy9oZjkvaDkwLzg5NjMwOTA0NDg0MTQuanBnfGZjZmYxNjdlYzY2NzM3NDFhNDRkZWIyNTg5MjBlN2YxNTJjNTg3NmJiY2M1YzYyNmNlOTAwZGQ0ZDk5MTRhMGQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "Tab S3 SM-T825N" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "23.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.6" + }, + { + "attributeName" : "Weight", + "attributeValue" : "434" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.58 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • 4G FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B17(700), B20(800), B28(700)
  • \n
  • 4G TDD LTE: B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.15 GHz, 1.6 GHz Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "6000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 8 hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0b"), + "name" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Black SM-T825NZKAINS", + "description" : "Samsung Galaxy Tab S3 24.58 cm (9.7 inch) Tablet 4 GB RAM, 32 GB, Black SM-T825NZKAINS", + "price" : "747", + "sku" : "Samsung-Galaxy-Tab-S3-24.58-cm-(9.7-inch)-Tablet-4-GB-RAM,-32-GB,-Black-SM-T825NZKAINS", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-SM-T825NZKAINS-Tablets-eReaders-491297573-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTExNHxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaGQ5Lzg5MjE2NzY5MDY1MjYuanBnfDBmM2ZlYjQ3OTRkMTVmYWY2MTJhNDEzMzA1YmM1YmU4Y2U2ZjY2ODRlOWE0YmIwZWJjOWYzYzRhMmRkNzY2NWQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Tab" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Model", + "attributeValue" : "S3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Height", + "attributeValue" : "23.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.6" + }, + { + "attributeName" : "Weight", + "attributeValue" : "434" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "24.58 cm (9.7 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS : B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE : B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B17(700), B20(800), B28(700)
  • \n
  • TDD LTE : B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "6000" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 8 Hours" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0c"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Gold MUUT2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Gold MUUT2HN/A", + "price" : "854", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-Tablet,-256-GB,-Gold-MUUT2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUT2HN-A-Tablet-491551016-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTg4fGltYWdlL2pwZWd8aW1hZ2VzL2hmNy9oM2IvOTEyNTQ4MTA4NzAwNi5qcGd8OTFmMDQ0NWZmZmExOTQxMzE2OWI1MDM0MDFkZjNlZTU2NDdmNjYzZjA2MWZkMjQwY2U4MDRmNTBhYzdhNzUzZg", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUT2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0d"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Gold MUUL2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Gold MUUL2HN/A", + "price" : "651", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-Tablet,-64-GB,-Gold-MUUL2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUL2HN-A-Tablet-491551013-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTEwfGltYWdlL2pwZWd8aW1hZ2VzL2g4YS9oMjEvOTEyNTQ0MjAyNzU1MC5qcGd8MzQ1NmY3YWM2MDRhNGYyZjA4MmE3NmQyZmQ1M2EyZDc5OTlhYWU0ZWJjMDZiN2U2MDk0NzZlODFmMzJkZDY3ZA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUL2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0e"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MV0Q2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MV0Q2HN/A", + "price" : "1014", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-+-Cellular-Tablet,-256-GB,-Gold-MV0Q2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0Q2HN-A-Tablet-491551022-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDAxfGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oNjYvOTEyNTQ4OTczNzc1OC5qcGd8ZWYzNzdiY2QxNzFmMmYyMTU1YThkZDBlOGMyOTc4ZWU5YmJhYTM2YzE0ZWQ2OWJkNGE1MTYzMjZhYjkwZWU4Nw", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0Q2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c0f"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MV0F2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MV0F2HN/A", + "price" : "811", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-+-Cellular-Tablet,-64-GB,-Gold-MV0F2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0F2HN-A-Tablet-491551019-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTYyfGltYWdlL2pwZWd8aW1hZ2VzL2hjMy9oYTAvOTEyNTQ4NTQ3NzkxOC5qcGd8ZDI3MWNlNTE0MTU0MjZhYWM2M2RlM2JmNzE1YmIyZDEyYzRmYjI4ZmM3NDg5NGQ3M2IzOTcyY2JjZGE5MmFiMQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0F2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c10"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Silver MUUK2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 64 GB, Silver MUUK2HN/A", + "price" : "651", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-Tablet,-64-GB,-Silver-MUUK2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUK2HN-A-Tablet-491551012-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDI4NnxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDFkLzkxMjU0MzkwNzg0MzAuanBnfGVjY2FkMWYxZTUyMTY0ZTgzYmRhZThmYjk2ZTQ1Yjk2YzEzODk2OTE2ODFjMGVmNDcxNzU3YTdiMjM0OGJkMjU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUK2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c11"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Silver MUUR2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi Tablet, 256 GB, Silver MUUR2HN/A", + "price" : "854", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-Tablet,-256-GB,-Silver-MUUR2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUUR2HN-A-Tablet-491551015-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDEzNXxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaDcwLzkxMjU0NzcwODkzMTAuanBnfGY1NzZmODBlNmNiNjNhMGNkNTVkZWQ2YTRmNmE5MzE4MTBmM2VhYmNmOTJiMDlmNDdjNzI0ZGZlNmZhNjU2ODE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUUR2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "456" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Connector
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0 to 35 degreeC
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c12"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MV0P2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MV0P2HN/A", + "price" : "1014", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-+-Cellular-Tablet,-256-GB,-Silver-MV0P2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0P2HN-A-Tablet-491551021-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTY1NXxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaGE2LzkxMjU0ODc3NzE2NzguanBnfDgzMTMxMDdmMzA1NmUxNjE4ZjA2MGNkNjMyYTE2NjJhYTlkNzc0ZDNhNjNlZjIyYjAwNTY0NjFiNDg1YzFkZjM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0P2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c13"), + "name" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MV0E2HN/A", + "description" : "Apple iPad Air 2019 26.67 cm (10.5 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MV0E2HN/A", + "price" : "811", + "sku" : "Apple-iPad-Air-2019-26.67-cm-(10.5-inch)-Wi-Fi-+-Cellular-Tablet,-64-GB,-Silver-MV0E2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MV0E2HN-A-Tablet-491551018-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDA0N3xpbWFnZS9qcGVnfGltYWdlcy9oYmEvaDg1LzkxMjU0ODMwNTMwODYuanBnfDFkYTM0YzQ2ODYzNTQxMTg3MmEyYjg1NGM4NmM1OTNjZDJiZmE1ZWJmNmZkMWIwYjE5Y2M1OWNiN2M0NGIwYWM", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV0E2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "25.06" + }, + { + "attributeName" : "Width", + "attributeValue" : "17.41" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "464" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2224 x 1668" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "26.67 cm (10.5 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip with 64-bit architecture, Neural Engine, Embedded M12 coprocessor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • SIM Card: Nano-SIM (supports Apple SIM)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c14"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MUXE2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Gold MUXE2HN/A", + "price" : "869", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-+-Cellular-Tablet,-256-GB,-Gold-MUXE2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUXE2HN-A-Tablets-491551034-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDU5MXxpbWFnZS9qcGVnfGltYWdlcy9oMWYvaDNkLzkxMzYzNDk3NzM4NTQuanBnfDAxNjU1MWE5ZWQ3NGMwOWNmZGQwN2Y0YzZjYTFhYzMwNTgyZmY4ZDk5M2I0Y2E5ZWJlODdmZGQ3ZDE4NzIyZDE", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUXE2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c15"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Gold MUU62HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Gold MUU62HN/A", + "price" : "709", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-Tablet,-256-GB,-Gold-MUU62HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUU62HN-A-Tablets-491551028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI4NHxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDJjLzkxMzYzNDE1ODE4NTQuanBnfDM0NmRkYTk5ZTA4MjJlMmVkMGEzMDI4ZTkyYjM4ZDBmYjQ0MTBiY2M4MWUwMmYwZWFmMWI4NzFmMzVkMTg5NzQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUU62HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c16"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MUX62HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Silver MUX62HN/A", + "price" : "666", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-+-Cellular-Tablet,-64-GB,-Silver-MUX62HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUX62HN-A-Tablets-491551030-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTQwN3xpbWFnZS9qcGVnfGltYWdlcy9oODMvaGNkLzkxMzYzNDY0OTcwNTQuanBnfDdmMDQxMjU2M2RmY2E5YThhM2U0MDcxZWI0NWExZmE1MTMzZjU0NGQ0YmRlYTMzM2E1NThhZWE0ODg5MjgzOGI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUX62HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c17"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Silver MUU52HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Silver MUU52HN/A", + "price" : "709", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-Tablet,-256-GB,-Silver-MUU52HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUU52HN-A-Tablets-491551027-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjczMHxpbWFnZS9qcGVnfGltYWdlcy9oYjMvaGMwLzkxMzYzMzY2NjY2NTQuanBnfDU4MjZkNDA2ZWQ5MjQ1YTA5YWViMjA5MDljMWQ1OThjMTMyYWExYjNmZWE4NzZhZTU2MDFiOWE4MWM3NmMwZTU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUU52HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c18"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MUX72HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 64 GB, Gold MUX72HN/A", + "price" : "666", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-+-Cellular-Tablet,-64-GB,-Gold-MUX72HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUX72HN-A-Tablets-491551031-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjAyOXxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDNiLzkxMzYzNDE5MDk1MzQuanBnfDQ3MTQwOGZkNzRiMTE4Yzk1MzQ0NzQwYWQwYzZlOGQ3MGNmMzlmNzhmNzcxODJlNDMwMTJmOTljYWIyYzNiYmQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUX72HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c19"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MUXD2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Silver MUXD2HN/A", + "price" : "869", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-+-Cellular-Tablet,-256-GB,-Silver-MUXD2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUXD2HN-A-Tablets-491551033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTE0NXxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDIxLzkxMzYzNDQyMDMyOTQuanBnfDViZTM4OGZjYzY5ZDM4MmE0MDdiN2U1NmFmYTY2Y2VkMDE0ZDNiYTg0NmY2ZDRmMDI2OTgxMmE0YzU5ZjQyZWU", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUXD2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1a"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Gold MUQY2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Gold MUQY2HN/A", + "price" : "506", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-Tablet,-64-GB,-Gold-MUQY2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUQY2HN-A-Tablets-491551025-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTc2MnxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDI2LzkxMzYzMzIwNzkxMzQuanBnfDBiZjFjZDcxNmZhNzk5MGEyOWIzNDE5MTg3MDE2MjAzNTM1Y2I4NWIzNjAzYzM5ODBjMGY4YjA0YWU3ZGI2Yjk", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUQY2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1b"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MUXC2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi + Cellular Tablet, 256 GB, Space Grey MUXC2HN/A", + "price" : "869", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-+-Cellular-Tablet,-256-GB,-Space-Grey-MUXC2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUXC2HN-A-Tablets-491551032-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzg2M3xpbWFnZS9qcGVnfGltYWdlcy9oZDUvaDdiLzkxMzYzNDgxMzU0NTQuanBnfDA5MTQ3Nzc4NzVlZWY4MWY1MGIyMmNmMjIwNjk0YmI4MzMyMzI5MmNlOWUwZjVhMzMwZTgyNDkyMjNhMTMyZGQ", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUXC2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "308.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "Gigabit-class LTE (Bands 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 21, 25, 26, 28, 29, 30, 34, 38, 39, 40, 41, 46, 66)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours of surfing the web using cellular data network" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1c"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Silver MUQX2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Silver MUQX2HN/A", + "price" : "506", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-Tablet,-64-GB,-Silver-MUQX2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUQX2HN-A-Tablets-491551024-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTYxMHxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaDg2LzkxMzYzMzUwMjgyNTQuanBnfDU1NTg5YjgyMzk3OGE3MjliNTAxN2Y1YTNmOWFlMjRiYTBiMDQ4YTdiYWRhZDQzYzFjOTcxNmQ3NDJhY2E2ZWI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUQX2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1d"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Space Grey MUU32HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 256 GB, Space Grey MUU32HN/A", + "price" : "709", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-Tablet,-256-GB,-Space-Grey-MUU32HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUU32HN-A-Tablets-491551026-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIyMXxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaDM4LzkxMzYzMzczMjIwMTQuanBnfDJhYTViNTI4ZWZiNTE3ZWQ1MTMyYzNkYzFjN2Q1ZTFlM2JmZTlkYjVlZjQ4NmRmYTdhNTEwODQ2ZjFmZGMwZjI", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUU32HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1e"), + "name" : "iBall Slide 25.5 cm (10.1 inch) Tablet 3 GB RAM, 32 GB, Bronze Gold Brace-XJ", + "description" : "iBall Slide 25.5 cm (10.1 inch) Tablet 3 GB RAM, 32 GB, Bronze Gold Brace-XJ", + "price" : "290", + "sku" : "iBall-Slide-25.5-cm-(10.1-inch)-Tablet-3-GB-RAM,-32-GB,-Bronze-Gold-Brace-XJ", + "imageUrl" : "https://www.reliancedigital.in/medias/iBall-SLIDE-BRACE-XJ-Tablets-491503498-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDMxfGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oZDIvOTA4NzU3NDcwNDE1OC5qcGd8YmJlNDYzYmU2MmEyMjZhZTY1ZGQ1YWI0ZjBhYTdjNjI5ZWZhMDEzOTMwMDI4MzkxOWY2YjI5ZTk0N2JjNjAyZA", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Slide" + }, + { + "attributeName" : "Model", + "attributeValue" : "Brace-XJ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "iBall" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bronze Gold" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Panel Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.5 cm (10.1 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.0" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/B3/B5/B8
  • \n
  • TDD LTE: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Octa Core ARM Cortex A53 64 bit" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "7800" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IPS HD Screen Resolution
  • \n
  • 7800 mAh Li- Polymer Battery
  • " + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "iBall", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c1f"), + "name" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Space Grey MUQW2HN/A", + "description" : "Apple iPad mini 2019 20.06 cm (7.9 inch) Wi-Fi Tablet, 64 GB, Space Grey MUQW2HN/A", + "price" : "506", + "sku" : "Apple-iPad-mini-2019-20.06-cm-(7.9-inch)-Wi-Fi-Tablet,-64-GB,-Space-Grey-MUQW2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MUQW2HN-A-Tablets-491551023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIxNnxpbWFnZS9qcGVnfGltYWdlcy9oNmEvaGNkLzkxMzYzMzE3NTE0NTQuanBnfDM0YjI5MmNkOTlhNmZjYmNhZDZhMWI4NGIyNDdkMGIxZTBmNWY4YTNjMmE3NDlkZGUyYjZiMjJlMTU3MWM5OTY", + "category" : { + "_id" : NumberLong(167456), + "name" : "Tablets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "mini" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPad" + }, + { + "attributeName" : "Model", + "attributeValue" : "MUQW2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Height", + "attributeValue" : "20.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.48" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.61" + }, + { + "attributeName" : "Weight", + "attributeValue" : "300.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brightness", + "attributeValue" : "500" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2048 x 1536" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "20.06 cm (7.9 inch)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Data transfer on Cloud", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Pages" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Digital compass" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip with 64-bit Architecture, Neural Engine, Embedded M12 Co-processor" + }, + { + "attributeName" : "Secondary Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lightning to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Wi-Fi: Up to 10 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wide Colour Display (P3)
  • \n
  • True Tone Display
  • \n
  • Fully Laminated Display
  • \n
  • 1.8% Reflectivity
  • \n
  • Fingerprint-Resistant Oleophobic Coating
  • \n
  • Anti-Reflective Coating
  • \n
  • Auto Image Stabilisation
  • \n
  • Five-Element Lens
  • \n
  • Hybrid IR Filter
  • \n
  • Backside Illumination
  • \n
  • Slow Motion (120 fps)
  • \n
  • Time-Lapse Video with Stabilisation
  • \n
  • Operating Ambient Temperature: 0° to 35° C (32° to 95° F)
  • \n
  • Relative Humidity: 5% to 95% Non-Condensing
  • \n
  • Operating Altitude: Tested up to 3" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c20"), + "name" : "iBall 29.46 cm (11.6 inch) Convertible Laptop (Atom/2 GB/32 GB), i360", + "description" : "iBall 29.46 cm (11.6 inch) Convertible Laptop (Atom/2 GB/32 GB), i360", + "price" : "225", + "sku" : "iBall-29.46-cm-(11.6-inch)-Convertible-Laptop-(Atom-2-GB-32-GB),-i360", + "imageUrl" : "https://www.reliancedigital.in/medias/iBall-IBALL-I360-FHD-Laptops-491420246-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDk2OXxpbWFnZS9qcGVnfGltYWdlcy9oMTMvaGU2LzkwMzE2NDMzNjU0MDYuanBnfDgzYTExY2JkM2VlMTg0NGIzMWU0MDUwYzY4MmViYzVlNjJhODhkMzMzYmY5ZDcxOGExYWMxNDgwODkxOWE3ZDQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Model", + "attributeValue" : "i360" + }, + { + "attributeName" : "Brand", + "attributeValue" : "iBall" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Atom x5-Z8350" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "10000" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Atom" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "Z8350" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 10" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "User Manual" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1350" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.5" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "iBall", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c21"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (AMD A6/3 GHz/8 GB/1 TB), 81D60076IN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (AMD A6/3 GHz/8 GB/1 TB), 81D60076IN", + "price" : "510", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-330-Laptop-(AMD-A6-3-GHz-8-GB-1-TB),-81D60076IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-330-81D60076IN-491420081-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjk4N3xpbWFnZS9qcGVnfGltYWdlcy9oYWEvaDE1LzkwNjQ2NzU2MzkzMjYuanBnfGE2NWY2ODc5NWU1NjMwNmVkZmRiZTkzZjQ2Y2QxMGZmNWJiODE0YmViZjQ5MjJkYmZhMjRkYmM3YTI2NzUyNjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81D60076IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9225 Processor" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9225" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • Lenovo App Explorer
  • \n
  • Lenovo Companion 3.0
  • \n
  • Lenovo ID
  • \n
  • Lenovo Settings
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c22"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0299tu", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0299tu", + "price" : "600", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(7th-Gen-Core-i3-2.3-GHz-4-GB-1-TB),-15-da0299tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-B560133WIN9-Laptops-491420078-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjE1NXxpbWFnZS9qcGVnfGltYWdlcy9oMDYvaGRhLzkwNzU2Njg5NDI4NzguanBnfGIyYzQ5OWIxYTA2Y2U3ZGRmZWE4YjgyMTkwMTliNjQzNmQ4YzY4N2IxOWU1MzUwNmY5MmVjNWI2MWI1YjQ5ZmY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0299tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c23"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD E2/1.8 GHz/4 GB/1 TB), A315-21-2109", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD E2/1.8 GHz/4 GB/1 TB), A315-21-2109", + "price" : "377", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-3-Laptop-(AMD-E2-1.8-GHz-4-GB-1-TB),-A315-21-2109", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-UN.GNVSI.001-Laptops-491379641-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODA2MnxpbWFnZS9qcGVnfGltYWdlcy9oOWQvaDM3Lzg5NTYyNDUyNzg3NTAuanBnfDFmNjYxMzFkNmFkNThiMzdlNmQ4ZDRiMDhlMjk1Y2M5Yzk2ZDNmZTAyN2Y0ZmEwZTllYTY5OGNiYjhiMzVmZDk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-21-2109" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz AMD E2-9000 processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5.5 hrs" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9000" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c24"), + "name" : "Dell 35.56 cm (14 inch) Inspiron 14 5000 Series Convertible Laptop (8th Gen Core i3/4 GB/1 TB), 5482", + "description" : "Dell 35.56 cm (14 inch) Inspiron 14 5000 Series Convertible Laptop (8th Gen Core i3/4 GB/1 TB), 5482", + "price" : "870", + "sku" : "Dell-35.56-cm-(14-inch)-Inspiron-14-5000-Series-Convertible-Laptop-(8th-Gen-Core-i3-4-GB-1-TB),-5482", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-5482S-8i3-4-1TB-W10T-MS-FHD-Pen-14-Laptop-491503259-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDE0fGltYWdlL2pwZWd8aW1hZ2VzL2g0ZS9oYjUvOTEwMjM1Mzk4OTY2Mi5qcGd8YjA1ZGU0OTM1ODA2MjY0ZTdlYzcwMWY3ZDA3MjhhNWNiYTc4OTE5MTgwODc2ODk4YzdjOWJlYzA0NTIyODk3Mg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5482" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "up to 3.9 GHz 8th Gen Intel Core i3-8145U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft® Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.28" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c25"), + "name" : "HP 35.56 cm (14 inch) Laptop (7th Gen Core i3/2.4 GHz/4 GB + 16 GB Optane/1 TB), 14-CF0054TU", + "description" : "HP 35.56 cm (14 inch) Laptop (7th Gen Core i3/2.4 GHz/4 GB + 16 GB Optane/1 TB), 14-CF0054TU", + "price" : "599", + "sku" : "HP-35.56-cm-(14-inch)-Laptop-(7th-Gen-Core-i3-2.4-GHz-4-GB-+-16-GB-Optane-1-TB),-14-CF0054TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5PN02PA-Laptops-491488433-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ5OXxpbWFnZS9qcGVnfGltYWdlcy9oNTQvaGNjLzkwOTI4NzIxNDI4NzguanBnfDEyMDdmOTM2MWVhOWE4NTdkYjQ5NWMyMmZkMTY2ZjA1ZWI1MDRkNTFkZGQ1YjZmYzkxNjEwNzg4NmUwMGU5MzM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-CF0054TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.4 GHz 7th Gen Intel Core i3-7100U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial Software" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1430" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.58" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c26"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0102tu", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 15-da0102tu", + "price" : "519", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(7th-Gen-Core-i3-2.3-GHz-4-GB-1-TB),-15-da0102tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-15-da0102TU-7i3-4GB-1TB-W10-FHD-491420124-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjE1NXxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDM3LzkwNzU3MDM2NzY5NTguanBnfDJjZjQ0N2RhYTk3MTE4ODg1MmYxZTY0MTY4OWM2OTc2YTRhZGQzNjEyMGM5ZjE3ZDIwYWFmOWJkODM0MjFjNTc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "RJ-45" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0102tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touchpad with multi-touch gesture support
  • Dual speakers
  • Webcam - HP TrueVision HD Camera with integrated digital microphone
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c27"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "price" : "1074", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-5000-Series-Laptop-(8th-Gen-Core-i5-8-GB-2-TB),-5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560132WIN9-Laptop-491550892-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDI3fGltYWdlL2pwZWd8aW1hZ2VzL2hiMy9oOWQvOTEyMDYyMzgyMDgzMC5qcGd8YTUyOTQ4ZjFiZjQ1OGIxMjE3ZDhiODEyMjhmY2E4ZWYwMGRmZDBiNWYxMDgxMzZhZTcyZmZkYzllZjI1ZjhhMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers professionally tuned with MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device Security 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Licorice Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c28"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), A315-51-33TS", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), A315-51-33TS", + "price" : "653", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-3-Laptop-(7th-Gen-Core-i3-2.7-GHz-4-GB-1-TB),-A315-51-33TS", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-GNPSI-012-Laptops-491379571-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDIwOHxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDk0Lzg5OTc0MjA5OTA0OTQuanBnfDUyNjlkYjYwOTI5Y2E1ZDI3NDUyYjBlMWE4YmViY2IyY2Q1NTQ4YWI3MGI1ODE5YzVhM2VlYzliYmI4OWUyMTE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-51-33TS" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz 7th Gen Intel Dual-Core i3-7130U" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4810" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.7" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6.5 hours Battery Life
  • " + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.095" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c29"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3567", + "price" : "581", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-Laptop-(7th-Gen-Core-i3-2.3-GHz-4-GB-1-TB),-3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-15-3567-Laptops-491420009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDg1fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ny9oMzgvOTAzOTE1ODgwNDUxMC5qcGd8MTNjYmYyMzQzODg2NDNlZjQwZTgzMjAzODEzNjczNTFhYWVhZDA3N2Q2NWI3ZDRmYTkyZThjMGUyZGM1ZDhlMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Optimized Heat Dissipation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Core i3" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2246" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2a"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0077tu", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0077tu", + "price" : "743", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-x360-Convertible-Laptop-(8th-Gen-Core-i3-2.2-GHz-4-GB-1-TB),-14-cd0077tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4LR21PA-Laptops-491392236-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Njc4M3xpbWFnZS9qcGVnfGltYWdlcy9oYzkvaGJkLzkwMzE2MzQ0NTI1MTAuanBnfDNiODVhZGZjMDM5Y2VhZTdmMjk0YzczNWM4MGRjYzIxZjYxNWVjM2NmN2VhYjI3NzQyZmMxMzdlNDI3NjNlOTk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0077tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel i3-8130U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2b"), + "name" : "iBall 29.46 cm (11.6 inch) CompBook Laptop (Atom/2 GB/32 GB), Excelance-OHD", + "description" : "iBall 29.46 cm (11.6 inch) CompBook Laptop (Atom/2 GB/32 GB), Excelance-OHD", + "price" : "189", + "sku" : "iBall-29.46-cm-(11.6-inch)-CompBook-Laptop-(Atom-2-GB-32-GB),-Excelance-OHD", + "imageUrl" : "https://www.reliancedigital.in/medias/iBall-OHD-IPS-Laptops-491420283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTg1MHxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDllLzkwNDI2OTE1MjI1OTAuanBnfGI2ZDJiOWI1ODE1MGI3Y2ZkYWQ0OGMwMTNiZDdjZjFiNTcxZTFiNzc5YzQwMTE5OGFlZDkzNzk3ZTA1NTgzZDk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "CompBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Excelance-OHD" + }, + { + "attributeName" : "Brand", + "attributeValue" : "iBall" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Atom x5-Z8350" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "10000" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Atom" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "Z8350" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Brown" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1100" + }, + { + "attributeName" : "Width", + "attributeValue" : "30" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "iBall", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2c"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15-cs1000tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15-cs1000tx", + "price" : "984", + "sku" : "HP-39.62-cm-(15.6-inch)-Pavilion-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-1-TB),-15-cs1000tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5FP53PA-Laptops-491488119-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjg4OHxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGRkLzkwNzU4OTYwOTA2NTQuanBnfDZhMTcxYmFkMTg0YThiZTk0YmNjMDlkYmM3NjNhNTlmZGIzZjQwMDgzYjk3ZmI2MTBkNWU4MTkwOWQ3YjM2YWM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-cs1000tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1850" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.16" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2d"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15g-dr0006tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 15g-dr0006tx", + "price" : "902", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-1-TB),-15g-dr0006tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-B560133WIN9-Laptops-491420077-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDI2OTh8aW1hZ2UvanBlZ3xpbWFnZXMvaDE3L2hiNS85MDc1NjY3MjM4OTQyLmpwZ3w4NzZjMmUyM2FlZThmNWY5NmU4NDc4NWZmMDRiOWFlZWUwNzdiNWJlMWIzYzU1ZTRjNTBhOTBlOGU1ZTJhNTMx", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15g-dr0006tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz i5-8250U Intel Core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial Software" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX110" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2e"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.1 GHz/4 GB/1 TB), 15-da0098tu", + "description" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.1 GHz/4 GB/1 TB), 15-da0098tu", + "price" : "371", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(Celeron-1.1-GHz-4-GB-1-TB),-15-da0098tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4ST41PA-ACJ-Laptops-491503337-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTc5N3xpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDUwLzkwODc1NjYxMTg5NDIuanBnfDlmZWQ2NWU5Zjg1OTZlYzI1NWM5MjRmMGM3ZDQ3OTU0YWJhNjgzNzA5Y2QyOWVhOWFkOTBmMmVkOWY4OTkxODQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0098tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Intel Celeron N4000" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Celeron" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N4000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "600" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c2f"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i7/2.2 GHz/8 GB/1 TB + 256 GB), FX504GM-EN394T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i7/2.2 GHz/8 GB/1 TB + 256 GB), FX504GM-EN394T", + "price" : "1653", + "sku" : "Asus-39.62-cm-(15.6-inch)-Gaming-Laptop-(8th-Gen-Core-i7-2.2-GHz-8-GB-1-TB-+-256-GB),-FX504GM-EN394T", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-FX504GM-EN394T-Laptops-491488508-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzQ3fGltYWdlL2pwZWd8aW1hZ2VzL2g0YS9oZDgvOTA3NTg5NTQzNTI5NC5qcGd8MWI4NjdhYjNhODA4MTAxOTM1NjNlZTA1MTk1ZmVjNDk3MDA0NWFmYzZmYjZkMDRjMjAxMDJmZTUyN2IwMjM2Yw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GM-EN394T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB SATA + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Intel Core i7-8750H" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1060" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c30"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop (Core i5/1.8 GHz/8 GB/128 GB)", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop (Core i5/1.8 GHz/8 GB/128 GB)", + "price" : "1231", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Air-Laptop-(Core-i5-1.8-GHz-8-GB-128-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Air-Laptop-128-GB-33.78-cm-13.3-491297717-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzM4MXxpbWFnZS9qcGVnfGltYWdlcy9oNTEvaDU2Lzg5Mjg5MzA3NTg2ODYuanBnfDRhOTE0ZjE2YjhkZTY5ZGU4NDJmM2FjZmE1ZDNjNGM2Y2I4MTBkNzkxZjk3ZjZkNTIzNGZmOTY1ZGE4YjU2Nzc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS High Sierra" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Power adapter
  • AC wall plug
  • Power cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 12 hours wireless web" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "6000" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1350" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.7" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c31"), + "name" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "description" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "price" : "2463", + "sku" : "Apple-33.782-cm-(13.3-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(Core-i5-2.3-GHz-8-GB-256-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9Q2HN-A-Laptops-491420041-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDkwMHxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaGYyLzkwNDI3MjM3MDA3NjYuanBnfDNlZTYyMTkwNTE0NTJkODAxMDU0ZTM0ODIwZGVkODlmNzc1ZjMzODhjMDk1MDNjNTVkZmM5OTQ5MzZjMWU1NmM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c32"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/8 GB/2 TB), 5570", + "price" : "962", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-5000-Series-Laptop-(8th-Gen-Core-i5-8-GB-2-TB),-5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560133WIN9-Laptops-491420068-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDgxOHxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDkyLzkwNjk1Nzk1MDE1OTguanBnfDhmYTAwZWVjNTc5MmJlZTg5ZTU4MDYwMGM3ZGFhMzRiMGM3NzYxZDZkZGFlZjc0ZGQ5Y2JlNjExMWZiZjJkOTc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c33"), + "name" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i3/4 GB/1 TB), 81C800M7IN", + "description" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i3/4 GB/1 TB), 81C800M7IN", + "price" : "647", + "sku" : "Lenovo-35.56-cm-(14-inch)-Yoga-520-Convertible-Laptop-(7th-Gen-Core-i3-4-GB-1-TB),-81C800M7IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81C800M7IN-Laptops-491420027-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDM3fGltYWdlL2pwZWd8aW1hZ2VzL2hlZi9oODYvOTA5MzQ0NjYzMTQ1NC5qcGd8NGMzYTg1ODg5NjExMTUxNjZhNzRmNjhkNDk1OTYzZThjZmMxNDNmZmQyNmVlMzAzNGIwMDAwYmU4M2E4OTY5NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10.4 hours" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Yoga" + }, + { + "attributeName" : "Model", + "attributeValue" : "520 81C800M7IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium metallic finish
  • \n
  • Harman Speakers with Dolby Audio Premium
  • \n
  • Faster data transfer with reversible port and secured login
  • \n
  • Visibly clear visual output from all angles
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c34"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.4 GHz/8 GB/1 TB), 15-da0435tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.4 GHz/8 GB/1 TB), 15-da0435tx", + "price" : "679", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(7th-Gen-Core-i3-2.4-GHz-8-GB-1-TB),-15-da0435tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5CK37PA-Laptops-491488257-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc1MHxpbWFnZS9qcGVnfGltYWdlcy9oMDIvaDhlLzkwNzU3MzYzNDY2NTQuanBnfGJmYmM4MGZlODM2YjViMTNkZjE1NjU2NmQ0ZWQxNzhiZDIwMjBkZDU5ZmU5YWI5YTU1MDg5NGUzYTc4YjQ2NjA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-da0435tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.4 GHz 7th Generation Intel Core i3-7100U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX110" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2180" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c35"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i7/4.0 GHz/8 GB/2 TB + 128 GB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i7/4.0 GHz/8 GB/2 TB + 128 GB), 5570", + "price" : "1247", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-15-Laptop-(8th-Gen-Core-i7-4.0-GHz-8-GB-2-TB-+-128-GB),-5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560135WIN9-1-Laptops-491379694-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDAyN3xpbWFnZS9qcGVnfGltYWdlcy9oODkvaDBlLzg5Mzk2NDMyNDA0NzguanBnfGE4YzhiYTVkODFiOTEzNDkzYWQxYmU5OTdiOTllYzhmNjJlNmZkNGM2ZTVjYTI0NzVmMDZjMjQwMWY2ZTNjMzQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated widescreen HD 720 P webcam with dual digital microphone array
  • \n
  • Dual drives with 128GB Solid State Drive + 2TB 5400 rpm Hard Drive
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.0 GHz 8th Generation Intel Core i7-8550U processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "65" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers professionally tuned with MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c36"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Silver", + "price" : "1666", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Air-Laptop-with-Retina-Display-(Core-i5-1.6-GHz-8-GB-128-GB),-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREA2HN-A-Laptop-491503298-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Njg0NXxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaDA5LzkwNzA4MDM5MTA2ODYuanBnfGQ2ZjRhN2I0YzI4NTAxZWZkNjM2OTA5NjU0MTQ0N2FmNzlkM2FjMzIxY2E4MjBiMzhlNGU4MGZhNjcwM2RmMzE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c37"), + "name" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/16 GB/512 GB), 7386", + "description" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/16 GB/512 GB), 7386", + "price" : "1918", + "sku" : "Dell-33.78-cm-(13.3-inch)-Inspiron-13-Convertible-Laptop-(8th-Gen-Core-i7-16-GB-512-GB),-7386", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B565502WIN9-Laptops-491550710-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDIwfGltYWdlL2pwZWd8aW1hZ2VzL2g0ZS9oYjMvOTEwNTE2MzQxOTY3OC5qcGd8MWQwYmNhMWYzZGI2OTAyZDNjNGFjODYzZWU1OGJjNDc4YzIwYTQ1MTU1OGFkYTRhODM1N2Q1NGM2NmM0OGFhMA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7386" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i7-8565U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8565U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1450" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.77" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c38"), + "name" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i5/8 GB/256 GB), 7386", + "description" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i5/8 GB/256 GB), 7386", + "price" : "1534", + "sku" : "Dell-33.78-cm-(13.3-inch)-Inspiron-13-Convertible-Laptop-(8th-Gen-Core-i5-8-GB-256-GB),-7386", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B565501WIN9-Laptops-491550709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MzIwfGltYWdlL2pwZWd8aW1hZ2VzL2g5MC9oZTQvOTEwNTE2MzA5MTk5OC5qcGd8Njk0YjkyNTY0MGIxODU3ZmIzZGRkMTAwMDZlZGE5OTI5Njg0NjlmOTJhOTViYmExYWE4MGY4ZTFmODA3ZmQxZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7386" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1450" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.77" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c39"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (AMD/2 GHz/8 GB/1 TB), F570ZD-DM226T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (AMD/2 GHz/8 GB/1 TB), F570ZD-DM226T", + "price" : "1000", + "sku" : "Asus-39.62-cm-(15.6-inch)-Gaming-Laptop-(AMD-2-GHz-8-GB-1-TB),-F570ZD-DM226T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-F570ZD-DM226T-Laptop-491550902-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDk1fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oNjcvOTEyMjcwNzg2NTYzMC5qcGd8M2RkMzE4MGNkNWIwNWQwYmY2NjEwNmYyZmY5MWU2ZWFiOTFjZjg0MTAxYzBmNGI3NTExZDg1OTJmMDdkZWRhMA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "F570ZD-DM226T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz AMD Quad Core R5-2500U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "R5-2500U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3a"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 81DC00YEIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 81DC00YEIN", + "price" : "751", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-330-Laptop-(7th-Gen-Core-i3-2.7-GHz-4-GB-1-TB),-81DC00YEIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81DC00YEIN-Laptop-491550947-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzY4fGltYWdlL2pwZWd8aW1hZ2VzL2g4Yy9oMGYvOTEyMjcxNDgxMjQ0Ni5qcGd8NWM5ZWYxYzY3NjhhMzAwZjEzNTJiMDc3MDM2YjUxMDg3YzRkM2MwM2Q0YjZiY2NiOWYxYTM4N2U3ZTVlOGFkNA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "81DC00YEIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz 7th Gen Intel Dual Core i3-7130U" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.7" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i3-7130U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home & Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3b"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Space Grey", + "price" : "1956", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Air-Laptop-with-Retina-Display-(Core-i5-1.6-GHz-8-GB-256-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRE92HN-A-Laptop-491503297-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODU5MXxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaGJmLzkwNzA4MDQ4OTM3MjYuanBnfDA4ZmY4NzkwNDk0ZGVhMjhmNTcwMmEwN2IwNjc5N2RiNjA3YWY2MzAxMzQ5Y2QyNzgyMTdhODU0YWEzMDRiZWE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3c"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (8th Gen Core i5/3.4 GHz/4 GB/1 TB), 81DE011SIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (8th Gen Core i5/3.4 GHz/4 GB/1 TB), 81DE011SIN", + "price" : "750", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-330-Laptop-(8th-Gen-Core-i5-3.4-GHz-4-GB-1-TB),-81DE011SIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81DE011SIN-Laptops-491419933-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODA1fGltYWdlL2pwZWd8aW1hZ2VzL2g4MS9oM2YvOTA0MjY3ODU0NjQ2Mi5qcGd8Mjk1M2VlMmUxYTJkNzM1OWUzZTdkYmJiNDhhYmYxOWY0M2YzZTRkZTFhZWU5NGJlYmFlM2Q0MTBiZTI3ZDU1Mg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81DE011SIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Prevents accidental hinge damages
  • \n
  • Sleek uni-body chassis with special protective finish
  • \n
  • Faster data transfer with reversible port for select series and faster Wi-Fi protocol
  • \n
  • Better sound quality
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3d"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 3000 Series Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3576", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 3000 Series Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 3576", + "price" : "616", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-3000-Series-Laptop-(7th-Gen-Core-i3-2.3-GHz-4-GB-1-TB),-3576", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B566534WIN9-Laptops-491488104-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODg5MXxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDlkLzkwNzU2NTQ5ODM3MTAuanBnfGE1NzgwNTM5NDU2MDg2Y2Q1MmM5YWQ0Yjc0NDAzNTRhMDRiZjM1N2JjYmU2NWU3M2MyM2UwNmI4NzIwMjQ5MWE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "3000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3576" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers with Waves MaxxAudio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2130" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3e"), + "name" : "HP 33.78 cm (13.3 inch) Spectre x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB/256 GB), 13-ap0121tu", + "description" : "HP 33.78 cm (13.3 inch) Spectre x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB/256 GB), 13-ap0121tu", + "price" : "2173", + "sku" : "HP-33.78-cm-(13.3-inch)-Spectre-x360-Convertible-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-256-GB),-13-ap0121tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-6DA87PA-ACJ-Laptops-491550817-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oMzcvOTEyMDc1ODgyNDk5MC5qcGd8MjA1ZDEyY2JkZWUyZTZkMDAzMDY0M2VkNDU1NzY1YjI1OTlhZGZlNTc0ZmFkMjExNDA5ODVjOGEzZDAxYTVlZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spectre x360" + }, + { + "attributeName" : "Model", + "attributeValue" : "13-ap0121tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz 8th Generation Intel Core i5-8265U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "HP Audio Boost 2.0" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 12-month free trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Poseidon Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1320" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.88" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.79" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c3f"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB), 15-cx0140tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB), 15-cx0140tx", + "price" : "1193", + "sku" : "HP-39.62-cm-(15.6-inch)-Pavilion-Gaming-Laptop-(8th-Gen-Core-i5-2.3-GHz-8-GB-1-TB),-15-cx0140tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4QM25PA-Laptops-491419997-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDAzM3xpbWFnZS9qcGVnfGltYWdlcy9oNzYvaDVhLzkwMDI4NDMzNzM1OTguanBnfDQxOWFkOGVkN2E0OGY2MjA2MzAxNGJmOTI2MTNlZmZhNDE1Y2NhZDgwMzNmN2I0Y2RlYjRmMDJmNjY3MTdiOGE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-cx0140tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 8th Gen Quad-Core i5-8300H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black, ultra violet logo" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2170" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.54" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.65" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c40"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0050tx", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 14-cd0050tx", + "price" : "857", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-x360-Convertible-Laptop-(8th-Gen-Core-i3-2.2-GHz-4-GB-1-TB),-14-cd0050tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4LR35PA-Laptops-491420171-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzEyN3xpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDY3LzkwMTk5MzM0NTg0NjIuanBnfGQxNjA3OTk0NjZmNzYxNDI3MWViMTQxMWFhY2NlMDQyNGZkOTFjMGE1NzE1OTRhMzU4YTk4NDViYmM2NTU3YzI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0050tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Generation Intel Core i3-8130U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Windows 10 Home
  • \n
  • Wi-Fi and Bluetooth Compatible
  • " + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX 130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c41"), + "name" : "Dell 33.78 cm (13.3 inch) New Inspiron 13 5000 Series Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 5370", + "description" : "Dell 33.78 cm (13.3 inch) New Inspiron 13 5000 Series Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 5370", + "price" : "1021", + "sku" : "Dell-33.78-cm-(13.3-inch)-New-Inspiron-13-5000-Series-Laptop-(8th-Gen-Core-i5-3.4-GHz-8-GB-256-GB),-5370", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-5370-8I5-Laptops-491362574-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDg2M3xpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGUyLzg5NjM4OTM1OTIwOTQuanBnfGRkYjBkNTgxMGExZThmNTg0YzcwOWM1MGM1ZmI5MzExZTYxZGJmMzQ5OThlNGNhN2JkNjJlZjFhMmMzODkyZDc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5370" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1396" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.39" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.99" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c42"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (AMD/2.5 GHz/4 GB/1 TB), 15-db0186au", + "description" : "HP 39.62 cm (15.6 inch) Laptop (AMD/2.5 GHz/4 GB/1 TB), 15-db0186au", + "price" : "545", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(AMD-2.5-GHz-4-GB-1-TB),-15-db0186au", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5KV06PA-Laptops-491503402-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDc4fGltYWdlL2pwZWd8aW1hZ2VzL2hiMS9oOWUvOTA4MDU0NDIzMTQ1NC5qcGd8MTI5Yzc2NDIyYjBiMjJmYTZmM2MzN2U0OWU0MjFkOWQ2YTg3ZjNkYjNhMjhkNDEzZWU2YmQyMzVhYmI1NDcwNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-db0186au" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz AMD Ryzen 3 2200U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Ryzen" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2200U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial offer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "Vega 3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1770" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c43"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GD-E4992T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GD-E4992T", + "price" : "1189", + "sku" : "Asus-39.62-cm-(15.6-inch)-Gaming-Laptop-(8th-Gen-Core-i5-2.3-GHz-8-GB-1-TB-+-256-GB),-FX504GD-E4992T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-FX504GD-E4992T-Laptops-491488510-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzQwfGltYWdlL2pwZWd8aW1hZ2VzL2hlNC9oN2QvOTA3NTkwMzQ5NjIyMi5qcGd8ZDE0OTcwYmRjOWIyMWJmYWVmODZiYjE1NjExYWM4ZDZhNWEyZmYwNTA5YWM1MDcyMzAxZmM2NGZlYTUzYWFmZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "Integrated Graphics: Intel UHD Graphics 630" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GD-E4992T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB SATA + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i5-8300H" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1050" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c44"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0053tx", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i5/1.6 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0053tx", + "price" : "1259", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-x360-Convertible-Laptop-(8th-Gen-Core---i5-1.6-GHz-8-GB-+-16-GB-Optane-1-TB),-14-cd0053tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-x360-14-cd0053tx-Convertible-Laptop-35.56-cm-14-491392237-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDUwMXxpbWFnZS9qcGVnfGltYWdlcy9oODcvaDQ0LzkwOTI4NzE1ODU4MjIuanBnfDZmNjFmMDhlOTljYjI4ZDc3MmQ4YTAyMWJlM2ZlMWQ5NjNjZWJmODkxYmY5MjFkNWU0ZThhYTVmZTJiNjdjYWY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0053tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Core i5-8250U Processor (1.6 GHz base frequency" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pointing Device - HP Imagepad with multi-touch gesture support
  • Sensors - Accelerometer" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c45"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB), Silver", + "price" : "1738", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Pro-Laptop-(Core-i5-2.3-GHz-8-GB),-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Pro-Laptop-33.78-cm-13.3-i5-2.3-GHz-128-GB-Silver-491297706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTc4MnxpbWFnZS9qcGVnfGltYWdlcy9oNDcvaDNhLzg4ODgxOTg3OTExOTguanBnfDMwZTc5NDAzYTYzNGQ0MzFmMjI1ZDNiODhiYjQxNGEwOWZlYTJiYjZjZjE3ZWU5NGU3MTJhNjg1MDg0OTdmMjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree Celsius" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 61W USB-C Power Adapter
  • USB-C Charge Cable (2m)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c46"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i7/1.8 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0055tx", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i7/1.8 GHz/8 GB + 16 GB Optane/1 TB), 14-cd0055tx", + "price" : "1317", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-x360-Convertible-Laptop-(8th-Gen-Core-i7-1.8-GHz-8-GB-+-16-GB-Optane-1-TB),-14-cd0055tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-x360-14-cd0055tx-Convertible-Laptop-35.56-cm-14-491392238-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQ0MHxpbWFnZS9qcGVnfGltYWdlcy9oNTYvaGU4LzkwOTM1MTM4MDU4NTQuanBnfDNkZDNiMTAyOThiNWY5NjkxNDc1MGI0ZTgxOGEyMTFhZTcyZWZhMTAyZjk0NGVkZTQzYmIxNmMyMWQzYWMyMmI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-cd0055tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Core i7-8550U Processor (1.8 GHz base frequency" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors - Accelerometer; Gyroscope; eCompass
  • \r\n
  • Pointing device - HP Imagepad with multi-touch gesture support
  • \r\n
  • Security management - Kensington MicroSaver lock slot. Fingerprint reader
  • " + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • HP Active Pen
  • HP Trendsetter Bag
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1680" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "ENERGY STAR certified; EPEAT Silver registered" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.35" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.42" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c47"), + "name" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-G18:X19", + "description" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-G18:X19", + "price" : "1607", + "sku" : "HP-39.62-cm-(15.6-inch)-Omen-Gaming-Laptop-(8th-Gen-Core-i7-2.2-GHz-16-GB-1-TB-+-128-GB),-15-G18:X19", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4RJ56PA-Laptops-491419998-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzIwN3xpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDdmLzkwMDI4NDA2ODY2MjIuanBnfDdmZmQzMzEyMDdiZTVmOGVkNzJiZjVmYzE1ZDAxM2Y4YWVkYmVmYThhMTZlMTYwODZiYjU1YjhiZGYzMTdhM2E", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Omen" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-dc0082tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2250" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "36" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c48"), + "name" : "Dell 39.62 cm (15.6 inch) G3 Series Gaming Laptop (8th Gen Core i7/8 GB/1 TB + 128 GB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) G3 Series Gaming Laptop (8th Gen Core i7/8 GB/1 TB + 128 GB), 3579", + "price" : "1396", + "sku" : "Dell-39.62-cm-(15.6-inch)-G3-Series Gaming-Laptop-(8th-Gen-Core-i7-8-GB-1-TB-+-128-GB),-3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-3000-SERIES-Laptops-491420040-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTg2fGltYWdlL2pwZWd8aW1hZ2VzL2gyYi9oMTkvOTA0MjY3OTIwMTgyMi5qcGd8MWRiMTE4OTlkMTllMWE1YThhYTVkNTljMTc1MGI0NjVmZTI4NzI4NTZjNzhhNTg4YTk2Y2MzY2IwMjIxMGI1NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7-8750H" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c49"), + "name" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-dc0084tx", + "description" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 128 GB), 15-dc0084tx", + "price" : "1955", + "sku" : "HP-39.62-cm-(15.6-inch)-Omen-Gaming-Laptop-(8th-Gen-Core-i7-2.2-GHz-16-GB-1-TB-+-128-GB),-15-dc0084tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4RJ78PA-Laptops-491419999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDUzOXxpbWFnZS9qcGVnfGltYWdlcy9oMDYvaDdmLzkwMDI4NDYwNjA1NzQuanBnfDQ5ZjNkN2NiZmNmNmQ4ZmVhNmU0YmQ5MTI4MmUyYzYxNDU2YzhiNzM3NGJmN2JiNmRjZTJhODg4MmVhNzM0NTA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Omen" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-dc0084tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2250" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "36" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4a"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/128 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/128 GB), Space Grey", + "price" : "1738", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Pro-Laptop-(Core-i5-2.3-GHz-8-GB-128-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Pro-Laptop-33.78-cm-13.3-i5-2.3-GHz-128-GB-Space-Grey-491297705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzYyNHxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaDVhLzg5Mjg5MjI1NjY2ODYuanBnfGY4MjU0M2E4MjZkZDk2OTM4ZWZhMDVlNjU5MjdhN2YyNGU5YmI2NGFlNzJiMDkwMWI1Y2M1ODE3MDI1YzcwODA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS High Sierra" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 61W USB-C Power Adapter
  • USB-C Charge Cable (2m)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Iris Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours wireless web" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4b"), + "name" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Silver", + "description" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/256 GB), Silver", + "price" : "2463", + "sku" : "Apple-33.782-cm-(13.3-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(Core-i5-2.3-GHz-8-GB-256-GB),-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9U2HN-A-Laptops-491420043-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTUyNHxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaGI0LzkwNDI3MDgxMDMxOTguanBnfDc0ZjE1M2RhYjg3MDVhYmE2NmZhMmMyOGI2MGQxMDcxZjZkOWQzMTkyZGYxODllOWY4Mzk1ZjdhNGVlNjVmYzE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4c"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Gold", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Gold", + "price" : "1666", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Air-Laptop-with-Retina-Display-(Core-i5-1.6-GHz-8-GB-128-GB),-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREE2HN-A-Laptop-491503300-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTc2OXxpbWFnZS9qcGVnfGltYWdlcy9oMzcvaDI0LzkwNzA4MTIxNjgyMjIuanBnfDI5MzA3OTQ2M2QxMGJjNDkzZTAyMDkwMWEzNWY0NDJlNTQyMjBlNDQ3NDU5MDFiMzQwNDJlZGVhOTkxZjE4OGU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4d"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop (Core i5/2.3 GHz/8 GB/256 GB), Space Grey", + "price" : "2028", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Pro-Laptop-(Core-i5-2.3-GHz-8-GB-256-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MacBook-Pro-Laptop-33.78-cm-13.3-i5-2.3-GHz-256-GB-Space-Grey-491297707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzYyNHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaGUyLzg5Mjg5MTg2MzQ1MjYuanBnfGZhYzE5YjNhZTQwY2U5YjU1MWM4ZjhhOWVmODY3YjAyYWYxMjg2NmRkZDk1ZjBmNTQyMjViODQwODZmNWMyMTA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS High Sierra" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 61W USB-C Power Adapter
  • USB-C Charge Cable (2m)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Iris Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours wireless web" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4e"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/4 GB + 16 GB Optane/2 TB), 5570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 5000 Series Laptop (8th Gen Core i5/4 GB + 16 GB Optane/2 TB), 5570", + "price" : "979", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-5000-Series-Laptop-(8th-Gen-Core-i5-4-GB-+-16-GB-Optane-2-TB),-5570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-15-5570-Laptops-491420012-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjY0NXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDJjLzkwOTI4NzAyMDk1NjYuanBnfDc0MzM1NzU0NWEyOTJhOGJjYjQzNzAxMTY2ODU2ZmJhMmRiNWI4MTAxYzJiMjc2MDhlMDk5NGY5OGRhNDgzMjY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "5000 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "5570 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "530" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c4f"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (8th Gen Core i5/8 GB/1 TB), 3576", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (8th Gen Core i5/8 GB/1 TB), 3576", + "price" : "902", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-Laptop-(8th-Gen-Core-i5-8-GB-1-TB),-3576", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B566104WIN9-Laptops-491550715-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjEzfGltYWdlL2pwZWd8aW1hZ2VzL2gxYi9oZmQvOTEwNTE2Mzc0NzM1OC5qcGd8N2FlZTA3NjNlYTM2ZTFkYjlhZWU1OTdmZTM4ZTlhY2ViYjQ4ODQxNTVkYzAwM2I0YTI1ZmJiNDliMWIyNDA0Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3576" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2130" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c50"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i9/32 GB/1 TB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i9/32 GB/1 TB), 9570", + "price" : "3745", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-XPS-15-Laptop-(8th-Gen-Core-i9-32-GB-1-TB),-9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560012WIN9-Laptops-491392360-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMWMvaDY1LzkwMzE2MzM3OTcxNTAuanBnfGM2NWVlMjkwYjI3YzM5OGM5ZTc3OTBjZTQyMWFlYTFmYmU1NzMxNzEzMzU0YjA3ODBmYmE3Nzg4N2IwZGM3ZTg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6-Cell Lithium-Ion Battery
  • Widescreen HD (720p) Webcam Dual Array Digital Microphones
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Ultra HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "3840 x 2160 - Ultra HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i9-8950HK" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "6 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c51"), + "name" : "Lenovo 35.56 cm (14 inch) Yoga 530 Convertible Laptop (8th Gen Core i5/3.4 GHz/8 GB/512 GB), 81EK00ACIN", + "description" : "Lenovo 35.56 cm (14 inch) Yoga 530 Convertible Laptop (8th Gen Core i5/3.4 GHz/8 GB/512 GB), 81EK00ACIN", + "price" : "1390", + "sku" : "Lenovo-35.56-cm-(14-inch)-Yoga-530-Convertible-Laptop-(8th-Gen-Core-i5-3.4-GHz-8-GB-512-GB),-81EK00ACIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81EK00ACIN-Laptops-491419972-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjMxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaDY5LzkwMzA2OTk1NDg3MDIuanBnfDNkMWJkZjNjYWQxYTM0YWU4NTFmMjQ0OTVmYzgyODAzMjU4ZjE5MzMzYTFiNGNjY2Q5ODViY2Y1NTUwNGRjZDI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Up to 10 Hours Battery Life
  • \n
  • 1 year ADP on Redemption
  • \n
  • Precise 4096 Point Sensitivity with Palm Rejection Technology
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Yoga 530" + }, + { + "attributeName" : "Model", + "attributeValue" : "81EK00ACIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1670" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.76" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c52"), + "name" : "Dell 39.62 cm (15.6 inch) New G7 15 Gaming Laptop (8th Gen Core i7/16 GB/1 TB + 128 GB), 7588", + "description" : "Dell 39.62 cm (15.6 inch) New G7 15 Gaming Laptop (8th Gen Core i7/16 GB/1 TB + 128 GB), 7588", + "price" : "1943", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-G7-15-Gaming-Laptop-(8th-Gen-Core-i7-16-GB-1-TB-+-128-GB),-7588", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-BLK-B568105WIN9-Laptops-491392358-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODE4N3xpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDg5LzkwMjY5MDExODA0NDYuanBnfDYzNjAxNWFkYzdiNjE3YjliZTI2Y2NlMTAyNTQ3NGQ4MmZiMTg3MDI4NDBkYmI4NmZjZGViZGRhZDFkZjNiNDY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "7588" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2630" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "27.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c53"), + "name" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/512 GB), Space Grey", + "description" : "Apple 33.782 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (Core i5/2.3 GHz/8 GB/512 GB), Space Grey", + "price" : "2753", + "sku" : "Apple-33.782-cm-(13.3-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(Core-i5-2.3-GHz-8-GB-512-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9R2HN-A-Laptops-491420042-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDc3NnxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDhhLzkwNDI3MDk0MTM5MTguanBnfGE1OWM4OTAxMzE4YTVhZTBjNzA3Njk2ZjQ4YTI1MTEwNWM5ZmI5MzFmZjQwNTQ1ZDdjYzU2MTcyZDkxY2RjYjg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c54"), + "name" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 9370", + "description" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/3.4 GHz/8 GB/256 GB), 9370", + "price" : "1682", + "sku" : "Dell-33.78-cm-(13.3-inch)-New-XPS-13-Laptop-(8th-Gen-Core-i5-3.4-GHz-8-GB-256-GB),-9370", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560022WIN9-1-Laptops-491433181-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTEyM3xpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDc4Lzg5OTk0NzIzMzI4MzAuanBnfDdlYTVkZjYzMDQ1N2ViNzgxNjkyNTQ1YWNlM2RkZmMyZmRjM2VlNzFkZWUzZDlkZTA0NmFlY2EyNzk0NWU0YjM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9370" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Stereo speakers professionally tuned with Waves MaxxAudio Pro
  • \n
  • 4 Digital Array Microphones
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c55"), + "name" : "Lenovo 33.78 cm (13.3 inch) Yoga 730 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/512 GB), 81CT003YIN", + "description" : "Lenovo 33.78 cm (13.3 inch) Yoga 730 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/512 GB), 81CT003YIN", + "price" : "1999", + "sku" : "Lenovo-33.78-cm-(13.3-inch)-Yoga-730-Convertible-Laptop-(8th-Gen-Core-i7-4-GHz-8-GB-512-GB),-81CT003YIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81CT003YIN-Laptops-491419971-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDQ0LzkwNjQ3NzkxMjA2NzAuanBnfDdhZTgwNzAzNzc0MzdjZjhjY2RiY2Y3ZjgyNTMyM2M5ZjFmYzdmNmI3MTljMDhkNDljZWM1MTEwMzM0MTI0NjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Fingerprint Reader
  • \n
  • JBL Speakers
  • \n
  • 1 year ADP on Redemption
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Yoga 730" + }, + { + "attributeName" : "Model", + "attributeValue" : "81CT003YIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4 GHz 8th Gen Intel Core i7-8550U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "11.5 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "48" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Atmos" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1120" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.41" + }, + { + "attributeName" : "Width", + "attributeValue" : "21.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "30.6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c56"), + "name" : "Dell 39.62 cm (15.6 inch) New G7 Series 15 Gaming Laptop (8th Gen Core i9/16 GB/1 TB + 128 GB), 7588", + "description" : "Dell 39.62 cm (15.6 inch) New G7 Series 15 Gaming Laptop (8th Gen Core i9/16 GB/1 TB + 128 GB), 7588", + "price" : "2367", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-G7-Series-15-Gaming-Laptop-(8th-Gen-Core-i9-16-GB-1-TB-+-128-GB),-7588", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B568103WIN9-Laptops-491420057-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTc0MHxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaGZjLzkwMzE2MzIwOTMyMTQuanBnfDc4YzVhNjY5Y2QzMTk0YjBjNjRiNDI1MjI5OGE1N2I1ZTYzZDZhYzk1M2VhMjM2ZWY3YTMyMDRlNDdmMTkzZjI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated Widescreen HD (720P) Webcam
  • Microsoft Office Home And Student 2016 DFO
  • 4-Cell Lithium-Ion Battery
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G7 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "7588 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i9-8950HK" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Licorice Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2630" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "27.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c57"), + "name" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i7/4.0 GHz/16 GB/512 GB), 9370", + "description" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i7/4.0 GHz/16 GB/512 GB), 9370", + "price" : "2450", + "sku" : "Dell-33.78-cm-(13.3-inch)-New-XPS-13-Laptop-(8th-Gen-Core-i7-4.0-GHz-16-GB-512-GB),-9370", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560023WIN9-Laptops-491420197-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTI2NXxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDdkLzkwNDY5MDI5NjQyNTQuanBnfDBjYjVhMmU5NzY3OGRlYjRhNTk4ZDA3ZjAyOGU0MDg5OTZjNmY2MzdmN2FiNWM4NTI4ZjlhNGVhNTRlY2E5MDU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Stereo speakers professionally tuned with Waves MaxxAudio Pro
  • \n
  • Far field Cortana capable" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9370" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.0 GHz 8th Gen Intel Quad-Core i7-8550U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 19 hours and 46 minutes" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speaker" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 12 month Subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1210" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78 - 1.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c58"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 530S Laptop (Core i5/1.6 GHz/8 GB/512 GB), 81EV00BLIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 530S Laptop (Core i5/1.6 GHz/8 GB/512 GB), 81EV00BLIN", + "price" : "1318", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-530S-Laptop-(Core-i5-1.6-GHz-8-GB-512-GB),-81EV00BLIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81EV00BLIN-Laptops-491550719-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTY2fGltYWdlL2pwZWd8aW1hZ2VzL2gwNS9oNzgvOTExMTU0MDMzNDYyMi5qcGd8NWIxOWE4ZjFkYTQ2YzBlMDVkMGVlZGZiZTNkNjQ5Y2RlZjQ5OWI0MzY0Nzc0NWZiYWI0ZDI2OTk3NjhmNThmYQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Series", + "attributeValue" : "530S" + }, + { + "attributeName" : "Model", + "attributeValue" : "81EV00BLIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8250U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Harman" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1690" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.89" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.49" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c59"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/256 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/256 GB), Platinum", + "price" : "1754", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Ultrabook-Laptop-(7th-Gen-Core-i5-8-GB-256-GB),-Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-DAG-00105-Laptops-491420096-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEwMHxpbWFnZS9qcGVnfGltYWdlcy9oZmIvaDY1Lzg5OTcyNjY5MTUzNTguanBnfDkyNzE0ODU3N2U0YWE3NWI5MzY5ZDFhZTVmNTg1MGMwNzdjMDQzYmZkNTRhZGZjY2YzMmNhMzAzY2UzOTAzZTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "DAG-00105" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5a"), + "name" : "Dell 35.56 cm (14 inch) Convertible Laptop (8th Gen i3/8 GB/1 TB), 5482", + "description" : "Dell 35.56 cm (14 inch) Convertible Laptop (8th Gen i3/8 GB/1 TB), 5482", + "price" : "1037", + "sku" : "Dell-35.56-cm-(14-inch)-Convertible-Laptop-(8th-Gen-i3-8-GB-1-TB),-5482", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-5482-S-8i3-8-1-2-W10T-MS-FHD-Pen-14-491503260-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTY2fGltYWdlL2pwZWd8aW1hZ2VzL2g2Yi9oYTUvOTEwMTg2MzgxMzE1MC5qcGd8ODViYzdmOTAyMjE1M2Y0NzQ1OTU5NDNlNDI4YTk1M2MzMDFlNTg0ZjlmZDIyNGU4NGQ4NDc1MmMyYzMyMWJiMQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5482" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i3-8145U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.28" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5b"), + "name" : "Asus 39.62 cm (15.6 inch) Vivobook 15 Laptop (AMD/2.0 GHz/8 GB/1 TB), X505ZA-EJ274T", + "description" : "Asus 39.62 cm (15.6 inch) Vivobook 15 Laptop (AMD/2.0 GHz/8 GB/1 TB), X505ZA-EJ274T", + "price" : "638", + "sku" : "Asus-39.62-cm-(15.6-inch)-Vivobook-15-Laptop-(AMD-2.0-GHz-8-GB-1-TB),-X505ZA-EJ274T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X505ZA-EJ274T-Laptops-491550696-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTc2fGltYWdlL2pwZWd8aW1hZ2VzL2gzNi9oMzEvOTExNzQ1OTY0NDQ0Ni5qcGd8ZGEyZWFlYTI1NWMyOGIwNzgwNDU0NWY0ZjVmYTUyYTcyYWMzMzY2OGYzZTVmNzg3NDc5NjY0NmNiYWVlYmRhMw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Vivobook 15" + }, + { + "attributeName" : "Model", + "attributeValue" : "X505ZA-EJ274T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz AMD Quad Core R5-2500U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2500U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Grey" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5c"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/512 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/512 GB), Platinum", + "price" : "2986", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Ultrabook-Laptop-(7th-Gen-Core-i7-16-GB-512-GB),-Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-DAL-00083-Laptops-491420098-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDMyMnxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaGMyLzg5OTcyNzI4NzkxMzQuanBnfDk5NmJjY2JkYTQwY2EyZmY4OGVjMjdkODAyNDI5YzRmYmQ0ZWJkODI2MTVjYjQxNWQxZDg2ZWQ0OGQwZmY0ZWM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "DAL-00083" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1280" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5d"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (8th Gen Core i3/3.40 GHz/4 GB/ 1 TB), 81F5010MIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (8th Gen Core i3/3.40 GHz/4 GB/ 1 TB), 81F5010MIN", + "price" : "729", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-330S-Laptop-(8th-Gen-Core-i3-3.40-GHz-4-GB--1-TB),-81F5010MIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo330S-81F5010MIN-Laptop-491503254-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDMzfGltYWdlL2pwZWd8aW1hZ2VzL2gwNi9oZmMvOTA5MjY5NTMyNjc1MC5qcGd8ZmY2ZTYwNmFmODgyNmY1YzYyNmNmMGRiMzFlOTNhZDliYzZkZGI0YWNkNDE3MzM5NTM5NjEyOTUzZmY1NmJmYw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "81F5010MIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.40 GHz 8th Gen Intel Core i3-8130U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Faster data transfer with reversible port and latest Wi-Fi protocol
  • \n
  • Visibly clear visual output from all angles
  • \n
  • A cover Material: AI Stamping(Anodized)
  • \n
  • C cover Material: PC-ABS
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 year free McAfee Live Safe support
  • \n
  • Lenovo App Explorer
  • \n
  • Lenovo Companion 3.0
  • \n
  • Lenovo ID
  • \n
  • Lenovo Settings
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1670" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5e"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB), 15-DA1030TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB), 15-DA1030TU", + "price" : "742", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(8th-Gen-Core-i5-1.6-GHz-4-GB-1-TB),-15-DA1030TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP15-DA1030TU-5KV06PA-ACJ-Laptop-491503535-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk3OHxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaGE2LzkwOTI2OTcyOTI4MzAuanBnfGY4ZGY5ZDRlMTk5Njc3NTg4N2YwMDliZThmMmVjMzZkMjI1NDk3YTlkZTIxNGYxOTMxZmU1MDNkNDRkYzUyNTc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "RJ-45" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-DA1030TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touchpad with multi-touch gesture support
  • \n
  • Dual Speakers
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe (30 Days Trial)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2180" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.59" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.61" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c5f"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/1 TB + 128 GB), 7570", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Convertible Laptop (8th Gen Core i7/4 GHz/8 GB/1 TB + 128 GB), 7570", + "price" : "1336", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-Convertible-Laptop-(8th-Gen-Core-i7-4-GHz-8-GB-1-TB-+-128-GB),-7570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A569108WIN9-Laptops-491392361-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDgwNHxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGVhLzkwMDI4MTU1MjA3OTguanBnfGU5ZWQ2MjZjYWRiNDIzODQ0ZmM4MDc2MTIzM2U1ZGQ4MDJkMDQ2MjBhYmZhNzk4NDU3ZDZmNjE1NTFhYzM4Y2Q", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4 GHz 8th Gen Six-Core i7-8550U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo Speaker" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1995" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.14" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.45" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c60"), + "name" : "Dell 43.94 cm (17.3 inch) New Alienware 17 Gaming Laptop (8th Gen Core i9/5.0 GHz/32GB/1 TB + 1 TB), B569902WIN9", + "description" : "Dell 43.94 cm (17.3 inch) New Alienware 17 Gaming Laptop (8th Gen Core i9/5.0 GHz/32GB/1 TB + 1 TB), B569902WIN9", + "price" : "5653", + "sku" : "Dell-43.94-cm-(17.3-inch)-New-Alienware-17-Gaming-Laptop-(8th-Gen-Core-i9-5.0-GHz-32GB-1-TB-+-1-TB),-B569902WIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B569902WIN9-Laptops-491488284-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjgxNHxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDJlLzkwNzU2NTUzMTEzOTAuanBnfDQ1OGY0ZGMzN2U0NzExMThhNGU3NmQ5Nzc5MzNkM2NiYmNjMmIwNWU2OGVjMDJhN2ViZGQ3ZDRkOGU0MTUxYzg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Alienware" + }, + { + "attributeName" : "Model", + "attributeValue" : "B569902WIN9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "43.94 cm (17.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1440" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1TB PCIe SSD + 1TB HDD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "5.0 GHz 8th Gen Intel Core i9-8950HK" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "5" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 12 month Subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1080" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4420" + }, + { + "attributeName" : "Width", + "attributeValue" : "42.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "33.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c61"), + "name" : "Dell 39.62 cm (15.6 inch) New G3 Series Laptop (8th Gen Core i5/8 GB/128 GB + 1 TB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) New G3 Series Laptop (8th Gen Core i5/8 GB/128 GB + 1 TB), 3579", + "price" : "1276", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-G3-Series-Laptop-(8th-Gen-Core-i5-8-GB-128-GB-+-1-TB),-3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560107WIN9-Laptops-491550950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzgwfGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oZjEvOTEyMzA4OTkwNzc0Mi5qcGd8ZGM2YTg4Mjc4ZGJjMDA4ZTUxMDQzYTQxOWY4NWFhNjExODYxODQ3OGVhNjA0OWZmYTM0MzYwY2YwZjVkY2FlNw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Processor Speed: up to 4.0 GHz with Turbo Boost
  • \n
  • Dual Array Digital Microphone
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB SSD + 1 TB HDD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Upto 4.0 GHz 8th Gen Intel Quad-Core i5-8300H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device Security 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c62"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 3567", + "price" : "638", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-15-Laptop-(6th-Gen-Core-i3-2-GHz-8-GB-1-TB),-3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-15-3567-Laptops-491420010-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDQ1NnxpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDYzLzkwMDI4NTE3NjIyMDYuanBnfGIyZGFjOTlmYWZjMTA2ZTVjYWE2N2RmZGMyZDBjMDZmMDY2MGNiNGVhMGEzZWJmNjRjZWVkMTNmMjEzOGY1ODQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz 6th Gen Core i3-6006U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2246" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c63"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 15-bs661tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/8 GB/1 TB), 15-bs661tx", + "price" : "662", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(6th-Gen-Core-i3-2-GHz-8-GB-1-TB),-15-bs661tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3FH80PA-ACJ-Laptops-491379549-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzQzNnxpbWFnZS9qcGVnfGltYWdlcy9oNjEvaDc4Lzg5MjIwNDYzOTg0OTQuanBnfDc0NTUwOGIwNjMzNWQ3YWM2ZmQzMjhhYTdmODI1YjJkNjI4NGNiNjk0MGQ5NjM0MGY0MWU4N2RkYmI1YTExM2U", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs661tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Intel Core i3-6006U" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sparkling black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1860" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c64"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/8 GB/128 GB), KJR-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/8 GB/128 GB), KJR-00015", + "price" : "1290", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-Convertible-Laptop-(7th-Gen-Core-i5-8-GB-128-GB),-KJR-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJR-00015-Laptops-491419884-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2hkZC9oZTQvOTAzOTEzNjkxNTQ4Ni5qcGd8NjIyZWFjZGY5ZWMxNDI3N2IzZjI1MWZmZGQ4NmRmN2M5MmUxYTMxYzJjODNjYjNiM2UxY2M0YWE3ODBjYjRlYg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : " Quick Start Guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJR-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time: Up to 13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM chip for enterprise security" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Windows 10 Pro Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.06" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c65"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/4 GB/128 GB), FJT-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i5/4 GB/128 GB), FJT-00015", + "price" : "1160", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-Convertible-Laptop-(7th-Gen-Core-i5-4-GB-128-GB),-FJT-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-FJT-00015-Laptops-491379596-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTQ2fGltYWdlL2pwZWd8aW1hZ2VzL2g0NS9oOGIvOTAzOTEyNjg4ODQ3OC5qcGd8MTJiMDRmNGQ5MDIzOThkNDA1ZmZiOTJiYTMyMjczYjk0MTRlZjZmMGM1ZjcyNDQwMTUwZTk2M2UyMDQ5ZWMxZA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : " Quick Start Guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "FJT-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time: Up to 13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM chip for enterprise security" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Windows 10 Pro Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.06" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c66"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/512 GB), FKH-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/512 GB), FKH-00015", + "price" : "2971", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-Convertible-Laptop-(7th-Gen-Core-i7-16-GB-512-GB),-FKH-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-FKH-00015-Laptops-491379599-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjQ4fGltYWdlL2pwZWd8aW1hZ2VzL2g4MC9oYjcvOTAzOTEzNzI0MzE2Ni5qcGd8Y2YwZjcwNjQxMGY1NjM0YWMwMzRhZWM0YWRhZWFmZmI5YzI4NjNhZjU4NmNkOTI1MjE4MDZjZTE2MjJiMGQ0Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "FKH-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time: Up to 13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i7" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM chip for enterprise security" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Windows 10 Pro Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.06" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c67"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD/1.80 GHz/4 GB/1 TB), A315-21-27XS", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD/1.80 GHz/4 GB/1 TB), A315-21-27XS", + "price" : "403", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-3-Laptop-(AMD-1.80-GHz-4-GB-1-TB),-A315-21-27XS", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-GNVSI-011-Laptops-491488363-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ5M3xpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDRlLzkwODc1NjY3NzQzMDIuanBnfGFjZTUzNWIxYzY4MGJmYWY5ZTcwZDVhZTJkMGUwMzUwZDhkYjY2MWYxYjViZDZhM2Q4ZjBhMzYzOWQ5ODJhNTE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-21-27XS" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "1 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.80 GHz E2-9000 Dual-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4810" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 12 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "5.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9000" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:09" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Obsidian Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Lithium Polymer Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c68"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/4 GB/1 TB), 81DC00LCIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Laptop (7th Gen Core i3/4 GB/1 TB), 81DC00LCIN", + "price" : "651", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-330-Laptop-(7th-Gen-Core-i3-4-GB-1-TB),-81DC00LCIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-332-81DC00LCIN-491488293-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzAxNnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaGIzLzkwNjQ2NzE3MDcxNjYuanBnfDk3MWU4Yzk3MDk4OTI2MTVhM2ZlNjU1ODQ5NWU3NzA3YmViOTA5MGU5MzQxNWQzODU2Y2ExNDlhMzhkZjU2NmM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81DC00HEIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Intel Core i3-7100U Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i3-7100U" + }, + { + "attributeName" : "Features", + "attributeValue" : "Webcam - HD 720P" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • MS Office H&S 2016
  • \n
  • Lenovo App Explorer
  • \n
  • Lenovo Companion 3.0
  • \n
  • Lenovo ID
  • \n
  • Lenovo Settings
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c69"), + "name" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 14-bf175tx", + "description" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), 14-bf175tx", + "price" : "1005", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-1-TB),-14-bf175tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3GJ93PA-ACJ-Laptops-491379557-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjM5MnxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaGU4Lzg5MDQxNjYxNzg4NDYuanBnfGJhZDRjNmVhYTI5ZWFmNjI5ODNkODlkZmFjMmNlMGUzOTEyZjE4MGJhNTM4ODdlN2E4MDhhYzUxMmMyZDg0ZGQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "On-site Warranty" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-bf175tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz 8th Generation Intel Core i5 processor" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1540" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.76" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6a"), + "name" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), 5378", + "description" : "Dell 33.78 cm (13.3 inch) Inspiron 13 Convertible Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), 5378", + "price" : "785", + "sku" : "Dell-33.78-cm-(13.3-inch)-Inspiron-13-Convertible-Laptop-(7th-Gen-Core-i3-2.4-GHz-4-GB-1-TB),-5378", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-13-5378-Convertible-Laptop-33.782-cm-13.3-491362572-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTM2fGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oYjAvODg4MzY5NTcxNDMzNC5qcGd8ZjMxZThiNDkyNGRmY2U4ZjJkNDM2OGFlYWI0ZThiZDYxODQwODZhZGNiMzgzNDQ5ODRjMDcxMzllZGVmMDdiNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "2.04" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6b"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51", + "description" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51", + "price" : "580", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-Laptop-(7th-Gen-Core-i3-4-GB-1-TB),-A515-51", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Aspire-A515-51-Laptop-39.62-cm-15.6-491351118-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxNXxpbWFnZS9qcGVnfGltYWdlcy9oNWQvaGNmLzg4ODgyMDQyMzA2ODYuanBnfDJkMzMxMTRhN2RlMzhmNDExMzUxY2VhN2VmOTdmZTg2YWMwMDkxMDBkZGMzOWYwZDM0MTg1ODM1N2ZlMmJhYTM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3-pin 45 W AC adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6c"), + "name" : "Acer 29.46 cm (11.6 inch) Spin 1 Convertible Laptop (Pentium/4 GB/500 GB), SP111-31", + "description" : "Acer 29.46 cm (11.6 inch) Spin 1 Convertible Laptop (Pentium/4 GB/500 GB), SP111-31", + "price" : "508", + "sku" : "Acer-29.46-cm-(11.6-inch)-Spin-1-Convertible-Laptop-(Pentium-4-GB-500-GB),-SP111-31", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Spin-1-SP111-31-Convertible-Laptop-29.46-cm-11.6-491351114-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjA2MnxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDMxLzg4ODgyMDgxNjI4NDYuanBnfGU2NDYxNjQ4Njk1NWVkYjg3Yzg2OTgzYzQzNDg3NTBlYTJhY2ZhYjY1NjNlOWM2ZmY0ODZmZjU1NDdmODdhNjg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "2.03" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N4200" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6d"), + "name" : "Acer 35.56 cm (14 inch) Swift 3 Laptop (7th Gen Core i3/4 GB/256 GB), SF314-52", + "description" : "Acer 35.56 cm (14 inch) Swift 3 Laptop (7th Gen Core i3/4 GB/256 GB), SF314-52", + "price" : "798", + "sku" : "Acer-35.56-cm-(14-inch)-Swift-3-Laptop-(7th-Gen-Core-i3-4-GB-256-GB),-SF314-52", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Swift-3-SF314-52-Laptop-35.56-cm-14-491351112-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDAxMnxpbWFnZS9qcGVnfGltYWdlcy9oZmQvaGQzLzg4ODgyMTE0Mzk2NDYuanBnfGY1ZWY5ZTYyNjk2ZDdkZDYyYzlkMGNhNTNjYTYyZjRiMjFmN2YxZTMwZjBjYTMzMjRiZDE5YjlmMjM3N2ZiOTg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6e"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51G", + "description" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (7th Gen Core i3/4 GB/1 TB), A515-51G", + "price" : "653", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-Laptop-(7th-Gen-Core-i3-4-GB-1-TB),-A515-51G", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Aspire-A515-51G-Laptop-39.62-cm-15.6-491351119-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTkyM3xpbWFnZS9qcGVnfGltYWdlcy9oNGQvaDFmLzg4ODgyMDA2MjYyMDYuanBnfGRjOGIyNTdmMzk0YTI5YWNkNDExY2U2OTYyMzVlMDdmMzI3NjdhNWU1YzA3NzJmNTBmY2EwZDY0ZDEyOWNhYjg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3-pin 65 W AC adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c6f"), + "name" : "Acer 39.62 cm (15.6 inch) Nitro 5 Gaming Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), AN515-31", + "description" : "Acer 39.62 cm (15.6 inch) Nitro 5 Gaming Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), AN515-31", + "price" : "928", + "sku" : "Acer-39.62-cm-(15.6-inch)-Nitro-5-Gaming-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-1-TB),-AN515-31", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Nitro-5-AN515-31-Gaming-Laptop-39.62-cm-15.6-491351122-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTg1NHxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaDA5Lzg4ODgyMTkwNDE4MjIuanBnfDk1YzVlNGMzYWEwOGMzNGFkY2I5ZDMyZjk2ZGJmOTY0ODg5MGYxNDYwOGM2OTI5YWM3NWI0NTJkZWRlMTM0NWU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c70"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Power Gaming Laptop (7th Gen Core i5/2.5 GHz/8 GB/1 TB), 15-cb518tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Power Gaming Laptop (7th Gen Core i5/2.5 GHz/8 GB/1 TB), 15-cb518tx", + "price" : "1183", + "sku" : "HP-39.62-cm-(15.6-inch)-Pavilion-Power-Gaming-Laptop-(7th-Gen-Core-i5-2.5-GHz-8-GB-1-TB),-15-cb518tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-Power-15-cb518tx-Laptop-39.62-cm-15.6-491351133-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODI1OXxpbWFnZS9qcGVnfGltYWdlcy9oNDUvaGViLzg4ODgyMTc3MzExMDIuanBnfDRiOGE1NjhlNDcxMTA4MjljNDc3MjljMGM4YTQxM2Q4YTAzYWVkZjE1NzAzYmZhOTI5MzMwMzc2OTIxMmYyNjY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7300HQ" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c71"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i5/3.4 GHz/8 GB/1 TB + 128 GB), 7570", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (8th Gen Core i5/3.4 GHz/8 GB/1 TB + 128 GB), 7570", + "price" : "1225", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-15-Laptop-(8th-Gen-Core-i5-3.4-GHz-8-GB-1-TB-+-128-GB),-7570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-15-7570-Laptop-39.62-cms-15.6-8i5-8-GB-1-TB-128-GB-491351138-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTYzMHxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaGNiLzg5ODIyNjQ0NDcwMDYuanBnfDU3OTUxMGViMmYzYzZiZDJkOTM1MjMzY2Y3NjI3N2JhOTk5NzJjOTQ4YmQyMDhjZGY0ZDE0ZWE1MDZhYzUwMDE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "up to 3.4 GHz 8th Gen Intel Core i5-8250U Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 32 GB" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers professionally tuned with MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee(R) Multi Device Security 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "940MX" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.004" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.14" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.45" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c72"), + "name" : "Lenovo Ideapad 520 81BF00AQIN Laptop, 39.62 cm (15.6)", + "description" : "Lenovo Ideapad 520 81BF00AQIN Laptop, 39.62 cm (15.6)", + "price" : "1121", + "sku" : "Lenovo-Ideapad-520-81BF00AQIN-Laptop,-39.62-cm-(15.6)", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-IdeaPad-520-81BF00AQIN-Laptops-491351125-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzExfGltYWdlL2pwZWd8aW1hZ2VzL2hjZi9oODIvOTA0NDc0NzE1NzUzNC5qcGd8NzlkNjE4MDNmNGM4MDA4ZmZjY2M0NTk5NDc0MzgxNjVjNzlmYzI4Nzc5ZWEzYTc0ZTZmNWVhMTUxYjRmODUxYg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "520 81BF00AQIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.40 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-8250U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX150" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c73"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (Pentium/1.10 GHz/4 GB/500 GB), ES1-533", + "description" : "Acer 39.62 cm (15.6 inch) Aspire Laptop (Pentium/1.10 GHz/4 GB/500 GB), ES1-533", + "price" : "377", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-Laptop-(Pentium-1.10-GHz-4-GB-500-GB),-ES1-533", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-Aspire-ES1-533-Laptop-39.62-cm-15.6-491297538-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjEzNnxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDYzLzg5NTQ4OTkyNjc2MTQuanBnfDE1MDkxYWYxMzEyZTMwOWNjNTVmOThhNTRlMWZiNGQxMzViN2MxNzcxMjUzZTdjNTcxYTU5ODU1MjM5ZGRiNzA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire" + }, + { + "attributeName" : "Model", + "attributeValue" : "ES1-533" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "500 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Pentium N4200 Quad-Core Processor" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3220" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N4200" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "505" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2400" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.46" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.18" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c74"), + "name" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 3KW66PA", + "description" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 3KW66PA", + "price" : "1254", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-Laptop-(8th-Gen-Core-i7-1.8-GHz-8-GB-1-TB),-3KW66PA", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3KW66PA-ACJ-Laptops-491379556-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzU4MXxpbWFnZS9qcGVnfGltYWdlcy9oNGYvaGQ3Lzg5MDQxNzY1MzM1MzQuanBnfDNlMTUzYWYxNTE1MmYyYjRlN2NhZTVkOWRmODhiMGIxZmVhOWFjMGRhYTg3YWFiYTk5NzJmMTQwODQ1NDVjOTg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-ba153tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz 8th Generation Intel Core i7 processor" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "On-site Warranty" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "33.48" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.69" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c75"), + "name" : "HP 33.78 cm (13.3 inch) Spectre x360 Laptop (8th Gen Core i5/1.6 GHz/8 GB/360 GB), 13-ae502tu", + "description" : "HP 33.78 cm (13.3 inch) Spectre x360 Laptop (8th Gen Core i5/1.6 GHz/8 GB/360 GB), 13-ae502tu", + "price" : "1789", + "sku" : "HP-33.78-cm-(13.3-inch)-Spectre-x360-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-360-GB),-13-ae502tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-13-ae502tu-Laptops-491379635-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTIzNXxpbWFnZS9qcGVnfGltYWdlcy9oZTYvaDBkLzg5NTYyNDIzOTUxNjYuanBnfGJlZDBmMjAwMmQ5YTEwYzA5MzEwYjJjMjEzOGMyYzEyMzAwODEyODQ4MDRiMDU3YTExMjkyN2VhN2YwMDY1Yjk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Accelerometer" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spectre x360" + }, + { + "attributeName" : "Model", + "attributeValue" : "13-ae502tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "360 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz 8th Generation Intel Core i5 processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark ash silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1260" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "
  • ENERGY STAR certified
  • \n
  • EPEAT Silver registered
  • " + }, + { + "attributeName" : "Width", + "attributeValue" : "30.6" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c76"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/1 TB), 1796", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro Convertible Laptop (7th Gen Core i7/16 GB/1 TB), 1796", + "price" : "3261", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-Convertible-Laptop-(7th-Gen-Core-i7-16-GB-1-TB),-1796", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-FKK-00015-Laptops-491419866-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjgxMnxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDY2Lzg5OTc0MjIwMzkwNzAuanBnfDdiMTIzNTg3ZjBiODU5NTQ0MjdmMjBkMGUxMjQ2YjljYjk2ZTQxMzQ2Nzg4OGRkYjU4YjE5NDg2MjM0YWU4NWU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect/Mini DisplayPort/Cover port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dolby Audio Premium
  • \n
  • Windows Hello Face Authentication Camera
  • \n
  • Surface Connect
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro" + }, + { + "attributeName" : "Model", + "attributeValue" : "1796" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "13.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver " + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.21" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.142" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c77"), + "name" : "Asus 39.62 cm (15.6 inch) TUF Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), FX504GD-E4363T", + "description" : "Asus 39.62 cm (15.6 inch) TUF Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), FX504GD-E4363T", + "price" : "1073", + "sku" : "Asus-39.62-cm-(15.6-inch)-TUF-Gaming-Laptop-(8th-Gen-Core-i5-2.3-GHz-8-GB-1-TB-+-128-GB),-FX504GD-E4363T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-FX504GD-E4363T-Laptops-491419942-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTYwOXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDIzLzkwMDI4Mjg3NTkwNzAuanBnfDEyMDIyMTBkYjlmMjFjNjU1OWNhZWZhMzZkMTk5MmRkOGJjOWE4MDE3OWFiOWVkMjRjMzdjOGY4NGEwZDc0MzM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "TUF" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GD-E4363T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 8th Gen Core i5-8300H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black Metal" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c78"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/8 GB/1 TB), 15-bs674TX", + "description" : "HP 39.62 cm (15.6 inch) Laptop (7th Gen Core i3/2.3 GHz/8 GB/1 TB), 15-bs674TX", + "price" : "647", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(7th-Gen-Core-i3-2.3-GHz-8-GB-1-TB),-15-bs674TX", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4LQ99PA-Laptops-491392285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM3fGltYWdlL2pwZWd8aW1hZ2VzL2g1ZC9oZmQvOTAzNjE3NDQ1ODkxMC5qcGd8NmFlOWE2ZTdmODA3NTM5YzEzODk1MzUwZDJhY2RhODI3OGEwZTE2ZmQyMzA5NTliM2FhODQyOGUwMmYxYmMxOQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs674TX" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • HP TrueVision HD Webcam – 1280 x 720 by 30 frames
  • Touchpad with Windows 10 Multi-touch gesture support
  • Full-size Textured Island Style Keyboard
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.37" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c79"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron G3 Series Gaming Laptop (8th Gen Core i5/8 GB + 16 GB Optane/1 TB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron G3 Series Gaming Laptop (8th Gen Core i5/8 GB + 16 GB Optane/1 TB), 3579", + "price" : "1170", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-G3-Series-Gaming-Laptop-(8th-Gen-Core-i5-8---GB-+-16-GB-Optane-1-TB),-3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560112WIN9-Laptops-491420195-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTA2fGltYWdlL2pwZWd8aW1hZ2VzL2gyYS9oNWMvOTA5MzUyOTA3NTc0Mi5qcGd8MGQwNjBjNTkyYTc2ZmI0YmYxMDhlOTMyZTliMmJhMjQyZjBhYTQ4ZDFlOGI1YjllYzk5OTBmZDIzNWYyODBmYg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i5 Quad-Core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7a"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/128 GB), LGP-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/128 GB), LGP-00015", + "price" : "1218", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-6-Laptop-(Core-i5-8-GB-128-GB),-LGP-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LGP-00015-Laptops-491550730-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjUwfGltYWdlL2pwZWd8aW1hZ2VzL2hhNS9oNjQvOTEzMDM0MDI1MzcyNi5qcGd8ZWJkMzI5N2JjMTE3ODYxOTE5YWVhZTU4NWVhNzY4Yzc1NjMzMjljZmEwZTA5YzE3MTgyYTdiNjNlNTU3MDVlMQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "LGP-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i5-8350U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8350U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7b"), + "name" : "Lenovo 39.62 cm (15.6 inch) Laptop (AMD A6/4 GB/500 GB), V110", + "description" : "Lenovo 39.62 cm (15.6 inch) Laptop (AMD A6/4 GB/500 GB), V110", + "price" : "653", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Laptop-(AMD-A6-4-GB-500-GB),-V110", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-80TDA013IH-Laptops-491503406-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTE0NnxpbWFnZS9qcGVnfGltYWdlcy9oNjYvaDdiLzkwNzU3NjQ1MjcxMzQuanBnfGU1OGI2MGUyNTFmOWM3N2RjODNjODQwYjcyOWViZTliMzkyNzRmY2FlNjU2MGViN2JiYjgxYWQwYzE1YmYxYjk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "V110" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "500 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9210" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9210" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Mono" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R5 M430" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1900" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7c"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Space Grey", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/128 GB), Space Grey", + "price" : "1666", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Air-Laptop-with-Retina-Display-(Core-i5-1.6-GHz-8-GB-128-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRE82HN-A-Laptop-491503296-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTYwNnxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGIwLzkwNzA4MDQyMzgzNjYuanBnfDA0YTJiMzc2ZTc0N2RiNTM1NGY2MTYwMmIzZTJiYzMyMjBjYWJjNTI1YWM5YTFiZmJlYjkyZWRmYmQzNDUzNzQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7d"), + "name" : "Dell 33.7 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/4 GHz/16 GB/512 GB), 7373", + "description" : "Dell 33.7 cm (13.3 inch) Inspiron 13 Convertible Laptop (8th Gen Core i7/4 GHz/16 GB/512 GB), 7373", + "price" : "1522", + "sku" : "Dell-33.7-cm-(13.3-inch)-Inspiron-13-Convertible-Laptop-(8th-Gen-Core-i7-4-GHz-16-GB-512-GB),-7373", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-13-7373-Convertible-Laptop-33.7-cm-13.3-491351102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODI2MXxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGQyLzg5ODIyNTg3NDUzNzQuanBnfDQxN2MyNjdmN2U3OGU2ZTc1OGU1NWJmYzcyYmRmYTdkMGFlMjY4Y2MxOTFkZjc5Y2ZlMzNhYzgwYjgyNDQzNWI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "7373" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.7 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8550U Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Era Gray" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1450" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.551" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.96" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.57" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7e"), + "name" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 14-bf177tx", + "description" : "HP 35.56 cm (14 inch) Pavilion Laptop (8th Gen Core i7/1.8 GHz/8 GB/1 TB), 14-bf177tx", + "price" : "1254", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-Laptop-(8th-Gen-Core-i7-1.8-GHz-8-GB-1-TB),-14-bf177tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3GJ95PA-ACJ-Laptops-491379558-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDY2N3xpbWFnZS9qcGVnfGltYWdlcy9oZjQvaDJjLzg5MDQxNzc1MTY1NzQuanBnfDAyMjVhOWE0MzI4MjA0NDI4Y2M0MmM5M2RmMmVmZTdjMTIyYTQ4MWYzNjA5MjZlNDJiZGJlM2ViMjY4NzU1MGI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "On-site Warranty" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-bf177tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz 8th Generation Intel Core i7 processor" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8550U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1540" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.76" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c7f"), + "name" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/8 GB/256 GB), 9360", + "description" : "Dell 33.78 cm (13.3 inch) New XPS 13 Laptop (8th Gen Core i5/8 GB/256 GB), 9360", + "price" : "1450", + "sku" : "Dell-33.78-cm-(13.3-inch)-New-XPS-13-Laptop-(8th-Gen-Core-i5-8-GB-256-GB),-9360", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560034WIN9-1-Laptops-491351140-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzM2OXxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDI5Lzg5NjM4OTg1NzI4MzAuanBnfDFlM2E4ZDBkYmY3YzExMmFkYjliYWEzNjM0ZWE0MzlkNjJkYWRiNTZkMWQyYTQ5NTg3N2M1NzVjMWVmNDE4MzY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9360" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c80"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD/8 GB/1 TB), 5575", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD/8 GB/1 TB), 5575", + "price" : "777", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-15-Laptop-(AMD-8-GB-1-TB),-5575", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A560119WIN9-Laptops-491379691-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzExM3xpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDU1Lzg5Mzk2NDI5MTI3OTguanBnfDc5MTZjNjcxOTY0NDRkMDc5ZmE5ZDNhYmZlNDlkNGY5MzFlM2NkNmU2Mjk3YThjZDBkZDgzMjMwMDc5YjdjMjA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5575" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD Ryzen 5 2500U processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2500U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers" + }, + { + "attributeName" : "Features", + "attributeValue" : "Integrated widescreen HD 720 P webcam with dual digital microphone array" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "Vega8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2221" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c81"), + "name" : "Asus 39.62 cm (15.6 inch) VivoBook S15 Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), X510UA-EJ770T", + "description" : "Asus 39.62 cm (15.6 inch) VivoBook S15 Laptop (7th Gen Core i3/2.4 GHz/4 GB/1 TB), X510UA-EJ770T", + "price" : "566", + "sku" : "Asus-39.62-cm-(15.6-inch)-VivoBook-S15-Laptop-(7th-Gen-Core-i3-2.4-GHz-4-GB-1-TB),-X510UA-EJ770T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X510UA-EJ770T-Laptops-491379660-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODE0NnxpbWFnZS9qcGVnfGltYWdlcy9oOWYvaDVkLzg5NTYyMjU2ODM0ODYuanBnfDVjMzlhNjNmNTVhNmQzNjY4NjgxOWEyMDllYmEzMWYxZTJhYjYzMGQ3NjIyMWNlN2Y2YTU0NjAxYzQyZWNmNjc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "VivoBook S15" + }, + { + "attributeName" : "Model", + "attributeValue" : "X510UA-EJ770T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.4 GHz 7th Generation Intel Core i3-7100U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7100U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1700" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.1" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c82"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (AMD/4 GB/1 TB), 5575", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron Laptop (AMD/4 GB/1 TB), 5575", + "price" : "600", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-Laptop-(AMD-4-GB-1-TB),-5575", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-INSPIRON-5575-Laptops-491419930-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU4MXxpbWFnZS9qcGVnfGltYWdlcy9oNDYvaDJhLzkwMzkxNTc4MjE0NzAuanBnfGUxNWIwYzdjZjBkMTU4M2JkOTUzYjlhN2JjOTQ4ZmFhMDUzMDU1YjM3NzljZDE2MDJlNjMxODkzMTJlMDYyMGM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Optimized Heat Dissipation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD Ryzen 3" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "5575 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "2200U" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "Vega 3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2221" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c83"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Netbook Laptop (Pentium/2.7 GHz/4 GB/1 TB), 81D100C7IN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330 Netbook Laptop (Pentium/2.7 GHz/4 GB/1 TB), 81D100C7IN", + "price" : "451", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-330-Netbook-Laptop-(Pentium-2.7-GHz-4-GB-1-TB),-81D100C7IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81D100C7IN-Laptops-491419908-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODA1fGltYWdlL2pwZWd8aW1hZ2VzL2gzNi9oYzYvOTAzOTE1MjE4NTM3NC5qcGd8M2RjYTY0MDk0NjE3NTJkZDAxMzJjMTI2YWJjMDE1ZDhhMmRlYjM3Yjc0YjgyMDQ1NmE4NDdiZGFmOGI5YWFiMw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81D100C7IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "External" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Intel Pentium" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "30" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.7" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N5000" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c84"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81F500MSIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 330S Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81F500MSIN", + "price" : "677", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-330S-Laptop-(7th-Gen-Core-i3-2.3-GHz-4-GB-1-TB),-81F500MSIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81F500MSIN-Laptops-491419949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3Njg1fGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oM2QvOTA0MjY5MDUzOTU1MC5qcGd8NDllMTEzODZkNzZjNWEwZWI2YjY3ZDU3YmMyOWFkYjYwNzUzOWMyZGE1YjQxNmU3ZWJkNmU5ODcwYmJiOWVlOA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330S 81F500MSIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 6 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Thin & light laptop with wider display for life-like view
  • \n
  • Better Sound Quality
  • \n
  • Rapid charge offer 2 hours charge in 15 mins
  • \n
  • Visibly clear visual output from all angles
  • \n
  • Faster data transfer with reversible port and latest Wi-Fi protocol
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1870" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c85"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "price" : "441", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-Laptop-(AMD-A6-4-GB-1-TB),-3565", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-3565-Laptops-491488102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzU1fGltYWdlL2pwZWd8aW1hZ2VzL2g2OC9oZmIvOTA2NDQ1NjY4MzU1MC5qcGd8NTE0NDcyYzRlNzI5NjcyY2I1NWYxYWE5Njc3M2NlZDgxMzgxOGZjOGRjYjAzNzc5NDVjMGQyNDllODEzZjUxOQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "RJ-45 Ethernet Port (10/100)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3565" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9225 Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9225" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated Widescreen HD 720P Webcam with Single digital microphone
  • \n
  • 2 tuned speakers with Waves MaxxAudio Pro
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • Microsoft Office trial
  • McAfee Multi Device 15 month subscription
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2041" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c86"), + "name" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GM-E4392T", + "description" : "Asus 39.62 cm (15.6 inch) Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 256 GB), FX504GM-E4392T", + "price" : "1464", + "sku" : "Asus-39.62-cm-(15.6-inch)-Gaming-Laptop-(8th-Gen-Core-i5-2.3-GHz-8-GB-1-TB-+-256-GB),-FX504GM-E4392T", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-FX504GM-E4392T-Laptops-491488509-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzcxfGltYWdlL2pwZWd8aW1hZ2VzL2gxYS9oN2EvOTA3NTg5NTc2Mjk3NC5qcGd8Y2E1YjI2ZjI4NzVmYjIzYmQyZmZlYmQ3ODJiNzA2MTM4YjkxNzQ5NmQxYWFjZWUxZTRjYWRmNTEyYTcwMjgwYQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64 bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX504GM-E4392T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB SATA + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Intel Core i5-8300H" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1060" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c87"), + "name" : "Asus 35.56 cm (14 inch) Laptop (7th Gen Core i5/1.2 GHz/4 GB/128 GB), TP401CA-EC136T", + "description" : "Asus 35.56 cm (14 inch) Laptop (7th Gen Core i5/1.2 GHz/4 GB/128 GB), TP401CA-EC136T", + "price" : "1073", + "sku" : "Asus-35.56-cm-(14-inch)-Laptop-(7th-Gen-Core-i5-1.2-GHz-4-GB-128-GB),-TP401CA-EC136T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-TP401CA-EC136T-Laptops-491431472-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTA5N3xpbWFnZS9qcGVnfGltYWdlcy9oMDIvaDBlLzkxNDIzMTYwNDAyMjIuanBnfDg0MDY5MmE1NmMwMmUxN2RmYThjYmI0YzhlMWE5NDVjNjIyYmE0ZjYxZTRiZGJkZWViZmIxZWVjMWVjMzkzNmE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4M Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "TP401CA-EC136T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz Intel Core i5-7Y54" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "33" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7Y54" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Light Grey Metal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "33 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1500" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.6" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c88"), + "name" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), X512FL-EJ042T", + "description" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB), X512FL-EJ042T", + "price" : "986", + "sku" : "Asus-39.62-cm-(15.6-inch)-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-1-TB),-X512FL-EJ042T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X512FL-EJ042T-Laptops-491431473-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzEzNHxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaGQyLzkxNDIzMTQ3Mjk1MDIuanBnfGY2MTU1OGRiYmRkODg0ODNjOWQyZGUxMjZkOTdlOTI1ZjEwYjhmNjJiYWFmN2YxNjgxNjgxN2MwNjk5YmU3Yjc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "GDDR5 2GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6 MB Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "X512FL-EJ042T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "65" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Transparent Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "65 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1750" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c89"), + "name" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6105T", + "description" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6105T", + "price" : "1218", + "sku" : "Asus-35.56-cm-(14-inch)-ZenBook-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-512-GB),-UX433FA-A6105T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-UX433FA-A6105T-Laptops-491431426-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzM4fGltYWdlL2pwZWd8aW1hZ2VzL2g5OC9oZTcvOTE0MjMwNzE5Mjg2Mi5qcGd8OGMyODVkNTVmZDExYzNkNDU0NDc4MDAzZDU0MGU0NjNjZTQ5MzZlNjBiNTRjZDMzODEyNWU3MmZiMWU2ZTk0Yw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6M Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ZenBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "UX433FA-A6105T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Royal Blue Metal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sleeve" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1190" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8a"), + "name" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB + 128 GB), FX570UD-DM138T", + "description" : "Asus 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/8 GB/1 TB + 128 GB), FX570UD-DM138T", + "price" : "1102", + "sku" : "Asus-39.62-cm-(15.6-inch)-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-1-TB-+-128-GB),-FX570UD-DM138T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-FX570UD-DM138T-Laptops-491431471-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDc0MnxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaDczLzkxNDIzMDU1NTQ0NjIuanBnfDk1ZDFlNmYyMWIzOThiMGUxMDVjM2E2YjZlMmQ1MWRhZDFlYWEzMWUxZjEyZjE2N2UyZDM1NzU3MDFlMWMxOWM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "GDDR5 4GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Illuminated Chiclet Keyboard type
  • \n
  • TPM (Firmware TPM) security
  • \n
  • BIOS Booting User Password Protection
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "FX570UD-DM138T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8250U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "120" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Flame Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "120 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1960" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.6" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8b"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (AMD A6/4 GB/1 TB), 3565", + "price" : "458", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-15-Laptop-(AMD-A6-4-GB-1-TB),-3565", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A566102WIN9-Laptops-491379692-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTIxNnxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDc4Lzg5ODQ1NDU0OTMwMjIuanBnfGUxMjczMDFkYzNjY2NmOTZjNjVkNzRmYTU1ZWExZmI3MTI0Y2JmY2Y1NGE5ZGIzNzZmNjBkYzViNDA0ZGE0YmE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3565" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A6-9200 Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 16 GB" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "9200" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 Tuned speakers with Waves MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A6" + }, + { + "attributeName" : "Features", + "attributeValue" : "Integrated widescreen HD (720p) Webcam" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "A6-9200" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2270" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8c"), + "name" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.1 GHz/4 GB/256 GB), 14-dh0101tu", + "description" : "HP 35.56 cm (14 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.1 GHz/4 GB/256 GB), 14-dh0101tu", + "price" : "752", + "sku" : "HP-35.56-cm-(14-inch)-Pavilion-x360-Convertible-Laptop-(8th-Gen-Core-i3-2.1-GHz-4-GB-256-GB),-14-dh0101tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-6ZF27PA-ACJ-Laptops-491570775-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQ3NHxpbWFnZS9qcGVnfGltYWdlcy9oOGUvaGI2LzkxMzY3NjEyNzQzOTguanBnfGM3YTA0ZDdhN2ZmNzM2MzU2NTFkOTMyOGUwNDIzZjk1ZWE1YjMwNWJmOGQ2ZWJlYTY0NWVmNjBlM2RhNDJlYzE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "14-dh0101tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz 8th Gen Intel Core i3-8145U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language 64" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 2.1 GHz processor base frequency" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "HP 3D DriveGuard" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "HP Active Pen" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1590" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "ENERGY STAR certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.4" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.29" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8d"), + "name" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (7th Gen Core i7/8 GB/1 TB + 128 GB), 15-ce089tx", + "description" : "HP 39.62 cm (15.6 inch) Omen Gaming Laptop (7th Gen Core i7/8 GB/1 TB + 128 GB), 15-ce089tx", + "price" : "1619", + "sku" : "HP-39.62-cm-(15.6-inch)-Omen-Gaming-Laptop-(7th-Gen-Core-i7-8-GB-1-TB-+-128-GB),-15-ce089tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Omen-15-ce089tx-Gaming-Laptop-39.62-cm-15.6-491351167-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTkwNHxpbWFnZS9qcGVnfGltYWdlcy9oZDcvaDY2Lzg4OTE5MjYxMTg0MzAuanBnfGRkNTY1NWJmMDc0ZTNlOGMyMDA4YTdhZWM0MGY5MTk3ZmNlNDc1ZGRjZmZiZjJlZDI0NDJjYjAxY2VjYjBiOGI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB HDD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7700HQ" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8e"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (6th Gen Core i3/4 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 15 Laptop (6th Gen Core i3/4 GB/1 TB), 3567", + "price" : "632", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-15-Laptop-(6th-Gen-Core-i3-4-GB-1-TB),-3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A566505HIN9-1-Laptops-491379541-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc5NnxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaDRkLzg5NjM4OTU4ODU4NTQuanBnfGQ0MTJkZmI1ZjRmMWZmMzE5ZDVmMDU2ODFlOTc1Mzg5ODZkNWU4MzM5M2JkYTlhOGE1MGEwYjA4NzNhOGY1YzQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "6th Generation Intel Core i3-6006U" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c8f"), + "name" : "Dell 39.62 cm (15.6 inch) New G3 Series 15 Gaming Laptop (8th Gen Core i5/8 GB/1 TB + 128 GB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) New G3 Series 15 Gaming Laptop (8th Gen Core i5/8 GB/1 TB + 128 GB), 3579", + "price" : "1223", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-G3-Series-15-Gaming-Laptop-(8th-Gen-Core-i5-8-GB-1-TB-+-128-GB),-3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560107WIN9-Laptops-491420058-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzkzNHxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaGJmLzkwMzE2MzI0ODY0MzAuanBnfGViM2NjNmRiY2YwYmE4OGEyMGE0ZjhmYzAyOGMzOGVkMmFkMzQ1NzI1ZWY0OGMxZjljNzE1NWExMjdjYWQ1Y2U", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 15.6-inch FHD IPS Anti-Glare LED-Backlit Display
  • Integrated Widescreen HD (720p) Webcam With Dual Array Digital Microphone
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579 " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Generation Intel Core i5-8300H" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2530" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c90"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (Pentium/1.6 GHz/4 GB/1 TB), 15q-bu002TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (Pentium/1.6 GHz/4 GB/1 TB), 15q-bu002TU", + "price" : "425", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(Pentium-1.6-GHz-4-GB-1-TB),-15q-bu002TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-2LS29PA-Laptops-491379548-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTk5MHxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDg3Lzg5OTk0NzUyODE5NTAuanBnfGY0MjhlMzJhNzYyY2FlMDliZmI4NTg3YmYzYzc4ZTg0NzI5ZjdjMWM3NjMzZGI3NWQzZTUwZGEzNTcwZmNhYTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15q-bu002TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Pentium N3710" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N3710" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual Speakers
  • \n
  • HP TrueVision HD Webcam
  • \n
  • Full-size Textured Island Style Keyboard
  • \n
  • Kensington Lock Slot
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "405" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.94" + }, + { + "attributeName" : "Depth", + "attributeValue" : "2.38" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c91"), + "name" : "Lenovo 39.62 (15.6 inch) Ideapad 330 Netbook Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81DE0125IN", + "description" : "Lenovo 39.62 (15.6 inch) Ideapad 330 Netbook Laptop (7th Gen Core i3/2.3 GHz/4 GB/1 TB), 81DE0125IN", + "price" : "599", + "sku" : "Lenovo-39.62-(15.6-inch)-Ideapad-330-Netbook-Laptop-(7th-Gen-Core-i3-2.3-GHz-4-GB-1-TB),-81DE0125IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81DE0125IN-Laptops-491419911-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODA1fGltYWdlL2pwZWd8aW1hZ2VzL2gyNC9oZWYvOTAzOTE1MTc5MjE1OC5qcGd8ZTZlY2U3MGY1N2I4ZTk2ZGQ0ZDcxZTJjOGUxYTRmZDdiNjFiY2I0ZDMyMWU5Yjk3NWNjMzJlYmZkMDM2NTMxZQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home (64 bit)" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330 81DE0125IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 7th Gen Intel Core i3" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "MMC Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "30" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.29" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c92"), + "name" : "Lenovo 39.62 cm (15.6 inch) Legion Y530 Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 81FV00JKIN", + "description" : "Lenovo 39.62 cm (15.6 inch) Legion Y530 Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 81FV00JKIN", + "price" : "1680", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Legion-Y530-Gaming-Laptop-(8th-Gen-Core-i5-2.3-GHz-8-GB-1-TB-+-128-GB),-81FV00JKIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81FV00JKIN-Laptops-491503494-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzMzfGltYWdlL2pwZWd8aW1hZ2VzL2g5OS9oMDAvOTA4NzU2NjQ0NjYyMi5qcGd8MTI3MTZkNjZjMTgwMjMzNDRhYjYwMzNlNDgwOTZjZGY5MTY3OTFlMjE1N2M1MmRkYmRiODI5MTg0NzM4YjgwMQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Legion" + }, + { + "attributeName" : "Series", + "attributeValue" : "Y530" + }, + { + "attributeName" : "Model", + "attributeValue" : "81FV00JKIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel i5-8300H" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2300" + }, + { + "attributeName" : "Width", + "attributeValue" : "36" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.7" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c93"), + "name" : "Dell 39.62 cm (15.6 inch) G3 Series 15 Gaming Laptop (8th Gen Core i7/4.1 GHz/16 GB/1 TB + 256 GB), 3579", + "description" : "Dell 39.62 cm (15.6 inch) G3 Series 15 Gaming Laptop (8th Gen Core i7/4.1 GHz/16 GB/1 TB + 256 GB), 3579", + "price" : "1604", + "sku" : "Dell-39.62-cm-(15.6-inch)-G3-Series-15-Gaming-Laptop-(8th-Gen-Core-i7-4.1-GHz-16-GB-1-TB-+-256-GB),-3579", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-G3-B560106WIN9-Laptop-491503258-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzM0fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ny9oNzQvOTA5MDQwMDM1NDMzNC5qcGd8ZDE3ZDczNGE1MDc1ZTcxY2FiZTIzNDMxNTJkOTVlMDc3MWM4ZGFkNzAxZjU4MDFkNDAzZmYzMzZmNjZlZDY5Yw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "G3 Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "3579" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 256 GB SSD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB DDR4 2666MHz" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "upto 4.1 GHz 8th Gen Intel Core i7-8750H Processor" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Hexa-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2x tuned speakers; audio processing by Waves MaxxAudio Pro 1" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • McAfee(R) Multi Device Security 15 month subscription
  • \n
  • Microsoft Office Home and Student 2016 DFO
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2590" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.27" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c94"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "price" : "3899", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Book-2-Convertible-Laptop-(8th-Gen-Core-i7-4.2-GHz-16-GB-1-TB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-Surface-Book-2HNN-00033-Convertible-Laptop-13-5-491488125-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDIyOXxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDM1LzkwODUxMDA2ODczOTAuanBnfDI2NTg4ODU4OTJkMmY0NGNhMmQyMGVmY2IxYzNiNGRhOWYwNDYwZDk2YjgxOGM0ZDM2MjZiN2Q1NDc0ODE3NTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Surface Power Supply w/USB-A (5W) charging port" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8650U quad-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Front-facing stereo speakers with Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 5.0MP front-facing camera with 1080p HD video
  • \n
  • 8.0MP rear-facing autofocus camera with 1080p HD video
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1642" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c95"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Silver", + "price" : "1956", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Air-Laptop-with-Retina-Display-(Core-i5-1.6-GHz-8-GB-256-GB),-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREC2HN-A-Laptop-491503299-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzI5N3xpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDYxLzkwNzA4MDQ1NjYwNDYuanBnfGNkMGJhNzQ3OWNmMTUwM2VjN2M1MmFlMzYwNjViMDk1YjExZWU0YmI1MjNkMTkzNjg4Y2EzOWY0OThjNDVlM2Q", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c96"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB)", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB)", + "price" : "1738", + "sku" : "Apple-30.48-cm-(12-inch)-MacBook-Laptop-(Core-m3-1.2-GHz-8-GB-256-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRQN2HN-A-Laptops-491503294-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODg0fGltYWdlL2pwZWd8aW1hZ2VzL2gyYi9oMjYvOTA3NTkwMjg0MDg2Mi5qcGd8YjhkZTJmMDA5MDAxZDM0MzZiZjRkZDdlMDNjNzQ5OTIwOTA0ZTE4NzJkMTYzNDkwYzBjNjcyY2QxNTZhYTQwMA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • LED-backlit display with IPS technology
  • \n
  • Camera - 480p FaceTime camera
  • \n
  • Dual microphones
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz dual-core Intel Core m3 Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Wireless web: Up to 10 hours
  • \n
  • iTunes movie playback: Up to 12 hours
  • \n
  • Standby time: Up to 30 days
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "m3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 to 35 Degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 to 45 Degree C " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.31" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c97"), + "name" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "description" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/1 TB)", + "price" : "4450", + "sku" : "Microsoft-38.1-cm-(15-inch)-Surface-Book-2-Convertible-Laptop-(8th-Gen-Core-i7-4.2-GHz-16-GB-1-TB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-Surface-Book2-FVH-00029-Convertible-Laptop-15-491488126-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzM3NnxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaDNkLzkwODUxMDAzNTk3MTAuanBnfDE4NDIzYzI4MDJhOGI2MDRmM2E5ZTZlNmVkZTM4MzM0ZTY4OTRhMzYxNTE4YzU4MTEyZDExYThkN2MwMTUyMDE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "95W Surface Power Supply w/USB-A (5W) charging port" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8650U quad-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Front-facing stereo speakers with Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 5.0MP front-facing camera with 1080p HD video
  • \n
  • 8.0MP rear-facing autofocus camera with 1080p HD video
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1905" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c98"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (1.3 GHz/8 GB/512 GB)", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (1.3 GHz/8 GB/512 GB)", + "price" : "2173", + "sku" : "Apple-30.48-cm-(12-inch)-MacBook-Laptop-(1.3-GHz-8-GB-512-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRQP2HN-A-Laptops-491503295-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDExfGltYWdlL2pwZWd8aW1hZ2VzL2hlMy9oNmMvOTA3NTkwNDE1MTU4Mi5qcGd8MTE5OWE3NGExMzE0MzI2NzRmNDZkN2JhY2E3MWNlYzk2N2RkOTc2MDg0NTk3YjA3NGZmNmY4MDg0YmIyZmI1Ng", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • LED-backlit display with IPS technology
  • \n
  • Camera - 480p FaceTime camera
  • \n
  • Dual microphones
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz dual-core Intel Core i5 Processor" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Wireless web: Up to 10 hours
  • \n
  • iTunes movie playback: Up to 12 hours
  • \n
  • Standby time: Up to 30 days
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 to 35 Degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 to 45 Degree C " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.31" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c99"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/8 GB/256 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/8 GB/256 GB), Platinum", + "price" : "2189", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Ultrabook-Laptop-(7th-Gen-Core-i7-8-GB-256-GB),-Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-DAJ-00083-Laptops-491420097-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDU4M3xpbWFnZS9qcGVnfGltYWdlcy9oNDYvaGU5Lzg5OTcyNjk1MzY3OTguanBnfDBmNTUzOTdiNDAzMmY5ZWVkMjJmYmY0NGNmOGRmMmRhNmUzNWIxOThlYTY4NDU2NTBkZDY3N2NmZTc5YTQwZjM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "DAJ-00083" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1280" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9a"), + "name" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 15-cx0141tx", + "description" : "HP 39.62 cm (15.6 inch) Pavilion Gaming Laptop (8th Gen Core i5/2.3 GHz/8 GB/1 TB + 128 GB), 15-cx0141tx", + "price" : "1293", + "sku" : "HP-39.62-cm-(15.6-inch)-Pavilion-Gaming-Laptop-(8th-Gen-Core-i5-2.3-GHz-8-GB-1-TB-+-128-GB),-15-cx0141tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4QM21PA-Laptops-491419996-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oYjYvaGVlLzkwMDI4Mzg0NTgzOTguanBnfDk3N2ZjOTA0NGEwN2Q3YTA2NjQ2OWJkZmY2NGEyZjA0MGU3NzFlY2EzMDEwMDFmY2MwNGE3NGYxNWY2MjcwNTI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "8 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "7200" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB GDDR5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-cx0141tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz 8th Gen Quad-Core i5-8300H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8300H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Shadow black, ultra violet logo" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2170" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Energy Star certified" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.54" + }, + { + "attributeName" : "Width", + "attributeValue" : "39.62" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.65" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9b"), + "name" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Space Grey", + "description" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Space Grey", + "price" : "3260", + "sku" : "Apple-39.17-cm-(15.4-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(Core-i7-2.2-GHz-16-GB-256-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR932HN-A-Laptops-491420045-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjA1fGltYWdlL2pwZWd8aW1hZ2VzL2hmZC9oNDAvOTA0MjcxMzczOTI5NC5qcGd8YWRjNjY5ZGU4MDhjYzQzNzAxNjEyZTAwNzgyMTM4OWM0MGNlMzliYmI4MDhiYWE2ZDQ2NGY3NmJkMWIyYjFlNA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.17 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9c"), + "name" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Space Grey", + "description" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Space Grey", + "price" : "3840", + "sku" : "Apple-39.17-cm-(15.4-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(Core-i7-2.6-GHz-16-GB-512-GB),-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR942HN-A-Laptops-491420046-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDU2fGltYWdlL2pwZWd8aW1hZ2VzL2g3ZS9oNTkvOTA0MjcwMDc2MzE2Ni5qcGd8YTQyODhmYWE1YjViMTdmYzI3N2JkZGM2M2I4MTRiYTVhYTJkNTc2ODc4NDY2NmRkMjQzNzM4YzhmMTg0ZTQ5Mw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.17 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9d"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (7th Gen Core i5/3.5 GHz/8 GB/256 GB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (7th Gen Core i5/3.5 GHz/8 GB/256 GB)", + "price" : "2087", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Book-2-Convertible-Laptop-(7th-Gen-Core-i5-3.5-GHz-8-GB-256-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HMW-00033-Laptops-491420100-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaDNiLzg5OTcyNzc3OTQzMzQuanBnfDQ2YTY1MDkxY2Q4YjY0MTNiZDBiMDFmZDJmNGMyMGJiNDA0MGJmYTZiYWIwYmViOWUxMmZhMDVlMjQwYTkyMDc", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HMW-00033" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.5" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7300U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1534" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9e"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/128 GB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i5/8 GB/128 GB), Platinum", + "price" : "1305", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Ultrabook-Laptop-(7th-Gen-Core-i5-8-GB-128-GB),-Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KSR-00020-Laptops-491420095-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDE0NnxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGM5Lzg5OTcyNjcyNDMwMzguanBnfGExYmRhMDc2YWI1ZWY4M2VhYmRjMDc3NjYxZmEzOGM2MWYyN2Q2OTE2ZmRmMGNjNzQ5ZWEyOWYxMGE5NGRjYmE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "KSR-00020" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637c9f"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/8 GB/256 GB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/8 GB/256 GB)", + "price" : "2812", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Book-2-Convertible-Laptop-(8th-Gen-Core-i7-4.2-GHz-8-GB-256-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HN4-00033-Laptops-491420101-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDQ2Lzg5OTcyNzYxNTU5MzQuanBnfGMwMDc2YjQ5YWI0ZWFiZjFjYmY3YzVkNGFhNjkxMTc2YTY3YzVlYTg4NTFhMWJiMTcxOWY2MGZjMGNlYjQ3ZmM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HN4-00033" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1642" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca0"), + "name" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/256 GB)", + "description" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/256 GB)", + "price" : "3348", + "sku" : "Microsoft-38.1-cm-(15-inch)-Surface-Book-2-Convertible-Laptop-(8th-Gen-Core-i7-4.2-GHz-16-GB-256-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HNR-00029-Laptops-491420103-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODg1MHxpbWFnZS9qcGVnfGltYWdlcy9oMTMvaGFkLzg5OTcyODMzNjQ4OTQuanBnfDRhODZiYmNlNDU4NGI3ZjBjZGZlMjA5NjcxNjM2ODBlMjIwYmUzYTk3OWExNDgyNDc4ODBkNWI0NjkyMDhiNTQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HNR-00029" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1905" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca1"), + "name" : "Asus 39.62 cm (15.6 inch) ROG Strix Scar II Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 256 GB), GL504GV-ES019T", + "description" : "Asus 39.62 cm (15.6 inch) ROG Strix Scar II Gaming Laptop (8th Gen Core i7/2.2 GHz/16 GB/1 TB + 256 GB), GL504GV-ES019T", + "price" : "2870", + "sku" : "Asus-39.62-cm-(15.6-inch)-ROG-Strix-Scar-II-Gaming-Laptop-(8th-Gen-Core-i7-2.2-GHz-16-GB-1-TB-+-256-GB),-GL504GV-ES019T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-GL504GV-ES019T-Laptops-491550900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDA5MHxpbWFnZS9qcGVnfGltYWdlcy9oY2IvaDgwLzkxMTc0NTkzMTY3NjYuanBnfGYwMWUxMDQyZmZmNWM3YmQxMDE5MDdjOGMwZmM4N2QxYjdkZmY3OTVlMzBjNzQ5NjA3MjM1NDljNmJkYTFhNGE", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ROG Strix Scar II" + }, + { + "attributeName" : "Model", + "attributeValue" : "GL504GV-ES019T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Intel Core i7-8750H" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "RTX 2060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gun Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca2"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "price" : "3348", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Book-2-Convertible-Laptop-(8th-Gen-Core-i7-4.2-GHz-16-GB-512-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-HNL-00022-Laptops-491420102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUzOHxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDQ3Lzg5OTcyNzkxMDUwNTQuanBnfDk4YjBkZTk4OWZmZDAyNjRjNDU1Y2VjMTVjMTQxMTA5YTI1NTI3MmQwODdiNmRlZGJiOWVmZmQ3MGE2MTg2NDQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro Creators Update 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "HNL-00022" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ambient light" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1642" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca3"), + "name" : "Apple 38.1 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Silver", + "description" : "Apple 38.1 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.2 GHz/16 GB/256 GB), Silver", + "price" : "3260", + "sku" : "Apple-38.1-cm-(15.4-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(Core-i7-2.2-GHz-16-GB-256-GB),-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR962HN-A-Laptops-491420047-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTY0fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oZDUvOTA0MjcxMjEwMDg5NC5qcGd8NTg4NjM0YzUwYjZkNGZhMGM5M2IzMzhjNWNiM2NlMTEyYzU0ODAwMzAwNTY4OGIwMzNkMmViMzU3Yzg2N2I4OA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca4"), + "name" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/1 TB), Platinum", + "description" : "Microsoft 34.29 cm (13.5 inch) Surface Ultrabook Laptop (7th Gen Core i7/16 GB/1 TB), Platinum", + "price" : "3551", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-Surface-Ultrabook-Laptop-(7th-Gen-Core-i7-16-GB-1-TB),-Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-EUP-00023-Laptops-491420099-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTU1MnxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDVmLzg5OTcyODEwNzExMzQuanBnfGFlZTMwYzk5YTY0MmIzODE1ZGJkMmYwZDIyYTdiODFiMWM0NGFlN2FlODgxNWE2NjY1MjQ4NDZmOWNiOTMxMDU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Ultrabook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface" + }, + { + "attributeName" : "Model", + "attributeValue" : "EUP-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Gen Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours video playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic speakers with Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Enterprise-grade protection with Windows Hello face sign-in camera
  • \n
  • TPM security chip" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "640" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1280" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.8" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca5"), + "name" : "Lenovo 25.65 cm (10.1 inch) MIIX 320 Convertible Laptop (Atom/1.92 GHz/2 GB/32 GB), 80XF00G1IN", + "description" : "Lenovo 25.65 cm (10.1 inch) MIIX 320 Convertible Laptop (Atom/1.92 GHz/2 GB/32 GB), 80XF00G1IN", + "price" : "303", + "sku" : "Lenovo-25.65-cm-(10.1-inch)-MIIX-320-Convertible-Laptop-(Atom-1.92-GHz-2-GB-32-GB),-80XF00G1IN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-80XF00G1IN-Laptops-491379504-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE5OXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGRmLzg5OTc0MTkzNTIwOTQuanBnfGYyN2I3NzYzNGQ0ZjQ2Mzc2MjhiZjkyM2EyNThjOTE4M2JjNzU3ODBhNTQ4ZTJkNWUwNzIxZDc5Mjc2Yzk0ZDA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "MIIX 320" + }, + { + "attributeName" : "Model", + "attributeValue" : "80XF00G1IN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.65 cm (10.1 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 800 - HD" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "32 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.92 GHz Intel X5-Z8350" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "33" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Atom" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.92" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "Z8350" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Advanced Audio" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1 year ADP on Redemption
  • \n
  • Up to 10 Hours Battery Life
  • " + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.9" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca6"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Gold", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Air Laptop with Retina Display (Core i5/1.6 GHz/8 GB/256 GB), Gold", + "price" : "1956", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Air-Laptop-with-Retina-Display-(Core-i5-1.6-GHz-8-GB-256-GB),-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MREF2HN-A-Laptop-491503301-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODEyMHxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDIxLzkwNzA4MTI4MjM1ODIuanBnfDE4MmM2ZmM4NzlmNDBjZjUzODI3NGI0MzYyY2M4ODIxODA0ZGI2MmY0ZmI2NzhmNzJmZjA2YWMzMTBlNzkwMjA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Series", + "attributeValue" : "Air" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz dual-core Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up to 12 hours wireless web
  • \n
  • Up to 13 hours iTunes movie playback
  • \n
  • Up to 30 days of standby time
  • " + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% to 90% non-condensing" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:10" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "617" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1250" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca7"), + "name" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "description" : "Microsoft 38.1 cm (15 inch) Surface Book 2 Convertible Laptop (8th Gen Core i7/4.2 GHz/16 GB/512 GB)", + "price" : "3899", + "sku" : "Microsoft-38.1-cm-(15-inch)-Surface-Book-2-Convertible-Laptop-(8th-Gen-Core-i7-4.2-GHz-16-GB-512-GB)", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-Surface-Book2-FUX-00021-Convertible-Laptop-15-491488127-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDQwMnxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGQ0LzkwODUxMDAwMzIwMzAuanBnfGY0MWNhOWMwZmRlMWE5MDU1ZTg5NzhhYTQxYmJhYWZhNTNiZmZlNDE5MTNmM2Y0Nzk0NDk4ZTg5MjQzY2M0Y2I", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "95W Surface Power Supply w/USB-A (5W) charging port" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Book 2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "38.1 cm (15 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7-8650U quad-core" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Front-facing stereo speakers with Dolby Audio" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 5.0MP front-facing camera with 1080p HD video
  • \n
  • 8.0MP rear-facing autofocus camera with 1080p HD video
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Office 30-day trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1060" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1905" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca8"), + "name" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (8th Gen Core i5/2.3 GHz/8 GB/512 GB), Silver", + "description" : "Apple 33.78 cm (13.3 inch) MacBook Pro Laptop with Touch Bar (8th Gen Core i5/2.3 GHz/8 GB/512 GB), Silver", + "price" : "2753", + "sku" : "Apple-33.78-cm-(13.3-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(8th-Gen-Core-i5-2.3-GHz-8-GB-512-GB),-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR9V2HN-A-Laptops-491420044-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTkzMHxpbWFnZS9qcGVnfGltYWdlcy9oZjkvaGQ5LzkwNDI3MTkxNzg3ODIuanBnfDU1NjE2ZWM0ZDJjYzBlYTFiYzEwZmZlNTU2NTFiYTAxOTg0MDlmYmYzZDNiMDhiNmUwMWE4NjEwYjNmNTMwNDk", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "61 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "33.78 cm (13.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2560 x 1600" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "61" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "655" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1370" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.49" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.41" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.24" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ca9"), + "name" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Silver", + "description" : "Apple 39.17 cm (15.4 inch) MacBook Pro Laptop with Touch Bar (Core i7/2.6 GHz/16 GB/512 GB), Silver", + "price" : "3840", + "sku" : "Apple-39.17-cm-(15.4-inch)-MacBook-Pro-Laptop-with-Touch-Bar-(Core-i7-2.6-GHz-16-GB-512-GB),-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MR972HN-A-Laptops-491420048-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Mjg3fGltYWdlL2pwZWd8aW1hZ2VzL2hiYy9oMmYvOTA0MjcxNTc3MDkxMC5qcGd8OTE3Y2I2MGRmNDJlMjU5OWEwNWE3MTlhOGE0MGQ4ZGRmZjkwNDVlNGNjNDM2YTc5MDlhOWE1Y2Q3M2JlN2RlZA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Mac OS" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 500 nits brightness" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "87 W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.17 cm (15.4 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1800" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Hexa-Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.6" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo speakers" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10° to 35° C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25° to 45° C" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "630" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1830" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.55" + }, + { + "attributeName" : "Width", + "attributeValue" : "34.93" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.07" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637caa"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/4 GB/1 TB), 15-bs590TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (6th Gen Core i3/2 GHz/4 GB/1 TB), 15-bs590TU", + "price" : "518", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(6th-Gen-Core-i3-2-GHz-4-GB-1-TB),-15-bs590TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-15-bs590TU-Laptop-39.62-cm-15.6-491350976-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDk3NnxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaGFiLzg5MjkwNzM3NTgyMzguanBnfDI4MzFiYWIxOTI4ZWJmY2Y5MDBmMmMwMzVkOWM0MmM4OGIwYzQ2OGNhZGNjYzVkMWQzOWVkNDhhYzJmMThlYzI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs590TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz 6th Gen Intel Core i3-6006U" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upgradeable to 16 GB by discard" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.99" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.37" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cab"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB + 16 GB), 15g-dr1000tx", + "description" : "HP 39.62 cm (15.6 inch) Laptop (8th Gen Core i5/1.6 GHz/4 GB/1 TB + 16 GB), 15g-dr1000tx", + "price" : "871", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(8th-Gen-Core-i5-1.6-GHz-4-GB-1-TB-+-16-GB),-15g-dr1000tx", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-5NZ82PA-Laptops-491488434-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTEyfGltYWdlL2pwZWd8aW1hZ2VzL2g1MS9oMDQvOTA3NDMxMjAxOTk5OC5qcGd8YjhiZjNmMGMzMTdiNmUwYWMyMTFkMmVlNTZhYjViZmIwMTI4M2ZhOTMxMWE1MDJlYTIxMTI2ZjQyMWY5YTdjOQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15g-dr1000tx" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 16 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "13 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dual Speaker" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe 30-day free trial Software" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "MX130" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2040" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.59" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.61" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cac"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 320 Laptop (6th Gen Core i3/2.0 GHz/8 GB/1 TB), 80XH01QGIH", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 320 Laptop (6th Gen Core i3/2.0 GHz/8 GB/1 TB), 80XH01QGIH", + "price" : "654", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-320-Laptop-(6th-Gen-Core-i3-2.0-GHz-8-GB-1-TB),-80XH01QGIH", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-80XH01QGIH-Laptops-491488288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTIxNXxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaGZlLzkwNjQ2MzU5MjQ1MTAuanBnfGY3ZmI3NjQ0NzEyYzllNWFhYWJhMDQyY2QyMGU3NGQ1ZDUyMTJlOWVjODk3NDA1OWI3YjUxMmFjMGEzYjFkOGU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "80XH01QGIH" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.00GHz Intel Core i3-6006U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i3-6006U" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "920MX" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Onyx Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cad"), + "name" : "Lenovo 39.62 cm (15.6 inch) Ideapad 110 Laptop (Core i5/4 GB/1 TB), 80UD014RIH", + "description" : "Lenovo 39.62 cm (15.6 inch) Ideapad 110 Laptop (Core i5/4 GB/1 TB), 80UD014RIH", + "price" : "677", + "sku" : "Lenovo-39.62-cm-(15.6-inch)-Ideapad-110-Laptop-(Core-i5-4-GB-1-TB),-80UD014RIH", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-Ideapad-110-80UD014RIH-Laptop-15.6-inch-39.62-cm-491297505-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTM0NnxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaGY5Lzg5NTQ5ODMzNTAzMDIuanBnfGE1ZjRkNGJhN2RmNTZmNDYzNjI3NzAxYWI1YzVlYzBiMDIwMmJmY2M2MWY1M2ZkZGM5OWZhMjg4MGFiMDI1Y2M", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "110 80UD014RIH" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Upto 2.80 GHz Intel Core i5-6200U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 4 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.8" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i5-6200U" + }, + { + "attributeName" : "Web Camera", + "attributeValue" : "0.3" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R16M-M1-30" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver Painting" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2200" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cae"), + "name" : "Asus 43.94 cm (17.3 inch) ROG Gaming Laptop (8th Gen Core i9/2.9 GHz/64 GB/2 TB), G703GI-E5148T", + "description" : "Asus 43.94 cm (17.3 inch) ROG Gaming Laptop (8th Gen Core i9/2.9 GHz/64 GB/2 TB), G703GI-E5148T", + "price" : "8696", + "sku" : "Asus-43.94-cm-(17.3-inch)-ROG-Gaming-Laptop-(8th-Gen-Core-i9-2.9-GHz-64-GB-2-TB),-G703GI-E5148T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-G703GI-E5148T-Laptop-491503261-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjcyfGltYWdlL2pwZWd8aW1hZ2VzL2hkMS9oZDUvOTEyNDU5ODg0MTM3NC5qcGd8ZTc1MGYwYjkxMGZiNjE5NmUyZDU4NDY0YzNlNjJlMjQ2MDFhNTIzMTYxMjczNDEyMzgxYzc0ZmQ5ZWM1M2I2Zg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ROG" + }, + { + "attributeName" : "Model", + "attributeValue" : "G703GI-E5148T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "12 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "43.94 cm (17.3 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "2 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "64 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.9 GHz 8th Gen Intel Core i9-8950Hk" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "8 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.9" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "i9-8950HK" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX1080" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aluminum" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637caf"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYJ2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYJ2HN/A", + "price" : "2173", + "sku" : "Apple-30.48-cm-(12-inch)-MacBook-Laptop-(Core-i5-1.3-GHz-8-GB-512-GB),-Space-Grey-MNYJ2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYJ2HN-A-Laptops-491297722-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDI4fGltYWdlL2pwZWd8aW1hZ2VzL2hjOS9oY2IvOTEzOTUwOTA2NzgwNi5qcGd8NWNkODNhZGRkNDA1YTMzYjg2MjRkNzMwMGI4ZWVjMjA4ZjI1ZWE1Y2NlMWI1OWIyZGM2MDUzOGJhN2ViN2Q5MQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYJ2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Intel Dual-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb0"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYG2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core i5/1.3 GHz/8 GB/512 GB), Space Grey MNYG2HN/A", + "price" : "2173", + "sku" : "Apple-30.48-cm-(12-inch)-MacBook-Laptop-(Core-i5-1.3-GHz-8-GB-512-GB),-Space-Grey-MNYG2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYG2HN-A-Laptops-491297720-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDg1fGltYWdlL2pwZWd8aW1hZ2VzL2gxYy9oMWQvOTEzOTUxNzkxNTE2Ni5qcGd8NDlhOTg4OWYxZTAxZGM1YWNmMTkwMjdjM2Q5ODMyMGM1MTg4Y2E0NzE3MTVhMjQ1MzNjMTU5Y2EzMTBlYWQwNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYG2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Intel Dual-Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.3" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb1"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYH2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYH2HN/A", + "price" : "1738", + "sku" : "Apple-30.48-cm-(12-inch)-MacBook-Laptop-(Core-m3-1.2-GHz-8-GB-256-GB),-Space-Grey-MNYH2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYH2HN-A-Laptops-491297721-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDgwfGltYWdlL2pwZWd8aW1hZ2VzL2g0Yi9oODkvOTEzOTUwODc0MDEyNi5qcGd8NzEyZjY0OTZmNmNjYTcxMzIzNWE3YmQ1ZjVkYzNjYTEwM2M0NDZlYTIyMDBjMWFhZjY0YmU4YTliOGExMDgyYQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYH2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz Intel Dual-Core m3" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core m3" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb2"), + "name" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYF2HN/A", + "description" : "Apple 30.48 cm (12 inch) MacBook Laptop (Core m3/1.2 GHz/8 GB/256 GB), Space Grey MNYF2HN/A", + "price" : "1738", + "sku" : "Apple-30.48-cm-(12-inch)-MacBook-Laptop-(Core-m3-1.2-GHz-8-GB-256-GB),-Space-Grey-MNYF2HN-A", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MNYF2HN-A-Laptops-491297719-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODU4fGltYWdlL2pwZWd8aW1hZ2VzL2g0MC9oNjcvOTEzOTUxODI0Mjg0Ni5qcGd8ODc4MzM0OTI2YzUxZTI0MjVhMzAzYTE3NWZiMjIxN2NmYjU0YmZmZDIwMTRjYjRlZjIzZmRjNjc3NzIwMTRjMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2304 x 1440" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "30.48 cm (12 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "MacOS" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Native DisplayPort 1.2 Video Output" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "macOS Mojave" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Force Touch Trackpad" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "MacBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "MNYF2HN/A" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.2 GHz Intel Dual-Core m3" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Up To 10 hours Wireless Web
  • \n
  • Up To 12 hours iTunes Movie Playback
  • \n
  • Up to 30 days of Standby Time
  • " + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core m3" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "10 degree to 35 degree C" + }, + { + "attributeName" : "Storage Temperature", + "attributeValue" : "-25 degree to 45 degree C" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "GMT_MILLSECONDS_-2209036800000" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "30W USB-C Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "920" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "28.05" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.65" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb3"), + "name" : "Lenovo 35.56 cm (14 inch) Ideapad 330S Convertible Laptop (8th Gen Core i5/3.4 GHz/4 GB + 16 GB Optane/1 TB), 81F400PFIN", + "description" : "Lenovo 35.56 cm (14 inch) Ideapad 330S Convertible Laptop (8th Gen Core i5/3.4 GHz/4 GB + 16 GB Optane/1 TB), 81F400PFIN", + "price" : "729", + "sku" : "Lenovo-35.56-cm-(14-inch)-Ideapad-330S-Convertible-Laptop-(8th-Gen-Core---i5-3.4-GHz-4-GB-+-16-GB-Optane-1-TB),-81F400PFIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-81F400PFIN-Laptops-491419955-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIwMHxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaDBkLzkwOTI4NjkzMjQ4MzAuanBnfDQ3ZDkxNzlkMGE0MGI2NTAwOWRlYWM1YmNiMTI3NTUyMTkzODcxYzU1MGQ0MWQwZmNiNzY3MGQ0Y2UwZDc2YTQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB 3.1 Type-C" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Ideapad" + }, + { + "attributeName" : "Model", + "attributeValue" : "330S 81F400PFIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB + 16 GB Intel Optane" + }, + { + "attributeName" : "Processor", + "attributeValue" : "3.4 GHz 8th Gen Intel Core i5-8250U" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "6 hours" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "30" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "3.4" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8250U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Dolby Audio Premium" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 14.0 inch Full-HD IPS Display
  • \n
  • 1 year ADP on Redemption
  • \n
  • Up to 6 Hours Battery Life
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Lenovo App Explorer" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1670" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.3" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb4"), + "name" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 11-ad106tu", + "description" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (8th Gen Core i3/2.2 GHz/4 GB/1 TB), 11-ad106tu", + "price" : "635", + "sku" : "HP-29.46-cm-(11.6-inch)-Pavilion-x360-Convertible-Laptop-(8th-Gen-Core-i3-2.2-GHz-4-GB-1-TB),-11-ad106tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-4QM23PA-Laptops-491419995-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDk0OHxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaGYzLzkwMDI4MzIxMDE0MDYuanBnfGI0ODM5YTYxN2IzZDExMTEzYmM0NjdlM2I2NTcyZTJjNmJmOWY3ZGY2Mjc3MDAxMGNmNmM4OTFkYmJkZDQ4MGQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Convertible" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pavilion" + }, + { + "attributeName" : "Model", + "attributeValue" : "11-ad106tu" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz 8th Gen Dual-Core i3-8130U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee LiveSafe" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1390" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.49" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.14" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb5"), + "name" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.6 GHz/4 GB/1 TB), 15-bs611TU", + "description" : "HP 39.62 cm (15.6 inch) Laptop (Celeron/1.6 GHz/4 GB/1 TB), 15-bs611TU", + "price" : "625", + "sku" : "HP-39.62-cm-(15.6-inch)-Laptop-(Celeron-1.6-GHz-4-GB-1-TB),-15-bs611TU", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-3DY18PA-Laptops-491392239-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU2OTN8aW1hZ2UvanBlZ3xpbWFnZXMvaDczL2g2ZS85MDIxNzg3OTk2MTkwLmpwZ3w3ZWI5NGNiZDQ2OTdhN2E2ZDBhZTA2ZWRhZjVmYjE1NjlhYWI3NGVkN2MxYzM0ZTFlZmQxN2Y4NTcwYTkxOTFm", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "15-bs611TU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "2 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Celeron N3060" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Celeron" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "N3060" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • HP TrueVision HD Webcam – 1280 x 720 by 30 frames
  • Touchpad with Windows 10 Multi-touch gesture support
  • Full-size Textured Island Style Keyboard
  • " + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "400" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Width", + "attributeValue" : "37.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.37" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb6"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS 15 Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "price" : "2451", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-XPS-15-Laptop-(8th-Gen-Core-i7-4.1-GHz-16-GB-512-GB),-9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560013PIN9-1-Laptops-491433180-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODcyNHxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaGZlLzkwMTQyNzcxMTE4MzguanBnfDBkZDhmOGM4NWE1MTBiODUwNWNlZGY4ODRmN2EzZjM1NjIwMjczNmY4YmIzYzAwMjM0Yjk4ODI2MGJjMWRiMWQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "2" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Six-Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "6 Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Dell PremierColor" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050 Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2000" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb7"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/128 GB), LQL-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/128 GB), LQL-00023", + "price" : "1332", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-New-Surface-2-Laptop-(8th-Gen-Core-i5-8-GB-128-GB),-LQL-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQL-00023-Laptops-491550735-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2g3OC9oYzIvOTEzOTQ5NDk3NzU2Ni5qcGd8YTJlN2IzM2M1YWI5MzM5NmU2MGMwMzg5ZDdmMzI0NjEyZGQzYmM4NjdhOWQzMTA5Zjg5NDA1MTFkMzU1YzdkZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQL-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1252" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb8"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/256 GB), KJT-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i5/8 GB/256 GB), KJT-00015", + "price" : "1609", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-6-Laptop-(Core-i5-8-GB-256-GB),-KJT-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJT-00015-Laptops-491550731-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDI3fGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oNjQvOTEzMDMzNjEyNDk1OC5qcGd8MGU1ZjYwYTY0MjRlMzI2MDk0ODQ5MWFlMTk2OTU2M2JkMDdiZmFhZjM4ODhlZDEyMjkwOTk5MThiMTVjMTllNQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJT-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i5-8350U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8350U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "770" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cb9"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/8 GB/256 GB), KJU-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/8 GB/256 GB), KJU-00015", + "price" : "2029", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-6-Laptop-(Core-i7-8-GB-256-GB),-KJU-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJU-00015-Laptops-491550732-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDQ2fGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oOTgvOTEzMDMzODE1NjU3NC5qcGd8YmU1ZmI0NzAzNjIxYjE4NDE3YTA3NTE5OThiMzk2ZmE4MTM3ZTcxMWU2ODBkMmY5YjQ3NWQwNGU2MjAyNGYyOA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJU-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i7-8650U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cba"), + "name" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (4 GB/64 GB), MHN-00015", + "description" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (4 GB/64 GB), MHN-00015", + "price" : "560", + "sku" : "Microsoft-25.4-cm-(10-inch)-Surface-Go-Laptop-(4-GB-64-GB),-MHN-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-MHN-00015-Laptops-491570679-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDM4fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oNTcvOTEzNzIzMTMzMTM1OC5qcGd8YzM3ZDRlZmVjMGU0OTcyMzdmYzhiYTAzMWJhZGUzYjdiZDUyMGQwY2UyOWRkNDk4ZmI3MGMyYTEyOTRiZTZhMg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect Port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Go" + }, + { + "attributeName" : "Model", + "attributeValue" : "MHN-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.4 cm (10 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "64 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Pentium Gold 4415Y" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 Hours of Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "4415Y" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnesium casing" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 Home 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "522" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "17.5" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbb"), + "name" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (8 GB/128 GB), MCZ-00015", + "description" : "Microsoft 25.4 cm (10 inch) Surface Go Laptop (8 GB/128 GB), MCZ-00015", + "price" : "740", + "sku" : "Microsoft-25.4-cm-(10-inch)-Surface-Go-Laptop-(8-GB-128-GB),-MCZ-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-MCZ-00015-Laptops-491570680-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjcxfGltYWdlL2pwZWd8aW1hZ2VzL2hmYy9oYzQvOTEzNzIzMTc5MDExMC5qcGd8OGFmMjE0NDViNjdhNzc0YjBlYTczNmZmNzI0MjJiMmJmZTExNzAyODFiNzA2ZmIxYTkyMzU0M2JmODNjYzJlZg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Surface Connect Port" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home in S mode" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Go" + }, + { + "attributeName" : "Model", + "attributeValue" : "MCZ-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "25.4 cm (10 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "128 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Pentium Gold 4415Y" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 9 Hours of Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Sub-brand", + "attributeValue" : "Pentium" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "4415Y" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnesium casing" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 Home 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "615" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "522" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "24.5" + }, + { + "attributeName" : "Depth", + "attributeValue" : "17.5" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbc"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD A4/4 GB/1 TB), A315-21", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 3 Laptop (AMD A4/4 GB/1 TB), A315-21", + "price" : "427", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-3-Laptop-(AMD-A4-4-GB-1-TB),-A315-21", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-GNVSI-038-Laptops-491570770-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjM5MnxpbWFnZS9qcGVnfGltYWdlcy9oNTgvaDEwLzkxMzg4OTM1ODY0NjIuanBnfGQ3ZTZmOWY3Y2M1YzY3Yjg1N2YwMzRiOTcxMTZiMzg0ZThlYmVjMjE0NWI2NzA5ZjNhMjFmODNiODAxNzkxZWQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1366 x 768 -HD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Expansion Slots", + "attributeValue" : "1 x SO-DIMM Slot" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home 64-bit" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 3" + }, + { + "attributeName" : "Model", + "attributeValue" : "A315-21" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "AMD A-Series Dual-Core A4-9120" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4810" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2-Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 5.5 hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Dual-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "A4-9120" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "A4" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Super-slim design mercury free display
  • \n
  • Two built-in stereo speakers
  • \n
  • Built-in digital microphone
  • \n
  • 640 x 480 resolution Webcam
  • \n
  • Intel Dual Band Wireless-AC 802.11ac/a/b/g/n WLAN
  • \n
  • WLAN Operates at 2.4 GHz & 5 GHz
  • \n
  • BIOS User" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3-Pin 45 W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Microsoft Precision Touchpad Certification" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.16" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.9" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbd"), + "name" : "Dell 39.62 cm (15.6 inch) Alienware 15 Gaming Laptop (7th Gen Core i7/2.8 GHZ/16 GB/1 TB + 512 GB), A569952SIN9", + "description" : "Dell 39.62 cm (15.6 inch) Alienware 15 Gaming Laptop (7th Gen Core i7/2.8 GHZ/16 GB/1 TB + 512 GB), A569952SIN9", + "price" : "3044", + "sku" : "Dell-39.62-cm-(15.6-inch)-Alienware-15-Gaming-Laptop-(7th-Gen-Core-i7-2.8-GHZ-16-GB-1-TB-+-512-GB),-A569952SIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-A569952SIN9-Laptops-491297631-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTQ3M3xpbWFnZS9qcGVnfGltYWdlcy9oMzMvaDc4Lzg5MjE1NTAxNTk5MDIuanBnfDA5MDYwNjA1OTc3MmIxMzgzZjE2N2E3OTU1NTNiMTgyYjUzMmY1MzA5MzQ3ODY1YWRlNDI5YWI0MzExYzI0M2I", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Gaming Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Alienware" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB + 512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Core i7-7700HQ Quad-Core" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7700HQ" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Epic Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3490" + }, + { + "attributeName" : "Width", + "attributeValue" : "38.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "30.5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbe"), + "name" : "Acer 39.62 cm (15.6 inch) Aspire 5 Laptop (Intel Core i3/4 GB/1 TB), A515-51", + "description" : "Acer 39.62 cm (15.6 inch) Aspire 5 Laptop (Intel Core i3/4 GB/1 TB), A515-51", + "price" : "653", + "sku" : "Acer-39.62-cm-(15.6-inch)-Aspire-5-Laptop-(Intel-Core-i3-4-GB-1-TB),-A515-51", + "imageUrl" : "https://www.reliancedigital.in/medias/Acer-NX-H5HSI-003-Laptops-491570769-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIwN3xpbWFnZS9qcGVnfGltYWdlcy9oMWYvaGJhLzkxNDAyMTg4ODgyMjIuanBnfDBmMmI0NTJkMzVlYTRkNWFhNTEwYmUzZGNjODA0ZjgxN2RjYzNiM2VlMTUwNmE4NjMxYmQwMjAzNzM5MTRhOGI", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Expansion Slots", + "attributeValue" : "2 x SO-DIMM Slots" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3-Pin 65 W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aspire 5" + }, + { + "attributeName" : "Model", + "attributeValue" : "A515-51" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Acer" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel 8th Gen Core i3-8145U" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3220" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4 Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 8 hours (based on web browsing test results)" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High-Brightness Acer ComfyView LED-backlit TFT LCD
  • \n
  • Display: Ultra-Slim Design" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Certifications", + "attributeValue" : "Microsoft Precision Touchpad Certification" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "36.34" + }, + { + "attributeName" : "Depth", + "attributeValue" : "24.75" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Acer", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cbf"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/8 GB/256 GB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/8 GB/256 GB), 9570", + "price" : "2119", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-XPS-Laptop-(8th-Gen-Core-i7-4.1-GHz-8-GB-256-GB),-9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560051WIN9-Laptops-491570741-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2hiNS9oZTMvOTEzOTQ5NzU5OTAwNi5qcGd8ZTg5YzhiNGQzNTJkYjVhMmYzZWEzZDIwOTIwNDJhMzdjY2Y5ZTZjYWRlNzc4NWE3MWQ5NGEwOTc1YTRiNDQ5Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare IPS InfinityEdge Display
  • \n
  • Dual Array Digital Microphone
  • \n
  • Stereo Speakers Professionally Tuned with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • 56WHr Lithium Battery Energy Content
  • \n
  • HD (720p) webcam dual array digital microphones
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Intel Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 21 1/2 hours when using Word or Excel" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "130 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Hexa-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "130W Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc0"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563102WIN9", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563102WIN9", + "price" : "609", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-3584-Laptop-(7th-Gen-Core-i3-2.30-GHz-4-GB-1-TB),-C563102WIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-C563102WIN9-Laptops-491570739-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTM2fGltYWdlL2pwZWd8aW1hZ2VzL2hmMS9oOTkvOTEzOTQ5OTU2NTA4Ni5qcGd8YTc1Y2Y4Y2M3ZDYwNGEwZmU1N2IxMTVhNDFjMGIzMDkyYjZkMzdiNzZlMzIzYTc0ZWM3NmZmNTgwMjEzYjliMw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3584" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "HD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.30 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "45 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare LED-Backlit Display
  • \n
  • Single Digital Microphone
  • \n
  • 2 Tuned Speakers with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • HD (720p) Webcam with Single Digital Microphone
  • \n
  • 42WHr Battery Lithium Battery Energy Content
  • " + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "minus 40 degree C/F to up to 65 degree C/149 degree F" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2019" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "45W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2030" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc1"), + "name" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563101WIN9", + "description" : "Dell 39.62 cm (15.6 inch) New Inspiron 3584 Laptop (7th Gen Core i3/2.30 GHz/4 GB/1 TB), C563101WIN9", + "price" : "661", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-Inspiron-3584-Laptop-(7th-Gen-Core-i3-2.30-GHz-4-GB-1-TB),-C563101WIN9", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-C563101WIN9-Laptops-491570740-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTQ5fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oM2IvOTEzOTQ5OTg5Mjc2Ni5qcGd8NmE5Yjc2NjFjODA5ZjljODMyNzVkYjE2ZGQ2ZTZhOTBjNmUxNjkwNTM0YTQ2MmFkMzIyOTM3MDFhNmE4Njc2MQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3584" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.30 GHz 7th Gen Intel Core i3-7020U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3-Cell" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "65 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7020U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare LED-Backlit Display
  • \n
  • Single Digital Microphone
  • \n
  • 2 Tuned Speakers with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • HD (720p) Webcam with Single Digital Microphone
  • \n
  • 42WHr Battery Lithium Battery Energy Content
  • " + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "minus 40 degree C/F to up to 65 degree C/149 degree F" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2019" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "520" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "65W AC Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "2030" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "25.8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc2"), + "name" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "description" : "Dell 39.62 cm (15.6 inch) New XPS Laptop (8th Gen Core i7/4.1 GHz/16 GB/512 GB), 9570", + "price" : "2576", + "sku" : "Dell-39.62-cm-(15.6-inch)-New-XPS-Laptop-(8th-Gen-Core-i7-4.1-GHz-16-GB-512-GB),-9570", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-B560052WIN9-Laptops-491570602-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTMwMHxpbWFnZS9qcGVnfGltYWdlcy9oYWEvaDk4LzkxMzk1MDMxNjk1NjYuanBnfGU0ZjBjMzdkYjViYjg2NWQ5OGQxNjlhYTlkNTY5ZWQ4NGMwYTkzMWQ4MjY1YWUwNTcwOTBhNjFiOTI2N2NhZDM", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "9 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Backlit Keyboard", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Plus Single Language" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Anti-Glare IPS InfinityEdge Display
  • \n
  • Dual Array Digital Microphone
  • \n
  • Stereo Speakers Professionally Tuned with Waves MaxxAudio Pro
  • \n
  • WiFi and Bluetooth Wireless Connectivity
  • \n
  • 97WHr Lithium Battery Energy Content
  • \n
  • HD (720p) webcam dual array digital microphones
  • " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "New XPS" + }, + { + "attributeName" : "Model", + "attributeValue" : "9570" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "4.1 GHz 8th Gen Intel Core i7-8750H" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "6-Cell" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 21 1/2 hours when using Word or Excel" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "130 Watts" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Hexa-core" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8750H" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office Home and Student 2016 DFO" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "GTX 1050Ti" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "130W Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1800" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "35.7" + }, + { + "attributeName" : "Depth", + "attributeValue" : "23.5" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc3"), + "name" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2.0 GHz/4 GB/1 TB), 3567", + "description" : "Dell 39.62 cm (15.6 inch) Inspiron 15 Laptop (6th Gen Core i3/2.0 GHz/4 GB/1 TB), 3567", + "price" : "630", + "sku" : "Dell-39.62-cm-(15.6-inch)-Inspiron-15-Laptop-(6th-Gen-Core-i3-2.0-GHz-4-GB-1-TB),-3567", + "imageUrl" : "https://www.reliancedigital.in/medias/Dell-Inspiron-15-3567-Laptop-39.62-cms-15.6-6i3-4-GB-1-TB-491419868-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI4M3xpbWFnZS9qcGVnfGltYWdlcy9oMWIvaGQyLzg5ODQ1NjIxMzkxNjYuanBnfDYxNzRjZjg0ZjdmODlkNDZhMGJiNWI5YTEzMDdhNmI2NGM4NzViZWI3ZGM1MGNhMzIxYWZjMGRhYTliODQwNjU", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "3 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "39.62 cm (15.6 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home Single Language" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Inspiron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3567" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Dell" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "AMD" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Optical Drive", + "attributeValue" : "Included" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "Radeon" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz 6th Gen Intel Core i3-6006U Processor" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 16 GB" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "4-Cell" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "6006U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "2 tuned speakers with Waves MaxxAudio Pro" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Integrated Widescreen HD 720P Webcam with Single digital microphone
  • " + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "McAfee Multi Device 15 month subscription" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "R5 M430" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "2.515" + }, + { + "attributeName" : "Width", + "attributeValue" : "38" + }, + { + "attributeName" : "Depth", + "attributeValue" : "26.03" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Dell", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc4"), + "name" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6106T", + "description" : "Asus 35.56 cm (14 inch) ZenBook Laptop (8th Gen Core i5/1.6 GHz/8 GB/512 GB), UX433FA-A6106T", + "price" : "1218", + "sku" : "Asus-35.56-cm-(14-inch)-ZenBook-Laptop-(8th-Gen-Core-i5-1.6-GHz-8-GB-512-GB),-UX433FA-A6106T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-UX433FA-A6106T-Laptops-491431427-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDk4fGltYWdlL2pwZWd8aW1hZ2VzL2gzYy9oZGEvOTE0MjMwNjIwOTgyMi5qcGd8OWQzYmIwZjQ1MWVjZDI2NGFiNGJiOTQ3MWRmNzEyNzJjZjljMWExZjZhYzU5ZmY1OTAwZDRiY2E0NTI3OTQxNg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "6 MB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6M Cache" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "ZenBook" + }, + { + "attributeName" : "Model", + "attributeValue" : "UX433FA-A6106T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Intel Core i5-8265U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "3 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "45" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "1.6" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8265U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Icicle Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sleeve" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1190" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "31.9" + }, + { + "attributeName" : "Depth", + "attributeValue" : "19.9" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc5"), + "name" : "Asus 35.56 cm (14 inch) Laptop (8th Gen Core i3/2.1 GHz/8 GB/1 TB), X412FJ-EK206T", + "description" : "Asus 35.56 cm (14 inch) Laptop (8th Gen Core i3/2.1 GHz/8 GB/1 TB), X412FJ-EK206T", + "price" : "710", + "sku" : "Asus-35.56-cm-(14-inch)-Laptop-(8th-Gen-Core-i3-2.1-GHz-8-GB-1-TB),-X412FJ-EK206T", + "imageUrl" : "https://www.reliancedigital.in/medias/Asus-X412FJ-EK206T-Laptops-491431474-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzA4fGltYWdlL2pwZWd8aW1hZ2VzL2gyZC9oZDYvOTE0MjMwNjUzNzUwMi5qcGd8ZjAwYzc0OTc3MjJhMzVlODE1MzQ3NmE3ZDIxNTQ4ZDJiNjJkMGE4OWEwZDMyZDBmN2E5NTVkZTNkNjMxNTc2NA", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Anti-glare Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Cache Memory", + "attributeValue" : "4 MB" + }, + { + "attributeName" : "Hard Drive Speed", + "attributeValue" : "5400" + }, + { + "attributeName" : "Video Memory", + "attributeValue" : "GDDR5 2GB" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 (64bit)" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "65 Watts AC Power Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Model", + "attributeValue" : "X412FJ-EK206T" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Asus" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Intel Core i3-8145U" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Cell", + "attributeValue" : "2 Cell" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "65" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "100 - 240 V" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Speed", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8145U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • TPM (Firmware TPM) security
  • \n
  • BIOS Booting User Password Protection
  • \n
  • Chiclet Keyboard type" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "16:9" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "
  • 1 month Trial for New Microsoft Office 365 Customers
  • " + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Transparent Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1500" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.90" + }, + { + "attributeName" : "Width", + "attributeValue" : "32.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "21.2" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Asus", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc6"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/8 GB/256 GB), LQQ-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/8 GB/256 GB), LQQ-00023", + "price" : "2160", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-New-Surface-2-Laptop-(8th-Gen-Core-i7-8-GB-256-GB),-LQQ-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQQ-00023-Laptops-491550737-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2gwNy9oYTgvOTEzOTUxMTAzMzg4Ni5qcGd8NmU4ZTBjYjY1OWY4ZmZmNTU5MDNiYTIzNGUxZDI5NjQ3OGQ1ZDM1MmJmYWI4Y2MwNDBmMmQ4MzQ5ZTQxZjI4NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQQ-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1283" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc7"), + "name" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/16 GB/512 GB), KJV-00015", + "description" : "Microsoft 31.24 cm (12.3 inch) Surface Pro 6 Laptop (Core i7/16 GB/512 GB), KJV-00015", + "price" : "2566", + "sku" : "Microsoft-31.24-cm-(12.3-inch)-Surface-Pro-6-Laptop-(Core-i7-16-GB-512-GB),-KJV-00015", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-KJV-00015-Laptops-491550733-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MDY5fGltYWdlL2pwZWd8aW1hZ2VzL2g0OS9oNjIvOTEzMDMzNDE1ODg3OC5qcGd8ZTQwNTlkYzAzNzcwODdkMmJhYmY4NzJjYTU1MzQxZGIwMWMyODZhNGY3ZjVmZWQyOTdjYTY3ZTVhYjIyNzM3Nw", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Pro" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "Surface Pro 6" + }, + { + "attributeName" : "Model", + "attributeValue" : "KJV-00015" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "31.24 cm (12.3 inch)" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2736 x 1824" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Intel Quad Core i7-8650U 8th Gen" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up To 13.5 Hours" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Processor Core", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "8650U" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Stereo" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Touch: 10 Point Multi-Touch
  • \n
  • TPM 2.0 Chip for Enterprise Security
  • \n
  • Enterprise-Grade Protection With Windows Hello Face Sign-In
  • \n
  • Sensors: Ambient light sensor" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "1 Month Trial For New Microsoft Office 365" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "UHD Graphics 620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "784" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Width", + "attributeValue" : "29.2" + }, + { + "attributeName" : "Depth", + "attributeValue" : "20.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc8"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/16 GB/512 GB), LQS-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i7/16 GB/512 GB), LQS-00023", + "price" : "2957", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-New-Surface-2-Laptop-(8th-Gen-Core-i7-16-GB-512-GB),-LQS-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQS-00023-Laptops-491550738-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2gxMi9oYmYvOTEzOTUwNDE1MjYwNi5qcGd8NGQ2YjE1ZmUxOWIxMjRmMGYzNzhlYTE2OTEwMzhhOTI3NTA2ZGYwMWM1ZjIzODA0MjUwNWUwZjRmOTczOGE3Yg", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQS-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "512 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "16 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i7" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i7" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1283" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cc9"), + "name" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/256 GB), LQN-00023", + "description" : "Microsoft 34.29 cm (13.5 inch) New Surface 2 Laptop (8th Gen Core i5/8 GB/256 GB), LQN-00023", + "price" : "1740", + "sku" : "Microsoft-34.29-cm-(13.5-inch)-New-Surface-2-Laptop-(8th-Gen-Core-i5-8-GB-256-GB),-LQN-00023", + "imageUrl" : "https://www.reliancedigital.in/medias/Microsoft-LQN-00023-Laptops-491550736-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODc4fGltYWdlL2pwZWd8aW1hZ2VzL2gzOC9oMTYvOTEzOTUxMDcwNjIwNi5qcGd8MDQ1NzVlYjBmMjI3ZGFkNzQ2YTcwZTcyZTdjYjBmNDA3NmVhYmMyYTUwMmRhNmU3N2M5MWVkN2Y2YTJmMjA4NQ", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Mini DisplayPort" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone (input)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of USB Ports", + "attributeValue" : "1" + }, + { + "attributeName" : "Laptop Type", + "attributeValue" : "Standard Laptop" + }, + { + "attributeName" : "Series", + "attributeValue" : "New Surface 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "LQN-00023" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Microsoft" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "34.29 cm (13.5 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Hard Drive", + "attributeValue" : "256 GB" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "UHD Graphics" + }, + { + "attributeName" : "Processor", + "attributeValue" : "8th Gen Intel Core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SSD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 14.5 hours of Local Video Playback" + }, + { + "attributeName" : "Processor Brand", + "attributeValue" : "Intel" + }, + { + "attributeName" : "Speaker Type", + "attributeValue" : "Omnisonic" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 720p HD camera" + }, + { + "attributeName" : "Aspect Ratio", + "attributeValue" : "3:2" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "Microsoft Office 365 30-Day Trial" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "620" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Power Supply" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Weight", + "attributeValue" : "1252" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "30.81" + }, + { + "attributeName" : "Depth", + "attributeValue" : "22.33" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Microsoft", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cca"), + "name" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i5/4 GB/1 TB), 80X800YMIN", + "description" : "Lenovo 35.56 cm (14 inch) Yoga 520 Convertible Laptop (7th Gen Core i5/4 GB/1 TB), 80X800YMIN", + "price" : "1086", + "sku" : "Lenovo-35.56-cm-(14-inch)-Yoga-520-Convertible-Laptop-(7th-Gen-Core-i5-4-GB-1-TB),-80X800YMIN", + "imageUrl" : "https://www.reliancedigital.in/medias/Lenovo-Yoga-520-80X800YMIN-Convertible-Laptop-35.56-cm-14-491351180-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDgzOHxpbWFnZS9qcGVnfGltYWdlcy9oM2MvaGFjLzg4NzQ3MzMyNzMxMTguanBnfDlkY2Y4NzAwNGI4YTBjMWUzNjY4NWYyMGY5YjJkNDAzNWJhZGM4NmQ4ZGM5NTExMzY5OGM2NmU0YjI4OTZmY2I", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 10 hours" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "1.99" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "35.56 cm (14 inch)" + }, + { + "attributeName" : "Graphics Card - Brand", + "attributeValue" : "Nvidia" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Graphics Card - Sub-Brand", + "attributeValue" : "GeForce" + }, + { + "attributeName" : "Processor", + "attributeValue" : "7th Generation core i5" + }, + { + "attributeName" : "Hard Drive Type", + "attributeValue" : "SATA" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Windows 10 Home" + }, + { + "attributeName" : "Graphics Card Model", + "attributeValue" : "940MX" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Lenovo" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Lenovo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccb"), + "name" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 11-ad031tu", + "description" : "HP 29.46 cm (11.6 inch) Pavilion x360 Convertible Laptop (7th Gen Core i3/2.7 GHz/4 GB/1 TB), 11-ad031tu", + "price" : "642", + "sku" : "HP-29.46-cm-(11.6-inch)-Pavilion-x360-Convertible-Laptop-(7th-Gen-Core-i3-2.7-GHz-4-GB-1-TB),-11-ad031tu", + "imageUrl" : "https://www.reliancedigital.in/medias/HP-Pavilion-x360-11-ad031tu-Convertible-Laptop-29.46-cm-11.6-491351179-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI1MXxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaGM0Lzg4ODgyMDQ4ODYwNDYuanBnfGY2ZmQwYzZmNzE4YjNjODE1NDIzOTM4ZDg0MjljMzI0YjdkZWIxN2I3YjEzOWE3NTJjNDRlZTBkMDE5YzY2NDY", + "category" : { + "_id" : NumberLong(145456), + "name" : "Laptops" + }, + "productAttributeList" : [ + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "1.93" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "29.46 cm (11.6 inch)" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Processor Model Number", + "attributeValue" : "7130U" + }, + { + "attributeName" : "Core Type", + "attributeValue" : "Core i3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "HP" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "HP", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccc"), + "name" : "Nikon D3500 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "description" : "Nikon D3500 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "price" : "637", + "sku" : "Nikon-D3500-DSLR-Camera-with-18-55-mm-and-70-300-mm-Dual-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3500-DSLR-Camera-491431009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjUzfGltYWdlL2pwZWd8aW1hZ2VzL2gxNS9oMDEvOTA3MDM1NjI2NzAzOC5qcGd8NGFmZDk5NDM1MjA0NDFkY2Q0M2FmYzY0ZTlmYmUxZTU1MjJiZWE4ZDNkNTI5Mzg4M2NkOWNjZjdhY2MwZDFkZA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-1.7 to +0.5 m(*1)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "11" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering: 3D color matrix metering II Center-weighted metering: Weight of 75% given to 8-mm circle in center of frame Spot metering: Meters 3.5-mm circle" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in increments of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "15-45" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Picture Angle", + "attributeValue" : "170" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "10" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "14" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "f/22 to 32" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "1.1" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dust-reduction system
  • \n
  • Eye-level pentamirror single-lens reflex viewfinder
  • \n
  • Electronically-controlled vertical-travel focal-plane shutter
  • \n
  • Focus can be locked by pressing shutter
  • \n
  • Autofocus is available
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EN-EL14a rechargeable Li-ion battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "365" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccd"), + "name" : "Canon EOS 5D Mark IV DSLR Camera Body", + "description" : "Canon EOS 5D Mark IV DSLR Camera Body", + "price" : "3203", + "sku" : "Canon-EOS-5D-Mark-IV-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-5D-20MARK-4-491005186-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDE0NHxpbWFnZS9qcGVnfGltYWdlcy9oODYvaDdhLzkwOTg5NTcyNTg3ODIuanBnfDYyNTBhMTgwMzFiNGUzN2NjMDlkMDM4MTcxNmQ3YzliZWI1MWI3N2RmNWZlYTgxMjEwY2JkZTJhMDE4NTA5Njg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "30.4" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (*Excluding EF-S and EF-M lenses) (The effective angle of view of a lens is approximately equivalent to that of the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "5D Mark IV" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 36.0 x 24.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.59" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.64" + }, + { + "attributeName" : "Width", + "attributeValue" : "15.07" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cce"), + "name" : "Canon EOS 200D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 200D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "808", + "sku" : "Canon-EOS-200D-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-200D-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit-491295955-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODMxNXxpbWFnZS9qcGVnfGltYWdlcy9oMDEvaDllLzg5Mjk0ODk0NTMwODYuanBnfDE4OWQxZWZmODViYzM0YjU4NGJkNTZhNGU3NTcwMzViMDdiYjg2MzA5NWM4NWJlOGI3OTNhOWRmYjA1ODdkMmU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) (*Excluding EF-M lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "200D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.87x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "Approx. 18mm lens angle of view" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD): 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,1280 x 720 (HD): 59.94p / 50.00p / 29.97p / 25.00p,640 x 480 (VGA): 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +-5* stops in 1/3- or 1/2-stop increments
    \n* +-3 stops with [Shooting screen: Guided] set
    \nAEB:+-2 stops in 1/3- or 1/2-stop increments (can be combined with manual exposure compensation)" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.98" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3x - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.24" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ccf"), + "name" : "Nikon D5600 DSLR Camera with 18-55 mm Lens Kit, Black", + "description" : "Nikon D5600 DSLR Camera with 18-55 mm Lens Kit, Black", + "price" : "746", + "sku" : "Nikon-D5600-DSLR-Camera-with-18-55-mm-Lens-Kit,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5600-DSLR-Camera-with-18-55-mm-Lens-Kit-Black-491297412-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM2MXxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDM2Lzg5Mjk2NDYyMTUxOTguanBnfGJiMGU0ZjM5YWY3MWE2NDFlZWI4MjFmMGFkYmU5NTIwYzNiODI0NjdjMDczNDkzOWFjNGUyMWMwMDJjODE2ZTI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12- or 14 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5600" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait " + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single-lens reflex digital camera
  • Effective angle of view - Nikon DX format; focal length equivalent to approx. 1.5x that of lenses with FX format angle of view
  • Picture Control system - Standard" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • AN-DC3 strap
  • MH-24 battery charger (plug adapter supplied in countries or regions where required; shape depends on country of sale)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd0"), + "name" : "Nikon D7500 DSLR Camera Body", + "description" : "Nikon D7500 DSLR Camera Body", + "price" : "1290", + "sku" : "Nikon-D7500-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7500-DSLR-Cameras-491295949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzgzMXxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaGNiLzg4ODMxMTA5NjkzNzQuanBnfDVhOGNjNWIwN2Q0NmJhNGU3NjU2OTRkMTFkNDM2ODk5MTQ0ZWU5ZWM2OTBlZDBlODVmYTRjZDBjZGUwMzFkMWI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.9" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m(*1)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.7 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-105" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "DK-28 Rubber Eyecup" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd1"), + "name" : "Nikon D850 DSLR Camera Body Only", + "description" : "Nikon D850 DSLR Camera Body Only", + "price" : "3406", + "sku" : "Nikon-D850-DSLR-Camera-Body-Only", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D850-DSLR-Cameras-491362270-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjMyMHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDU3LzkwNjExMTQ4MDYzMDIuanBnfGQ4YTk1Yzc1YmU3N2Q4ODZhOWRkNjA2OTBlYTMwODE3OTRmYmY2NDJlNGE0ZWQ1ODhjYmJiMzYzOGQzYTU2ZTE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "45.7" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D850" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-3 to +1 m(*1)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "153" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5 EV in increments of 1/3" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-120" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "BF-1B body cap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 3.0 Micro-B connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1005" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd2"), + "name" : "Nikon D7500 DSLR Camera with 18-105 mm Lens Kit", + "description" : "Nikon D7500 DSLR Camera with 18-105 mm Lens Kit", + "price" : "1540", + "sku" : "Nikon-D7500-DSLR-Camera-with-18-105-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7500-DSLR-Cameras-491295948-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTk5NHxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaGViLzkwNjExMTc1NTg4MTQuanBnfGM0M2VlZWUyZTA0NmI0MDc2ODg1ZmNiNGQxNTkxYmQ2ZGQ3ODAyZjc3Y2U0NmVmNTAyOWE3ZTVhM2Y4MTk0MmM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.9" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m(*1)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.7 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-51200" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-105" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "DK-28 Rubber Eyecup" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "720" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd3"), + "name" : "Canon EOS 6D Mark II DSLR Camera Body", + "description" : "Canon EOS 6D Mark II DSLR Camera Body", + "price" : "1776", + "sku" : "Canon-EOS-6D-Mark-II-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-6D-Mark-II-Body-DSLR-Cameras-491295951-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDc1MHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaGYyLzg4OTc3NDQ1MzU1ODIuanBnfGZmNDU5ZmJlMTZlY2Q1ZjU3OWFkZmNiZGNlMDg1NzJhMzU2YTQ2MjY3YTU3MjAzZjNjN2I2NjliOThhZjNiODI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (except EF-S and EF-M lenses) (35mm-equivalent lens focal length will be as indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D Mark II" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "Approx. -3.0 - +1.0m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.71x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 secs" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 sec" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "102400" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+ 3stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.48" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1800" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd4"), + "name" : "Canon EOS 80D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 80D DSLR Camera with 18-55 mm Lens Kit", + "price" : "1202", + "sku" : "Canon-EOS-80D-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-80D-DSLR-Camera-with-18-55-mm-Lens-Kit-491277862-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTEwOXxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaDBkLzg5Mjk2Mzk3OTI2NzAuanBnfGRiNDU4ZmRiZmE4MDE4MzVhZDk1ZDNlMTYyNWYzZGE2NTY4YzVlNGY1Yjc4YzQ2YzIyYTFmMjQ0NDJkYWI2MmQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)* Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "80D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.95x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "(MOV) Full HD (1920x1080): 29.97p / 25.00p / 23.98p,(MP4) Full HD (1920x1080): 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,HD (1280x720): 59.94p / 50.00p / 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual : +/-5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree Celsius" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3 - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.52" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.9" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "1hr. 50 min. at room temperature" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dust delete feature : Auto" + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd5"), + "name" : "Nikon D5300 DSLR Camera with 18-55 mm Lens Kit, Black", + "description" : "Nikon D5300 DSLR Camera with 18-55 mm Lens Kit, Black", + "price" : "606", + "sku" : "Nikon-D5300-DSLR-Camera-with-18-55-mm-Lens-Kit,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5300-DSLR-Camera-with-18-55-mm-Lens-Kit-Black-491099064-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTMwNXxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGFkLzg5Mjk0OTYwMDY2ODYuanBnfGVmZDJhMWYwZjIyYTMzNzI2NWQ2NTFiYjFjZDVmOWY2MWY2N2E5M2U3OGMwNjI5YzlkY2ZlY2MzMWU2NjNkYTg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5300" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 - +5 EV in increments of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.5" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • BS-1 accessory shoe cover
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • MH-24 battery charger
  • AN-DC3 strap
  • UC-E17 USB cable
  • EG-CP16 audio/video cable
  • DK-5 eyepiece cap
  • ViewNX 2 CD
  • Reference CD (contains the Reference Manual)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd6"), + "name" : "Canon EOS 1500D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 1500D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "628", + "sku" : "Canon-EOS-1500D-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-1500D-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit-491362609-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTM3NXxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDcyLzg5MzUxODQyMDM4MDYuanBnfGFjYTkxZjgwZTdmYTc3NDc2NzYwNzU1NDM5MmVkYzFlZTQ0MzY3NWE2YzkwZjc1ZjczYTE0MDAyZmY0YTk4MDU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    * Excluding EF-M lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "1500D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "
  • 1920 x 1080: 30p / 25p / 24p
  • 1280 x 720: 60p / 50p
  • 640 x 480: 30p / 25p

  • (* 30p: 29.97fps, 25p: 25.00fps, 24p: 23.98fps, 60p: 59.94fps, 50p: 50.00fps)" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +/-5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree C" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SDHC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd7"), + "name" : "Canon EOS 77D DSLR Camera with 18-135 mm Lens Kit", + "description" : "Canon EOS 77D DSLR Camera with 18-135 mm Lens Kit", + "price" : "1254", + "sku" : "Canon-EOS-77D-DSLR-Camera-with-18-135-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-77D-DSLR-Camera-with-18-135-mm-Lens-Kit-491295788-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjkwNHxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaGNjLzg5Mjk0OTE4MTIzODIuanBnfGEyYTIxNjg0OWExMTUzODc1NWYyZWJjODZmMjI4ZGM0OGM0M2Y2MTQzYjhlM2FmM2UxZTg1M2I4YjJiNDNlOTU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    \n* Excluding EF-M lenses
    \n(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "77D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3-stop or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.62" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.1" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd8"), + "name" : "Canon EOS 77D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 77D DSLR Camera with 18-55 mm Lens Kit", + "price" : "964", + "sku" : "Canon-EOS-77D-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-77D-DSLR-Camera-with-18-55-mm-Lens-Kit-491295787-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI3M3xpbWFnZS9qcGVnfGltYWdlcy9oODEvaGMwLzg5Mjk0ODY4MzE2NDYuanBnfDQxMTU4ZGMyMGU0Y2M1ODE3YmYzMzNhYzkyMzQ1NjI2ZDk2OGZlZWViOTdjNDMyODhkMWQ3YzMzYzY4ZjI1NTE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    \n* Excluding EF-M lenses
    \n(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "77D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.62" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.1" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cd9"), + "name" : "Sony ILCE-6000Y DSLR Camera with 16-50 mm and 55-210 mm Dual Lens Kit", + "description" : "Sony ILCE-6000Y DSLR Camera with 16-50 mm and 55-210 mm Dual Lens Kit", + "price" : "829", + "sku" : "Sony-ILCE-6000Y-DSLR-Camera-with-16-50-mm-and-55-210-mm-Dual-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCE-6000Y-DSLR-Camera-with-16-50-mm-and-55-210-mm-Dual-Lens-Kit-491186291-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjY1MXxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaGM0Lzg5Mjk2MjUzMDkyMTQuanBnfDQyYzEyYTI2Yzk5ZTQ5ZTU2NDBjZDllYTM0MDViOTk2MjliNjZlOWU4NzUzMDZiODFkNTExYzZjMGY3NTkxNDQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "6" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG (DCF Ver. 2.0" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6000Y" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "16 mm (focal length printed on the lens body)" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "11" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "With 3 frames in 1/3 EV" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/- 5.0 EV (1/3 EV" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "4.51" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "11 fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 degree Celsius" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - L: Approx. 4x, M: Approx. 5.7x, S: Approx. 8x,Movie - Approx. 4x" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Elements", + "attributeValue" : "9" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "40.5" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "16-50" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.215x" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "9" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "13" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "49" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "22 mm" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.225x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.28" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Telephoto Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 310 shots (viewfinder) / Approx. 360 shots (LCD screen) (CIPA standard)*9 (Still Images)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Focus Type - Fast Hybrid AF(phase-detection AF/contrast-detection AF)
  • Focus Point - 179 points (phase-detection AF)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lens SELP1650
  • Lens SEL55210
  • Lens hood
  • Lens cap
  • Lens rear cap
  • Power cord
  • Rechargeable Battery NP-FW50
  • AC Adaptor AC-UB10
  • Shoulder strap
  • Eyepiece cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cda"), + "name" : "Canon EOS 6D Mark II DSLR Camera with 24-105 mm Lens Kit", + "description" : "Canon EOS 6D Mark II DSLR Camera with 24-105 mm Lens Kit", + "price" : "2703", + "sku" : "Canon-EOS-6D-Mark-II-DSLR-Camera-with-24-105-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-6D-Mark-II-DSLR-Camera-with-24-105-mm-Lens-Kit-491295952-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODE5OXxpbWFnZS9qcGVnfGltYWdlcy9oMDAvaGYyLzg5Mjk0ODQ1Mzc4ODYuanBnfDA1OTk2ZTZkNWVmZDJlMTg0MTFhNmJiZWYyZTU1NjkxZDU4NzFiNDVhMDhhZjBjNjAzYzE3MjczMGE3M2MyMWU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (except EF-S and EF-M lenses)
    \n(35mm-equivalent lens focal length will be as indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D Mark II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.71x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 35.9 x 24.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering " + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.48" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "6.5 fps" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Elements", + "attributeValue" : "17" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-105" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.24" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1800" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdb"), + "name" : "Canon EOS 1500D DSLR Camera Body", + "description" : "Canon EOS 1500D DSLR Camera Body", + "price" : "450", + "sku" : "Canon-EOS-1500D-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS1500D-DSLR-491362607-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzYzMXxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGQwLzkwOTg5ODYyMjU2OTQuanBnfGU0ZjQ3YmQ0Zjk5NmJhNThhYzg4OGRhMTE5NzZmYWU0ODQ4Y2QzNmZjNWY1YTZhYjY1MGM0N2ZhMDM5ZjQ4ODU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 1500D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3.0 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "Approx. 17mm" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "1/4000s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "30s" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "White balance" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "
  • Manual: +/-5 stops in 1/3- or 1/2-stop increments
  • AEB: +/-2 stops in 1/3- or 1/2-stop increments
  • " + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Scene Intelligent Auto" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9-point AF with 1 centre cross-type AF point
  • Wi-Fi / NFC supported
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "427" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdc"), + "name" : "Canon EOS 1300D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 1300D DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "537", + "sku" : "Canon-EOS-1300D-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/652e982b-b9e3-4b75-8271-de44b7ed654d-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDAzOHxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaGFjLzg4MjI2OTE2OTI1NzQuanBnfDZlNzYwNGNiOTYyN2FjNDMyZmUzNjNjYjU2YTg3NWVlMGM1MmY0ZDkxYjY5NDU2YjEzZjk4MmFjMTdlZTZlOTg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "18" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) * Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "1300D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.8x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD): 30p / 25p / 24p,1280 x 720 (HD): 60p / 50p,640 x 480 (SD): 30p/25p" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% - 85%" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "1.5x - 10x" + }, + { + "attributeName" : "Elements", + "attributeValue" : "11" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "12" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "4" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.31x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.6" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Telephoto Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "860" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 500 shots at room temperature (with viewfinder shooting)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Shooting mode - Scene Intelligent Auto" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdd"), + "name" : "Nikon D750 DSLR Camera with Body", + "description" : "Nikon D750 DSLR Camera with Body", + "price" : "1761", + "sku" : "Nikon-D750-DSLR-Camera-with-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D750-DSLR-Cameras-491185879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY4MnxpbWFnZS9qcGVnfGltYWdlcy9oYjYvaDJmLzg5MDU2NDc0MjM1MTguanBnfDg4M2ZmNjhkMjVhNjc2ZTEyMGM3MDkxN2Y2YzJmNzhmOTBmNWRjZTMwNDU3MWZhOWJhMDY1MWFhZTEwNjRkOTM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "
  • NEF (RAW): 12 or 14 bit" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "AF Nikkor lenses
    \n
  • Type G" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D750" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "–3 to +1m{sup(-1)}" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.7x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto modes (auto; auto (flash off))" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "1/200 s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "3D color matrix metering II" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.8" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree C–40 C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.7x (50 mm f/1.4 lens at infinity)" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SDHC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.05" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Rubber Eyecup DK-21" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cde"), + "name" : "Nikon D7200 DSLR Camera with 18-140 mm Lens Kit", + "description" : "Nikon D7200 DSLR Camera with 18-140 mm Lens Kit", + "price" : "1116", + "sku" : "Nikon-D7200-DSLR-Camera-with-18-140-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7200-DSLR-Cameras-491213434-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjk4MHxpbWFnZS9qcGVnfGltYWdlcy9oODYvaGQyLzg5MDU2NDcwOTU4MzguanBnfGQyMzFkNDFlNjYwYWZmZjBhYTkyZjE3NmE0YjU4NjIzODFkNDlmNzA2OTIyZjY0MzJkMDRiODdhZjZiYmY5ZWY", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7200" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "\"-2 to +1 m{sup(-1)}" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.94 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "1/250 s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "3D color matrix metering II" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "portrait" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "12" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "17" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "18-140" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "490" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.55" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Charge MH-25a" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cdf"), + "name" : "Sony Alpha ILCE-6400L DSLR Camera with 16-50 mm Lens Kit", + "description" : "Sony Alpha ILCE-6400L DSLR Camera with 16-50 mm Lens Kit", + "price" : "1247", + "sku" : "Sony-Alpha-ILCE-6400L-DSLR-Camera-with-16-50-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-A6400L-DSLR-491431248-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTQyfGltYWdlL2pwZWd8aW1hZ2VzL2g0Ni9oM2YvOTEwODg0NjI4MDczNC5qcGd8YzE5NDY4MWM0NTEzYTk4OWEzYjRmOTI3Y2YxYzIyMmY2Mzk3YmEzYWFjNTU0NjllZTcwNzEyZDAwZTk4ODY0Mg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "1" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6400L" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4.0-+3.0 m-1" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "425" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 Seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/14000 Seconds" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 frames" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Continuous shooting: Hi+: 11fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degrees C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "8" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "9" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "16-50" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "40.5" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "116" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "22–36" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.215x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "1" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Still Image: Approx. 360 shots (Viewfinder)/Approx. 410 shots (LCD monitor) (CIPA standard)
  • \n
  • Movie" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DIGITAL ZOOM: Smart zoom (Still images): M: Approx. 1.4x" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AC Adaptor: AC-UUE12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "403" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce0"), + "name" : "Canon EOS 200D II DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 200D II DSLR Camera with 18-55 mm Lens Kit", + "price" : "769", + "sku" : "Canon-EOS-200D-II-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-200D-II-DSLR-Camera-491431412-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NzUyfGltYWdlL2pwZWd8aW1hZ2VzL2hjMS9oYTkvOTEzODM4Mzg4MDIyMi5qcGd8Mjg1YjZlODNkZTg1OTkyNmEyY2M5OGM5NDZjODU1NGRhNjM3MzQ1YTZlMzdiMGY5YmE4ZTAwZGNiNDkxYTc3YQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 200D II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "APS-C" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +/-5* stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.98" + }, + { + "attributeName" : "Zoom Method", + "attributeValue" : "Rotary (internal)" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Upto OVF: 5fps (One-Shot AF & AI Servo AF) | Live View: 5fps (One-Shot AF)" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3x - 10x (movie only)" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "3x" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "215" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.25x" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "22-32" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.24" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "Dual Pixel CMOS AF" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "654" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce1"), + "name" : "Canon EOS 200D II DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "description" : "Canon EOS 200D II DSLR Camera with 18-55 mm and 55-250 mm Dual Lens Kit", + "price" : "957", + "sku" : "Canon-EOS-200D-II-DSLR-Camera-with-18-55-mm-and-55-250-mm-Dual-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-200D-II-DSLR-Camera-491431413-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTYxNnxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDBjLzkxMzgzODEyNTg3ODIuanBnfDAwNzkzZDk2MWNmNGNjMjE1Y2Q3OTc3MGI5Y2YxNDJkY2EyODNjNmYwNGE2NTY0MGY1MjRkOWM3NDdjYjAzOTM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 200D II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "APS-C" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +/-5* stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.98" + }, + { + "attributeName" : "Zoom Method", + "attributeValue" : "Rotary (internal)" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Upto OVF: 5fps (One-Shot AF & AI Servo AF) | Live View: 5fps (One-Shot AF)" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3x - 10x (movie only)" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "3x" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "215" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.25x" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "22-32" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "55-250" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "375" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "f/32" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.29x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "2.79" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.26" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.24" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "Dual Pixel CMOS AF" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "654" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce2"), + "name" : "Nikon D5300 DSLR Camera with 18-140 mm Lens Kit, Black", + "description" : "Nikon D5300 DSLR Camera with 18-140 mm Lens Kit, Black", + "price" : "779", + "sku" : "Nikon-D5300-DSLR-Camera-with-18-140-mm-Lens-Kit,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5300-DSLR-Camera-with-18-140-mm-Lens-Kit-Black-491099065-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODY3NnxpbWFnZS9qcGVnfGltYWdlcy9oZmQvaDRiLzg5Mjk1ODYxODQyMjIuanBnfDQwN2Q2ZGJjNTgyZTIyM2RhYmRiZTA4Y2Y5OTkzNmRlODRjZGNmMjgwNmZkNWVhNDM1YTlhMzU3OWY5MGNmMmE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5300" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Pop-up" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "TTL exposure metering using 2016-pixel RGB sensor" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "7" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 shots in steps of 1/3 or 1/2 EV" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "NTSC 30p & 60p, PAL 25p & 50p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "5 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% - 85%" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18 - 140" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 24.2 MP Camera
  • Greater Resolution in any Light
  • Built-in GPS Function
  • D-Lighting
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Bs-1 Accessory Shoe Cover
  • Dk-25 Rubber Eyecup
  • Bf-1B Body Cap
  • En-El14A Rechargeable Li-Ion Battery (With Terminal Cover)
  • Mh-24 Battery Charger
  • An-Dc3 Strap
  • Uc-E17 UBS Cable
  • Eg-Cp16 Audio/Video Cable
  • Dk-5 Eyepiece Cap
  • Viewnx 2 Cod
  • Reference Cod (Contains The Reference Manual)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce3"), + "name" : "Canon EOS 3000D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 3000D DSLR Camera with 18-55 mm Lens Kit", + "price" : "428", + "sku" : "Canon-EOS-3000D-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/canon-EOS-3000D-491362606-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDA0MHxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaGMxLzg5MzQxOTY0Nzc5ODIuanBnfDkzN2ViNjQ5OWIwZDMyMGY4ZjZhMjM1OWYxYWY5MzFhMTgzNDE2YTg2MWUzMDU0MjY1OWNjNjBkNDQ2MjEzNzI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "18" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)
    \r\n(* Excluding EF-M lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "3000D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "
  • 1920 x 1080 - 30p / 25p / 24p
  • \r\n
  • 1280 x 720 - 60p / 50p
  • \r\n
  • 640 x 480 - 30p / 25p

  • \r\n(* 30p: 29.97fps, 25p: 25.00fps, 24p: 23.98fps, 60p: 59.94fps, 50p: 50.00fps)" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual - +/-5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.71" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce4"), + "name" : "Sony ILCA-68K DSLR Camera with 18-55 mm Lens Kit", + "description" : "Sony ILCA-68K DSLR Camera with 18-55 mm Lens Kit", + "price" : "682", + "sku" : "Sony-ILCA-68K-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCA-68K-DSLR-Camera-with-18-55-mm-Lens-Kit-491277868-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODE0NnxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaGZlLzg5Mjk2MTQ4ODg5OTAuanBnfDRiYzMxMzA3YWZlMmFkMzlkZTYzNTFhNjk4NDJjOGUwOGZlMTliYmU1ZjI1MDYyZmY5MWNjMWIyNTdjMGIxMmQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "6" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG (DCF Ver. 2.0" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "A-mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-68K" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.88x (35 mm camera equivalent: Approx. 0.57x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "10" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.28" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - L: Approx. 4x, M: Approx. 5.7x, S: Approx. 8x,Movie - Approx. 4x" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 580 shots (still images)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • APS-C type (23.5 x 15.6mm)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Lens cap
  • Lens rear cap
  • Power cord
  • Rechargeable Battery NP-FM500H
  • Battery Charger BC-VM10A
  • Shoulder strap
  • Body cap
  • Eyepiece cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce5"), + "name" : "Nikon D5600 DSLR Camera with 18-140 mm Lens Kit, Black", + "description" : "Nikon D5600 DSLR Camera with 18-140 mm Lens Kit, Black", + "price" : "888", + "sku" : "Nikon-D5600-DSLR-Camera-with-18-140-mm-Lens-Kit,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5600-DSLR-Camera-with-18-140-mm-Lens-Kit-Black-491297414-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDE1MXxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaGQxLzg5Mjk1MjY3NDMwNzAuanBnfDAxMTI3MWMyNDBkNzk2ZDdkNDZmM2ZlZDA0MmNmYzMwNjU1OGZmYTY5NzFkODlkNDgxOWZjYzcwOTIzMjFjMzU", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12- or 14 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5600" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree C to 40 Degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-140" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single-lens reflex digital camera
  • Effective angle of view - Nikon DX format; focal length equivalent to approx. 1.5x that of lenses with FX format angle of view
  • Picture Control system - Standard" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • AN-DC3 strap
  • MH-24 battery charger (plug adapter supplied in countries or regions where required; shape depends on country of sale)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce6"), + "name" : "Nikon D850 DSLR Camera with 24-120 mm Lens Kit", + "description" : "Nikon D850 DSLR Camera with 24-120 mm Lens Kit", + "price" : "3942", + "sku" : "Nikon-D850-DSLR-Camera-with-24-120-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D850-DSLR-Cameras-491362271-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTY0NXxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaGQ4LzkwNjExMTU4NTQ4NzguanBnfDdhYjVhNmMxMmVhMGFkMzMyYWU1YjU3NzU2ODQ1NGRiZWZjY2QyYzVmOWM4N2FlZjRhMDVlMjYyNWM4ZjNlNjc", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "45.7" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW)" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D850" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-3 to +1 m(*1)" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "153" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5 EV in increments of 1/3" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-120" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "BF-1B body cap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 3.0 Micro-B connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "1005" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce7"), + "name" : "Canon EOS 80D DSLR Camera with 18-135 mm Lens Kit", + "description" : "Canon EOS 80D DSLR Camera with 18-135 mm Lens Kit", + "price" : "1529", + "sku" : "Canon-EOS-80D-DSLR-Camera-with-18-135-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-80D-DSLR-Camera-with-18-135-mm-Lens-Kit-491277863-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzU2NnxpbWFnZS9qcGVnfGltYWdlcy9oZGQvaGEyLzg5Mjk2MTY1MjczOTAuanBnfDE0MTJjOWNiMTIwOTBlYzZiZWIwNTUxMWZkMGY0YWUzN2YwM2Q5OThkNWUyZjczMjg1ZjQ0MTFkNzVkZDVmMjI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses)* Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "80D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.95x" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "(MOV) Full HD (1920x1080) : 29.97p / 25.00p / 23.98p,(MP4) Full HD (1920x1080) : 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,HD (1280x720) : 59.94p / 50.00p / 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/- 3 stops in 1/3-stop or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.85" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree Celcius" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3 - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.52" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.9" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "1hr. 50 min. at room temperature (Movie Shooting)" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Highlight tone priority
  • Noise reduction : Applicable to long exposures and high ISO speed shots
  • Automatic image brightness correction
  • Grid display
  • Electronic level
  • Depth-of-field preview
  • Anti-flicker
  • Auto image alignment
  • FE lock
  • Creative filters
  • Silent LV shooting
  • Touch shutter
  • HDR Movie Shooting
  • Interface languages : 25
  • Touch screen technology : Capacitive sensing
  • Image rotation
  • Image protection
  • Resize
  • Custom Functions : 26
  • NFC connection : For communication with smartphones or connection to Connect Station
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce8"), + "name" : "Nikon D5600 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit, Black", + "description" : "Nikon D5600 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit, Black", + "price" : "837", + "sku" : "Nikon-D5600-DSLR-Camera-with-18-55-mm-and-70-300-mm-Dual-Lens-Kit,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D5600-20DZ-491297413-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM2MXxpbWFnZS9qcGVnfGltYWdlcy9oNjQvaDcyLzg5Mjk2NDIyODMwMzguanBnfGYzNzcyYmFiNmRkMzM0ZDJiOWYzNDIzZTY4MzkwYzhjNjg3NDhkYTMzMjIyMzBkNTQxNmY0MjU3Nzc2NjY1MTA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12- or 14 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D5600" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 Degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait " + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "10" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "14" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.7" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single-lens reflex digital camera
  • Effective angle of view - Nikon DX format; focal length equivalent to approx. 1.5x that of lenses with FX format angle of view
  • Picture Control system - Standard" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • DK-25 rubber eyecup
  • BF-1B body cap
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • AN-DC3 strap
  • MH-24 battery charger (plug adapter supplied in countries or regions where required; shape depends on country of sale)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ce9"), + "name" : "Canon EOS 1500D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 1500D DSLR Camera with 18-55 mm Lens Kit", + "price" : "508", + "sku" : "Canon-EOS-1500D-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-1500D-DSLR-491362608-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDE4MnxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaDE3Lzg5OTM0MDQyNTYyODYuanBnfGEyMzMzZWI0YzAxMjE2MDY1MWM5MjQ3Yzk5NWQwMjk3MzVjYWNhYzYwMmRhNzg0NTAzYTVlZWZlODQ1NzNkZTY", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.1" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EOS 1500D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "9" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "E-TTL II Autoflash" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "1/4000s" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "63-zone TTL Evaluative" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "30s" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "White balance" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "
  • Manual: +/-5 stops in 1/3- or 1/2-stop increments
  • AEB: +/-2 stops in 1/3- or 1/2-stop increments
  • " + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Scene Intelligent Auto" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "3x" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Lens-shift type" + }, + { + "attributeName" : "Groups", + "attributeValue" : "11" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18 - 55" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "22-38" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.34x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Card Reader", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9-point AF with 1 centre cross-type AF point
  • Wi-Fi / NFC supported
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "475" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cea"), + "name" : "Canon EOS 5D Mark IV DSLR Camera with 24-105 mm Lens Kit", + "description" : "Canon EOS 5D Mark IV DSLR Camera with 24-105 mm Lens Kit", + "price" : "4153", + "sku" : "Canon-EOS-5D-Mark-IV-DSLR-Camera-with-24-105-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-5D-20MARK-4-491005187-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDY3MXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaDlkLzg5Mjk1MTI1ODcyOTQuanBnfGJmNTgxZDFkZjIxOWU2ODBiZTAxNzNkNGYxNjQ0YjJkZWI5OTZkZDUzMzMzN2Y1MjQ4ZGEyZWY4NDY4MTY0YzA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "30.4" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (*Excluding EF-S and EF-M lenses) (The effective angle of view of a lens is approximately equivalent to that of the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "5D Mark IV" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 36.0 x 24.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.59" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-105" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.64" + }, + { + "attributeName" : "Width", + "attributeValue" : "15.07" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ceb"), + "name" : "Nikon D810 DSLR Camera (Body), Black", + "description" : "Nikon D810 DSLR Camera (Body), Black", + "price" : "2985", + "sku" : "Nikon-D810-DSLR-Camera-(Body),-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D810-DSLR-Camera-Body-Black-491173070-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjkzMXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDlmLzg5Mjk2MDExMjY0MzAuanBnfDFkMTAzZTMxMmE0ZWZiYWJkYjU4OGQ1YTM5ZWEwMmQ1NTcwY2RhY2EzYmJmYWM4YTcyOTk3OTI4MWZmMmNiZjk", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "36.3" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D810" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Pop-up" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "11" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "30 fps" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-5 - +5 EV (1/3 EV)" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Standard" + }, + { + "attributeName" : "Height", + "attributeValue" : "12.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Completely redesigned for peak image quality
  • The secret to superior imaging
  • All-new image sensor delivers the sharpest" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • HDMI Cable Clip
  • USB Cable Clip
  • Body Cap BF-1B
  • LCD Monitor Cover BM-12
  • ViewNX 2
  • Rechargeable Li-ion battery EN-EL15
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cec"), + "name" : "Canon EOS 6D DSLR Camera with Portrait Lens 24 - 105 mm Lens Kit, Black", + "description" : "Canon EOS 6D DSLR Camera with Portrait Lens 24 - 105 mm Lens Kit, Black", + "price" : "2348", + "sku" : "Canon-EOS-6D-DSLR-Camera-with-Portrait-Lens-24---105-mm-Lens-Kit,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491018447-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTU2M3xpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDdkLzg5Mjk2MDc5NDIxNzQuanBnfDg1ZWQ3Y2YzMzRjOTdmMDg5OGY4YmMwZDkxZGQ5ZTllOWMxN2FkMjdjMmY3ODdhNjc0OGEzNTAxNjIzOGE2YmI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.8 x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Pop-up" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "11" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "30 fps" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-3 - +3 EV (1/3 EV)" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Program AE (Scene Intelligent Auto" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24 - 105" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Portrait Lens" + }, + { + "attributeName" : "Height", + "attributeValue" : "11" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 20.2-megapixel full-frame sensor
  • ISO expandable to 102400
  • Built-in WiFi and GPS
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ced"), + "name" : "Nikon D3500 DSLR Camera Body", + "description" : "Nikon D3500 DSLR Camera Body", + "price" : "453", + "sku" : "Nikon-D3500-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3500-DSLR-Camera-491431007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE4N3xpbWFnZS9qcGVnfGltYWdlcy9oODAvaDU4LzkwNzIwOTYzMTMzNzQuanBnfDJlN2VlYzJjMjdiMDIyNTBlMTkyNmQ0NWExNTQzODhmYjE0ZGZjZDE1ZjU4MDE0MzA5NDU5YzkzMGNlNzc2YmI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-1.7 to +0.5 m(*1)" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "11" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in increments of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DX Image sensor format
  • Frame coverage: Approx. 95% horizontal and 95% vertical
  • Eyepoint: 18 mm (–1.0 m(*1); from center surface of viewfinder eyepiece lens)
  • Exposure lock: Luminosity locked at detected value with AE-L/AF-L button
  • Autofocus system: Nikon Multi-CAM 1000 autofocus sensor module with TTL phase detection" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AN-DC3 Strap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "365" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cee"), + "name" : "Nikon D3500 DSLR Camera with 18-55 mm Lens Kit", + "description" : "Nikon D3500 DSLR Camera with 18-55 mm Lens Kit", + "price" : "500", + "sku" : "Nikon-D3500-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3500-DSLR-Camera-491431008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MTI3fGltYWdlL2pwZWd8aW1hZ2VzL2gwYS9oYzEvOTA3MjA5Njk2ODczNC5qcGd8NmU4MmFlMzQ2ZTVmYWU3NGYxM2NkZWUxMWI3ZWIxYzk2MDQwMjhhNGNiYmZmODYyOWE1OWU1ZGE0MzlkODYzNA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-1.7 to +0.5 m(*1)" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "11" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "100-25600" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in increments of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Elements", + "attributeValue" : "12" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "55" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Groups", + "attributeValue" : "9" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "205" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DX Image sensor format
  • Frame coverage: Approx. 95% horizontal and 95% vertical
  • Eyepoint: 18 mm (–1.0 m(*1); from center surface of viewfinder eyepiece lens)
  • Exposure lock: Luminosity locked at detected value with AE-L/AF-L button
  • Autofocus system: Nikon Multi-CAM 1000 autofocus sensor module with TTL phase detection" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AN-DC3 Strap" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "365" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cef"), + "name" : "Canon EOS 750D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 750D DSLR Camera with 18-55 mm Lens Kit", + "price" : "812", + "sku" : "Canon-EOS-750D-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-750D-DSLR-Camera-with-18-55-mm-Lens-Kit-491211706-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDgxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaDA0Lzg5Mjk2MzkwNzE3NzQuanBnfGMxYTE5MTAxNGJhZmFhMzZjZTU4ZTcyYWM0MWQzNzQ0ZTAwYTU4NWI3YTQ2Yjg0ZmJkOWEyZGZjMTA1M2Q2MDE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) *Excluding EF-M lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "750D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD) : 29.97p / 25.00p / 23.98p,1280 x 720 (HD) : 59.94p / 50.00p / 29.97p / 25.00p,640 x 480 (SD) : 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual : +/- 5 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.78" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree - 40 degree Celsius" + }, + { + "attributeName" : "Elements", + "attributeValue" : "13" + }, + { + "attributeName" : "Groups", + "attributeValue" : "11" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.36x (at 55mm focal length)" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.07" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.19" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 440 shots at room temperature (With Viewfinder Shooting)" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Reduction\t\r\nApplicable to long exposures and high ISO speed shots
  • Automatic Image Brightness Correction
  • Highlight Tone Priority
  • Grid display
  • Depth-of-field Preview
  • Anti-flicker
  • Movie Servo AF
  • Miniature effect movie
  • Still Photo Shooting
  • Interface Languages : 25
  • Touch Screen Technology : Capacitive sensing
  • AF Point Display
  • Image Rotate
  • Image Protect
  • Resize
  • Cropping
  • Custom Functions : 13
  • My Menu Registration
  • NFC connection
  • Eye-Fi Card Compatible
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf0"), + "name" : "Nikon Z6 DSLR Camera with 24-70 mm Lens Kit", + "description" : "Nikon Z6 DSLR Camera with 24-70 mm Lens Kit", + "price" : "3029", + "sku" : "Nikon-Z6-DSLR-Camera-with-24-70-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-Z6-DSLR-491431199-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkzMnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDc1LzkwODA5NDEyMTU3NzQuanBnfGQxNjc1ZjBhNjAzZTljNThiMDZmOGM1YzllZDFiNzNlYzI2Y2JjOTFhNTBhNDlhMGFiMTRlMDRhYWI4MjBkMDQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.5" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Z mount NIKKOR lenses F mount NIKKOR lenses with mount adapter" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon Z mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Z6" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4 to +2 m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "0.8x" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Ultra HD" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "273" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 mm x 23.9 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "P" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering Center-weighted metering: Weight of 75% given to 12 mm circle in center of frame; weighting can instead be based on average of entire frame Spot metering: Meters 4 mm circle (about 1.5% of frame) centered on selected focus point Highlight-weighted metering" + }, + { + "attributeName" : "White Balance Preset", + "attributeValue" : "6" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "–5 to +5 EV in increments of 1/3 or 1/2 EV available in modes P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.75" + }, + { + "attributeName" : "Zoom Method", + "attributeValue" : "Rotary (internal)" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "PCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-70" + }, + { + "attributeName" : "Lens Picture Angle", + "attributeValue" : "170" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Body Cap, Rubber Eyecup (comes attached to camera), EN-EL15b Rechargeable Li-ion, Battery with terminal cover, MH-25a Battery Charger , AN-DC19 Strap, HDMI/USB Cable Clip, UC-E24 USB Cable, BS-1 Accessory Shoe Cover" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "675" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf1"), + "name" : "Canon EOS 800D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 800D DSLR Camera with 18-55 mm Lens Kit", + "price" : "957", + "sku" : "Canon-EOS-800D-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-800D-DSLR-Camera-with-18-55-mm-Lens-Kit-491295785-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzY1N3xpbWFnZS9qcGVnfGltYWdlcy9oZjQvaDAyLzg5Mjk0OTkyODM0ODYuanBnfDYyNmU4NDZhYjNjOGIzMjI2ZmQ3NjMxNWM3MTM5ZDUwNjk4M2M3YTdkMDk5Y2I5YWFkYzAwNTFmZGUzNTZlNDc", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) (*Excluding EF-M lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "800D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.82x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "Full HD (1920x1080): 59.94p / 50.00p / 29.97p / 25.00p / 23.98p,HD (1280x720): \t59.94p / 50.00p / 29.97p / 25.00p,VGA (640x480): 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Manual: +-5* stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.62" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Approx. 3 - 10x" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Group Photo" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "10x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.1" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1040" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Movie Shooting Time - Approx. 1 hour 55 min" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf2"), + "name" : "Nikon D3400 DSLR Camera with 18-55 mm Lens Kit", + "description" : "Nikon D3400 DSLR Camera with 18-55 mm Lens Kit", + "price" : "536", + "sku" : "Nikon-D3400-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3400-DSLR-Camera-with-18-55-mm-Lens-Kit-491295692-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjE0NXxpbWFnZS9qcGVnfGltYWdlcy9oMDkvaDJkLzg5Mjk2MDgyNjk4NTQuanBnfDIwYmMxYmViNjEyODA4ODNhYjczYmVhZGJhMzgwMDc0YzZmY2Y5NGU2ZjUyYjI1ODNiZWM1NGU4ZmRkMGJmOWQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3400" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.55" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree to 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Image sensor format : DX
  • Dust-reduction system : Image Dust Off reference data (Capture NX-D software required)
  • Eyepoint - 18 mm (-1.0 m; from center surface of viewfinder eyepiece lens)
  • Reflex mirror - Quick return
  • Focusing screen - Type B BriteView Clear Matte Mark VII screen
  • Lens aperture - Instant return" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • MH-24 battery charger (plug adapter supplied in countries or regions where required shape depends on country of sale)
  • DK-25 rubber eyecup
  • BF-1B body cap
  • AN-DC3 strap
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Type C HDMI connector" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf3"), + "name" : "Nikon D3400 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "description" : "Nikon D3400 DSLR Camera with 18-55 mm and 70-300 mm Dual Lens Kit", + "price" : "688", + "sku" : "Nikon-D3400-DSLR-Camera-with-18-55-mm-and-70-300-mm-Dual-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D3400-DSLR-Camera-with-18-55-mm-and-70-300-mm-Dual-Lens-Kit-491295693-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTM0OHxpbWFnZS9qcGVnfGltYWdlcy9oNmEvaDg4Lzg5NjMwNTYxMDc1NTAuanBnfDE2OWU3NWJmZjFjMWQ2MWM4OThiZjRjM2YzZDIzMWE5Y2VjZDkyMjkyMTM4NWRlZGQ4YjgzZjE4Mjc3ZTBiNWI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "NEF (RAW): 12 bit" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D3400" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 to +5 EV in steps of 1/3 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.55" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree to 40 Degree Celsius" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-55" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.85 x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "10" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "14" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "58" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "f/22, to 32" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "3.7" + }, + { + "attributeName" : "Kit Lens Type", + "attributeValue" : "Telephoto Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.4" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "1" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Image sensor format : DX
  • Dust-reduction system : Image Dust Off reference data (Capture NX-D software required)
  • Eyepoint - 18 mm (-1.0 m; from center surface of viewfinder eyepiece lens)
  • Reflex mirror - Quick return
  • Focusing screen - Type B BriteView Clear Matte Mark VII screen
  • Lens aperture - Instant return" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EN-EL14a rechargeable Li-ion battery (with terminal cover)
  • MH-24 battery charger (plug adapter supplied in countries or regions where required shape depends on country of sale)
  • DK-25 rubber eyecup
  • BF-1B body cap
  • AN-DC3 strap
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-USB connector" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Type C HDMI connector" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf4"), + "name" : "Canon EOS 1300D DSLR Camera with 18-55 mm Lens Kit", + "description" : "Canon EOS 1300D DSLR Camera with 18-55 mm Lens Kit", + "price" : "460", + "sku" : "Canon-EOS-1300D-DSLR-Camera-with-18-55-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-1300D-DSLR-Camera-with-18-55-mm-Lens-Kit-491277861-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjAwNnxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaGI1Lzg5Mjk2MTc4MzgxMTAuanBnfGY2MzY1MDRkZTkyN2FlZjIxZmRkZGM5MzliNWY5NGI0YzdiZWYxYTBiMDA3ODhjYzE0ZjQ4N2VhOTQ4NGRkMTQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "18" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) * Excluding EF-M lenses(35mm-equivalent angle of view is that of a lens with approx. 1.6x the focal length indicated.)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "1300D" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.8x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Guide Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Penta-mirror" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.3 x 14.9mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering (linked to all AF points)" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "1920 x 1080 (Full HD): 30p / 25p / 24p,1280 x 720 (HD): 60p / 50p,640 x 480 (SD): 30p/25p" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.76" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "0% - 85%" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 Degree - 40 Degree Celsius" + }, + { + "attributeName" : "Optical Zoom", + "attributeValue" : "Approx. 1.5x - 10x" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 1.5x - 10x (Playback)" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.9" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "860" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 500 shots at room temperature (with viewfinder shooting)" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Shooting mode - Scene Intelligent Auto" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf5"), + "name" : "Sony ILCA-99M2 DSLR Camera Body", + "description" : "Sony ILCA-99M2 DSLR Camera Body", + "price" : "3624", + "sku" : "Sony-ILCA-99M2-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCA-99M2-DSLR-Camera-Body-491295773-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODM4N3xpbWFnZS9qcGVnfGltYWdlcy9oNDAvaGMyLzg5Mjk1MDM4NzEwMDYuanBnfGQ5NzgzNmJhYjc0ZDBmMWU4NzZmOWJhZDcxOGYyZGU0ODZkMDNkZGU1OGE4NjJmYjdmZGYyZDc5YzYzOWM5NmI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "42.4" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Sony A-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-99M2" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "approx. 0.78 x (with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0-40 Degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still images - 35 mm full frame: L: approx. 4x, M: approx. 6.2x, S: approx. 8x, APS-C: L: approx. 4x, M: approx. 5.2x, S: approx. 8x,Movie - 35 mm full frame: approx. 4x, APS-C: approx. 4x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Shoulder strap
  • Body cap
  • Accessory shoe cap
  • Eyepiece cup
  • Micro USB cable
  • Battery Charger BC-VM10A
  • Rechargeable Battery NP-FM500H
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf6"), + "name" : "Sony ILCE-7SM2 DSLR Camera Body", + "description" : "Sony ILCE-7SM2 DSLR Camera Body", + "price" : "3116", + "sku" : "Sony-ILCE-7SM2-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCE-7SM2-DSLR-Camera-Body-491216793-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTY2OHxpbWFnZS9qcGVnfGltYWdlcy9oMDgvaDljLzg5Mjk0ODA2MDU3MjYuanBnfGNhMGUyMTJjZjNmODQ0MTVkMDAyNzJhZTA2OWFiYTJmMWIyNTZkODI2NjVjYjM1ZjY4MDQ3NjRlMWIyYjU4OTc", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "RAW" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-7SM2" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.78 x (with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.6 x 23.8 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "Bracket: Single/Bracket: Cont." + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (in 1/3 EV or 1/2 EV steps)" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "6.03" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree C" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - 35mm full frame: L: approx 4x, M: approx 6.1x, S :approx 8x, APS-C: L: approx 4x, M: approx 5.2x, S: approx 8x,Movie - 35mm full frame: approx 4x, APS-C: approx 4x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "9.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "12.69" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Power cord
  • Rechargeable Battery NP-FW50
  • Cable Protector
  • AC Adaptor AC-UD10
  • Battery Charger BC-VW1
  • Shoulder strap
  • Body cap
  • Accessory shoe cap
  • Eyepiece cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf7"), + "name" : "Sony ILCA-68M DSLR Camera with 18-135 mm Lens Kit", + "description" : "Sony ILCA-68M DSLR Camera with 18-135 mm Lens Kit", + "price" : "1116", + "sku" : "Sony-ILCA-68M-DSLR-Camera-with-18-135-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-ILCA-68M-DSLR-Camera-with-18-135-mm-Lens-Kit-491277869-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjE4M3xpbWFnZS9qcGVnfGltYWdlcy9oYTkvaDQyLzg5Mjk1MjM0MDA3MzQuanBnfGEwMzlhNjU4YTU0Y2RkZWQyMjgzYTc4MWFiMWE1ZGU0M2Y2YTYyOTZkODM2MGRkMmQwZGI3ZDgzODliODVlOTQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "A-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-68M" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.88x (35 mm camera equivalent: Approx. 0.57x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.28" + }, + { + "attributeName" : "Digital Zoom", + "attributeValue" : "Still Image - L: Approx. 4x, M: Approx. 5.7x, S: Approx. 8,Movie - Yes (4x)" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery Charger BC-VM10A
  • Body cap
  • Eyepiece cup
  • Lens cap
  • Micro USB cable
  • Power cord
  • Rechargeable Battery NP-FM500
  • Shoulder strap
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf8"), + "name" : "Canon EOS 7D Mark II DSLR Camera with 18-135 mm Lens Kit", + "description" : "Canon EOS 7D Mark II DSLR Camera with 18-135 mm Lens Kit", + "price" : "1971", + "sku" : "Canon-EOS-7D-Mark-II-DSLR-Camera-with-18-135-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-EOS-7D-Mark-II-DSLR-Camera-with-18-135-mm-Lens-Kit-491186095-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc5M3xpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDA5Lzg5Mjk2MTM1NzgyNzAuanBnfDczOTY0ZGM2NDQ0NmYwN2JiZmRiZWNhZjMzOTg4OGY5NTEyMzdlYjA5Mzk1NjE0YTM0NTdmOTFmODNmOGZmNGQ", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (including EF-S lenses) Excluding EF-M lenses (35mm-equivalent focal length is approx. 1.6 times the focal length indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "7D Mark II" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.00x (-1 m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 22.4 x 15.0mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Evaluative metering" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "Full HD (1920x1080): 59.94p / 50.00p / 29.97p / 25.00p / 24.00p / 23.98p,HD (1280x720): 59.94p / 50.00p / 29.97p / 25.00p,SD (640x480): 29.97p / 25.00p" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+-3 stops in 1/3-stop or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.82" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "10 fps" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 Degree Celsius" + }, + { + "attributeName" : "Elements", + "attributeValue" : "16" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "67" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.28x (at 135 mm focal length)" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.24" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.86" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1865" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Approx. 1hr. 40min movie shooting time with a fully-charged Battery Pack LP-E6N" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual DIGIC 6 image processor
  • Auto Lighting Optimizer
  • Highlight tone priority
  • Lens aberration correction
  • Anti-flicker
  • Depth-of-field preview
  • Picture Style - Auto" + }, + { + "attributeName" : "USB", + "attributeValue" : "SuperSpeed USB (v3.0)" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cf9"), + "name" : "Sony Alpha ILCA-77M2 DSLR Camera Body", + "description" : "Sony Alpha ILCA-77M2 DSLR Camera Body", + "price" : "1232", + "sku" : "Sony-Alpha-ILCA-77M2-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Alpha-ILCA-77M2-DSLR-Camera-Body-491161475-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc3NXxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaGYxLzg5Mjk2MTEyODQ1MTAuanBnfDc2YzJlNGZkYmMxYjA5ODk4NGRlMDdjZjFhYzliZmRmMDcyNWVkODk0NzYxZDdjYWVhNGIzOGU1NTM5ZTI1OWM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "6" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG (DCF Ver. 2.0" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony A-mount lenses (also compatible with Konica and Minolta lenses)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Sony A-mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCA-77M2" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.09x (35 mm camera equivalent: Approx. 0.71x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.62 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 X 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Flash Range", + "attributeValue" : "1 m - 5 m" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/8000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Recording Frame Rate", + "attributeValue" : "12 fps" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "8.09" + }, + { + "attributeName" : "Zoom Lock", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AC3" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "12 fps" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Image Stabilisation (Lens)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.42" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.26" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 480 shots (still images)" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Tripod Mount", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Continuous Shooting Speed : Continuous Priority AE (12fps)" + }, + { + "attributeName" : "Included Software", + "attributeValue" : "PMB (Picture Motion Browser) v5.2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery Charger (BC-VM10A)
  • Rechargable Battery (NP-FM500H)
  • Shoulder Strap
  • Accessory Shoe Cap
  • Body Cap
  • Eye Piece Cup
  • Micro USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfa"), + "name" : "Nikon D7200 DSLR Camera with 18-200 mm Lens Kit", + "description" : "Nikon D7200 DSLR Camera with 18-200 mm Lens Kit", + "price" : "1403", + "sku" : "Nikon-D7200-DSLR-Camera-with-18-200-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D7200-DSLR-Cameras-491362479-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDQ2MXxpbWFnZS9qcGVnfGltYWdlcy9oMWMvaDUwLzg4OTc3NDY4MjkzNDIuanBnfGNhOTk3MGY5YzU0M2VhMWE3NmM1NjdkNDBmYjQ5ODI1ZDM0YTU0MzU0MmFkYWU1NGIxMGJjMTdlOTk2ZDZmZDA", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7200" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.94 x" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Scene Modes" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-200" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.55" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Rubber Eyecup DK-23" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfb"), + "name" : "Canon EOS 6D Mark II DSLR Camera with 24-70 mm Lens Kit", + "description" : "Canon EOS 6D Mark II DSLR Camera with 24-70 mm Lens Kit", + "price" : "2471", + "sku" : "Canon-EOS-6D-Mark-II-DSLR-Camera-with-24-70-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Canon-6D-Mark-II-DSLR-Cameras-491295953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzYxNXxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaDJjLzg5MjE5ODQ0MDE0MzguanBnfGM0NzFlZDNiMDZjZDJlY2YzNmE4MjU5MzU2MDYyZjQ5M2U2MTViZjhjYzE5NGNkZGEwNjBmNGM3NzRkZjI5ODI", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "26.2" + }, + { + "attributeName" : "Image Type", + "attributeValue" : "JPEG" + }, + { + "attributeName" : "Series", + "attributeValue" : "EOS" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Canon EF lenses (except EF-S and EF-M lenses) (35mm-equivalent lens focal length will be as indicated on the lens)" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Canon EF mount" + }, + { + "attributeName" : "Model", + "attributeValue" : "6D Mark II" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "Approx. -3.0 - +1.0m" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 0.71x (-1m-1 with 50mm lens at infinity)" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "Approx. 35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 secs" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 sec" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "ISO", + "attributeValue" : "102400" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "-/+3 stops in 1/3- or 1/2-stop increments" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.48" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C - 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG" + }, + { + "attributeName" : "Elements", + "attributeValue" : "15" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-70" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "1800" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Canon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Canon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfc"), + "name" : "Sony Alpha ILCE-6400 DSLR Camera Body", + "description" : "Sony Alpha ILCE-6400 DSLR Camera Body", + "price" : "1102", + "sku" : "Sony-Alpha-ILCE-6400-DSLR-Camera-Body", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-A6400-DSLR-491431249-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjU3fGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oNzAvOTEwODg0MzAwMzkzNC5qcGd8ZDcyNzM2NjQxODQyYTU3NGE2YWJiZmRjOGM0MzllYTkzZTkyMDRhMzhiOWU2MDhhNGMyODRkNDI0NTFmNTEzZg", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "1" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6400" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4.0-+3.0 m-1" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "425" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 Seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/14000 Seconds" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 frames" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Continuous shooting: Hi+: 11fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degrees C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 1.07x" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Still Image: Approx. 360 shots (Viewfinder)/Approx. 410 shots (LCD monitor) (CIPA standard)
  • \n
  • Movie" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DIGITAL ZOOM: Smart zoom (Still images): M: Approx. 1.4x" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AC Adaptor: AC-UUE12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "403" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfd"), + "name" : "Sony Alpha ILCE-6400M DSLR Camera with 18-135 mm Lens Kit", + "description" : "Sony Alpha ILCE-6400M DSLR Camera with 18-135 mm Lens Kit", + "price" : "1595", + "sku" : "Sony-Alpha-ILCE-6400M-DSLR-Camera-with-18-135-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-A6400M-DSLR-491431250-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTI1fGltYWdlL2pwZWd8aW1hZ2VzL2g1Zi9oZmIvOTEwODg0MTE2ODkyNi5qcGd8ZmM4ZWU4MTYyMTkwZjgyMWQ5OTkwNzExNWI1ODU3NjM2OTJhYTY0NTQxNDU0YjgzNTk0ZmU1ZDc5ZTFmZGE4Yw", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Dynamic Range", + "attributeValue" : "1" + }, + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.2" + }, + { + "attributeName" : "Series", + "attributeValue" : "Alpha" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Sony E-mount lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "E-mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "ILCE-6400M" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-4.0-+3.0 m-1" + }, + { + "attributeName" : "Viewfinder Magnification", + "attributeValue" : "Approx. 1.07x (35 mm camera equivalent: Approx. 0.70x) with 50 mm lens at infinity" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Electronic" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "7.5 cm (3 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "425" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 x 15.6 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Flash off" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Max Shutter Speed", + "attributeValue" : "30 Seconds" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Multi-segment" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/14000 Seconds" + }, + { + "attributeName" : "AE Bracketing", + "attributeValue" : "3 frames" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "+/-5.0 EV (1/3 EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Exposure Mode", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDR", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Continuous Drive", + "attributeValue" : "Continuous shooting: Hi+: 11fps" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 - 40 degrees C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Kit Lens Group", + "attributeValue" : "12" + }, + { + "attributeName" : "Kit Lens Elements", + "attributeValue" : "16" + }, + { + "attributeName" : "Kit Lens Focal Length", + "attributeValue" : "18-135" + }, + { + "attributeName" : "Kit Lens Image Stabilisation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Kit Lens Filter Diameter", + "attributeValue" : "55" + }, + { + "attributeName" : "Kit Lens Lens Mass", + "attributeValue" : "325" + }, + { + "attributeName" : "Kit Lens Min Aperture", + "attributeValue" : "22–36" + }, + { + "attributeName" : "Kit Lens Max. Magnification", + "attributeValue" : "0.29x" + }, + { + "attributeName" : "Kit Lens Min Focus Distance", + "attributeValue" : "1.48" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Width", + "attributeValue" : "12" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Still Image: Approx. 360 shots (Viewfinder)/Approx. 410 shots (LCD monitor) (CIPA standard)
  • \n
  • Movie" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • DIGITAL ZOOM: Smart zoom (Still images): M: Approx. 1.4x" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "AC Adaptor: AC-UUE12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "403" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cfe"), + "name" : "Nikon D7500 DSLR Camera with 18-140 mm Lens Kit", + "description" : "Nikon D7500 DSLR Camera with 18-140 mm Lens Kit", + "price" : "1540", + "sku" : "Nikon-D7500-DSLR-Camera-with-18-140-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-VBK510UN-DSLR-Cameras-491431245-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTQ5MnxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDFjLzkxMTcwMTgwNjI4NzguanBnfGFiNmIxMDdjOWEyZmQxM2ZjOGYyMGI3YTE3NTE3MzAyOWVhNGMwOWYyM2M3YTljMDQ4NDI1NjQwM2I3ZDVlNmM", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "20.9" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount" + }, + { + "attributeName" : "Interchangeable Lens", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "D7500" + }, + { + "attributeName" : "Diopter Adjustment", + "attributeValue" : "-2 to +1 m(*1)" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No of Focus Points", + "attributeValue" : "51" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "23.5 mm x 15.7 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix: 3D color matrix metering III (type G" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by –5 to +5 EV in steps of 1/3 or 1/2 EV in P" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "4K Movie Recording", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree C to 40 degree C" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Elements", + "attributeValue" : "17" + }, + { + "attributeName" : "Filter Diameter", + "attributeValue" : "67" + }, + { + "attributeName" : "Groups", + "attributeValue" : "12" + }, + { + "attributeName" : "Lens Mass", + "attributeValue" : "490" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "18-140" + }, + { + "attributeName" : "Min Aperture", + "attributeValue" : "f/22-38" + }, + { + "attributeName" : "Min Focus Distance", + "attributeValue" : "1.48" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "10.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "13.55" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "DK-28 Rubber Eyecup" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB with Micro-B connector; connection to built-in USB port is recommended" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "720" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637cff"), + "name" : "Nikon D750 DSLR Camera with 24-120 mm Lens Kit", + "description" : "Nikon D750 DSLR Camera with 24-120 mm Lens Kit", + "price" : "2391", + "sku" : "Nikon-D750-DSLR-Camera-with-24-120-mm-Lens-Kit", + "imageUrl" : "https://www.reliancedigital.in/medias/Nikon-D750-DSLR-Camera-with-24-120-mm-Lens-Kit-491185880-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDE3NHxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaGMwLzg5Mjk2MjExMTQ5MTAuanBnfDcxZGJkMjY5ZjNlZjhjMjc4ZGYwYzY2YmNjZjY1OWIzZWY5NmYxMjkzZWIyMmIzNmZhNTRhNzY5MDM1MjkyZWE", + "category" : { + "_id" : NumberLong(101456), + "name" : "Cameras" + }, + "productAttributeList" : [ + { + "attributeName" : "Effective Pixels", + "attributeValue" : "24.3" + }, + { + "attributeName" : "Compatible Lenses", + "attributeValue" : "Compatible with AF NIKKOR lenses" + }, + { + "attributeName" : "Lens Mount", + "attributeValue" : "Nikon F mount (with AF coupling and AF contacts)" + }, + { + "attributeName" : "Model", + "attributeValue" : "D750" + }, + { + "attributeName" : "Live View", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Viewfinder Type", + "attributeValue" : "Pentaprism" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "8.12 cm (3.2 inch)" + }, + { + "attributeName" : "Autofocus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Manual Focus", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensor Size", + "attributeValue" : "35.9 x 24.0 mm" + }, + { + "attributeName" : "Sensor Type", + "attributeValue" : "CMOS" + }, + { + "attributeName" : "Flash Modes", + "attributeValue" : "Auto" + }, + { + "attributeName" : "Flash", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Metering Modes", + "attributeValue" : "Matrix" + }, + { + "attributeName" : "Min Shutter Speed", + "attributeValue" : "1/4000 seconds" + }, + { + "attributeName" : "Shutter Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Exposure Compensation", + "attributeValue" : "Can be adjusted by -5 - +5EV" + }, + { + "attributeName" : "Self-Timer", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Aperture Priority", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "7.8" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Operating Humidity", + "attributeValue" : "85% or less (no condensation)" + }, + { + "attributeName" : "Operating Temperature", + "attributeValue" : "0 degree Celsius - 40 degree Celsius" + }, + { + "attributeName" : "Time Lapse Video", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Scene Modes", + "attributeValue" : "Portrait" + }, + { + "attributeName" : "Focal Length", + "attributeValue" : "24-120" + }, + { + "attributeName" : "Max. Magnification", + "attributeValue" : "Approx. 0.7x (50 mm f/1.4 lens at infinity" + }, + { + "attributeName" : "Lens Type", + "attributeValue" : "Standard Lens" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.05" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "No. of Card Slots", + "attributeValue" : "2" + }, + { + "attributeName" : "PictBridge Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dust Reduction", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless Remote Control", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Image sensor cleaning
  • Image Dust Off reference data (Capture NX-D software required)
  • Reflex mirror : Quick-return type
  • Depth-of-field preview
  • Flash-Ready indicator
  • Authentication: Open system
  • Eyepoint - 21 mm (-1.0 m{sup(-1)}; from center surface of viewfinder eyepiece lens)
  • AF-area mode - Face-priority AF" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Rubber Eyecup DK-21
  • Body Cap BF-1B
  • Rechargeable Li-ion Battery EN-EL15 with terminal cover
  • Battery Charger MH-25a (comes with either an AC wall adapter or power cable of a type and shape that varies with the country or region of sale)
  • Eyepiece Cap DK-5
  • USB Cable UC-E17
  • Strap AN-DC14
  • ViewNX 2 installer
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "USB", + "attributeValue" : "Hi-Speed USB" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes, Type C HDMI" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nikon" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nikon", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d00"), + "name" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Coral Red", + "description" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Coral Red", + "price" : "479", + "sku" : "Vivo-V15-Pro-Smart-Phone-128-GB,-6-GB-RAM,-Coral-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15Pro-Red-6-128GB-12-8-5MP-32MP-SmartPhone-491550772-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjY0fGltYWdlL2pwZWd8aW1hZ2VzL2hhYi9oZDAvOTEwMzQwMzMxOTMyNi5qcGd8ZjM5MDk5YjMxNDVmZjAzYThiZWNmOGU1ZDg4ZjY3ODlhNzAwN2JjMjE5N2I1MGQ3NGVmOGJkODNiYzQ3ZDAxNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE - B1/3/5/8
  • TDD-LTE - B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.471" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.821" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pop Camera
  • Infiniti Screen
  • GoPop Signal projection
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone, Documentation, USB Cable, USB Power Adapter, SIM Ejector, Protective Case, Protective Film (applied)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d01"), + "name" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Blue", + "description" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Blue", + "price" : "450", + "sku" : "Samsung-Galaxy-A7-Smart-Phone-128-GB,-6-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488123-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MzA1fGltYWdlL2pwZWd8aW1hZ2VzL2hkZi9oNjMvOTA0OTY3NTk4OTAyMi5qcGd8MGUwMDJmODdkMjZiMjNkZTA1NjhjYzhkNTIyNDg4ZTYyZjE1MjhhM2QyM2Q5ZTE2ZDdkODQ4NjAyODE2MDRiNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d02"), + "name" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Steel", + "description" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Steel", + "price" : "356", + "sku" : "Nokia-7.1-Smart-Phone-64-GB,-4-GB-RAM,-Gloss-Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-7-1-TA-1097-DS-4-64-IN-CM-STEEL-491503442-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDI4MXxpbWFnZS9qcGVnfGltYWdlcy9oMGUvaGM0LzkwNzQ2MDc2MjAxMjYuanBnfDk0MmZkNDIyZjM2MThjYTU1M2NlOTI1Y2MyYjkxNTQ5MTJhNzBmOGUzNGIwYTkwYjVlY2UyMzUyOWUyZjc2NWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Steel" + }, + { + "attributeName" : "Model", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.83 cm (5.84 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 636" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "160" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "Single speaker with smart amp" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 18W charger
  • \n
  • USB Type-C cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • \n
  • Headset
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (USB 2.0)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d03"), + "name" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism Black", + "description" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism Black", + "price" : "856", + "sku" : "Samsung-Galaxy-S10e-Smart-Phone-128-GB,-6-GB-RAM,-Prism-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10e-BLK-6-128-5-8-Smart-Phone-491550800-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTM4fGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oNjIvOTEwNDUzODg5NDM2Ni5qcGd8NDJlOTJkNzRjMmE0ZjYzNTY0ZWU1ZDE1NDI4ZDBkYThkYmE5Mjc2N2U0NjhiM2E3NjZmODhiNDA1ZGQxZWI5Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10e" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.61 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d04"), + "name" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism White", + "description" : "Samsung Galaxy S10e Smart Phone 128 GB, 6 GB RAM, Prism White", + "price" : "856", + "sku" : "Samsung-Galaxy-S10e-Smart-Phone-128-GB,-6-GB-RAM,-Prism-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10e-WHT-6-128-5-8-Smart-Phone-491550801-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM2fGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oYjIvOTEwNDUzODU2NjY4Ni5qcGd8Zjg4MDkxYTRkZjI1MjE0MDRiNmRlNzdkZWZmY2VmZjMyNDU0ZTA5MTkyOTNhMDhkMTk0MDY2MmE3NGMzNmUwNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10e" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.61 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d05"), + "name" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "description" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "price" : "1029", + "sku" : "Samsung-Galaxy-S10-Smart-Phone-128-GB,-8-GB-RAM,-Prism-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLU-8-128-6-1-Smart-Phone-491550802-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTU4fGltYWdlL2pwZWd8aW1hZ2VzL2hjMy9oZTUvOTEwNDUzOTM1MzExOC5qcGd8OWFhZmRmNmY5YjMzZDVmYTVjODI2NjNlMTAxYjkzZWI0MDM4ZWFkYjQxZDM4MTdhNTBlNDNkYTk1ZmZjYWVkZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d06"), + "name" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Black", + "description" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism Black", + "price" : "1029", + "sku" : "Samsung-Galaxy-S10-Smart-Phone-128-GB,-8-GB-RAM,-Prism-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLK-8-128-6-1-Smart-Phone-491550803-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzkwfGltYWdlL2pwZWd8aW1hZ2VzL2hkNC9oMWUvOTEwNDU0ODg1NTgzOC5qcGd8YTVjMzVmM2E3N2JjODA1YzJlMTQxMDg2MGI0NzgzZmE1MTc4NDBiZWFmZmE5M2VkYTU4NjJkMWIyM2JlZGVlOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d07"), + "name" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism White", + "description" : "Samsung Galaxy S10 Smart Phone 128 GB, 8 GB RAM, Prism White", + "price" : "1029", + "sku" : "Samsung-Galaxy-S10-Smart-Phone-128-GB,-8-GB-RAM,-Prism-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-8-128-6-1-Smart-Phone-491550804-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTAzfGltYWdlL2pwZWd8aW1hZ2VzL2g1Yi9oM2YvOTEwNDU0ODUyODE1OC5qcGd8MTU1NWExMWJhY2YxMTYwYTdjYmIyMjc2NzVlNDBkYjBmMTA3Mzk3NjhjZjc1ZDU1MTM2ZDgwMTI0OGVmYjdkYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d08"), + "name" : "Samsung Galaxy S10 Smart Phone 512 GB, 8 GB RAM, Prism White", + "description" : "Samsung Galaxy S10 Smart Phone 512 GB, 8 GB RAM, Prism White", + "price" : "1334", + "sku" : "Samsung-Galaxy-S10-Smart-Phone-512-GB,-8-GB-RAM,-Prism-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-8-512-6-1-Smart-Phone-491550805-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTEyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oYTIvOTEwNDU1MTE0OTU5OC5qcGd8NmZhZTdiZjU1OWFiNzUyOTY2NGVlZjJhM2E4NmFjMmU2ZDQ5NDYzNDM3OGI3Mzc0M2Y0ZDgyZmExNjJlMWU2Mg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.51 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d09"), + "name" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "description" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Blue", + "price" : "1145", + "sku" : "Samsung-Galaxy-S10+-Smart-Phone-128-GB,-8-GB-RAM,-Prism-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLU-8-128-6-4-Smart-Phone-491550806-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDU0fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oNWQvOTEwNDU1MTgwNDk1OC5qcGd8YmU1OTZiNjExZDQ1NjZmZjg2ZjUyZTg2NmY2N2Q1MDFjYTFlOGRjYjYzNDRjNWU4ZGQ3NTM5MDE2ZTg4ZTcxNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0a"), + "name" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism White", + "description" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism White", + "price" : "1145", + "sku" : "Samsung-Galaxy-S10+-Smart-Phone-128-GB,-8-GB-RAM,-Prism-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-P-8-128-6-4-Smart-Phone-491550808-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjgzfGltYWdlL2pwZWd8aW1hZ2VzL2g2Yy9oNjcvOTEwNDU2MjQ4NzMyNi5qcGd8NTZkYTRhYjY0OTc4MWI4ZjQxNDNjN2JkMjlmZmI1ODE2Mjk5ODFmYjY1NzczOWFlNzAxOGZhZWZkNWYxMjQ2OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0b"), + "name" : "Samsung Galaxy S10+ Smart Phone 512 GB, 8 GB RAM, Ceramic Black", + "description" : "Samsung Galaxy S10+ Smart Phone 512 GB, 8 GB RAM, Ceramic Black", + "price" : "1435", + "sku" : "Samsung-Galaxy-S10+-Smart-Phone-512-GB,-8-GB-RAM,-Ceramic-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLK-C-8-512-6-4-Smart-Phone-491550809-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzAyOHxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaGNiLzkxMDQ1NzE2NjIzNjYuanBnfDg3MzBkMWI3ZDEyZmQ0MGU2YmVlMWVhMzAzOTIyODkxYWMyNjhhZThjN2JmMzMyZjc1ZGI3ZGQxNWExMmM3Njk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0c"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Black", + "description" : "Apple iPhone XR Smart Phone 64 GB, Black", + "price" : "1115", + "sku" : "Apple-iPhone-XR-Smart-Phone-64-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Black-491488441-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIzfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oYmEvOTA1MTcxNDQ1MzUzNC5qcGd8MDczNjc4ZWYzODg2NWU4YzNhYzcxNGRlMTUyNjIyYmYzYTRkOGE5ZTAwOWU2MTQ2OThlYTUzYmZiOTU4MjM0Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0d"), + "name" : "Apple iPhone XR Smart Phone 64 GB, White", + "description" : "Apple iPhone XR Smart Phone 64 GB, White", + "price" : "1115", + "sku" : "Apple-iPhone-XR-Smart-Phone-64-GB,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-White-491488442-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTIyMHxpbWFnZS9qcGVnfGltYWdlcy9oOWQvaGFlLzkwNTE3MjYxODQ0NzguanBnfGRiZjA3ZWExYWU2MTRlZTc4ZmVkNGJlMTRmZjc4ODUwYjBhZjE1MjcyZGIwZmEzNWZkY2Q4NTc4ZjMzNTYyNjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0e"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Coral", + "description" : "Apple iPhone XR Smart Phone 64 GB, Coral", + "price" : "1115", + "sku" : "Apple-iPhone-XR-Smart-Phone-64-GB,-Coral", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Coral-491488445-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjk5MHxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDBlLzkwNTE3MTc0MDI2NTQuanBnfGEwZDQ0YTk2MDVhNGY4YTc5YmRkNDQzODZmOGEyMjBkNmE5ZDlhMzlkM2QwOGNlZmY0OWMwMjczZWRiNjQ2YTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d0f"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Black", + "description" : "Apple iPhone XR Smart Phone 128 GB, Black", + "price" : "1187", + "sku" : "Apple-iPhone-XR-Smart-Phone-128-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Black-491488446-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDE5fGltYWdlL2pwZWd8aW1hZ2VzL2hlZS9oOTMvOTA1MTcyODQ3ODIzOC5qcGd8NDUxNGE3MGJmM2QxMzE0NmRiYjBjZTA2N2U3OGZlODhlYjlmZDQ2NTkzODE0ODlkZjRhYjlmOGViYjIyN2Y1OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d10"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Blue", + "description" : "Apple iPhone XR Smart Phone 64 GB, Blue", + "price" : "1115", + "sku" : "Apple-iPhone-XR-Smart-Phone-64-GB,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Blue-491488447-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjI0MnxpbWFnZS9qcGVnfGltYWdlcy9oOTAvaGY5LzkwNTE3MTIwOTQyMzguanBnfDFmZjkxYTQyNWE1MGYzMGQ5YWFiOWJiNjA4ZGI0N2NkOGQ5NjIyN2M2NDYzZDk4ZjNjZTgxNWQzOTI2MjMxNmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d11"), + "name" : "Apple iPhone XR Smart Phone 128 GB, White", + "description" : "Apple iPhone XR Smart Phone 128 GB, White", + "price" : "1187", + "sku" : "Apple-iPhone-XR-Smart-Phone-128-GB,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-White-491488448-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTIzOHxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaDk0LzkwNTE3MzEwMzQxNDIuanBnfDU5OTg1ODMyNmZmYmI0MDQ0MjY1YzQ3ZTkxN2E3ODY2ZGQ5NTRmMzFjOTc3ZGVlY2Q3ODA2ZDZkYWMzMzIxN2I", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d12"), + "name" : "Apple iPhone XR Smart Phone 128 GB, (PRODUCT)RED", + "description" : "Apple iPhone XR Smart Phone 128 GB, (PRODUCT)RED", + "price" : "1187", + "sku" : "Apple-iPhone-XR-Smart-Phone-128-GB,-(PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-RED-491488449-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjAxN3xpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDQ1LzkwNTE3MjE0MDAzNTAuanBnfDExNjU4ZmU1ZjUwOTQ3NGY3MDA2NjBkYzBlN2Y1NTk3MzRlNzRkMjk4ZmVjMTQ1N2EzYmQ5YzRhMzE0YTM3Yjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d13"), + "name" : "Apple iPhone XR Smart Phone 256 GB, Coral", + "description" : "Apple iPhone XR Smart Phone 256 GB, Coral", + "price" : "1332", + "sku" : "Apple-iPhone-XR-Smart-Phone-256-GB,-Coral", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-Coral-491488457-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjk5MHxpbWFnZS9qcGVnfGltYWdlcy9oMDcvaDQwLzkwNTE3NDUwNTg4NDYuanBnfGM0NjA5YzM0ZmEyZmUwZWI3MTEzMmRhNmFkMTEzNWUwMDA0ZGZkYWJiMjY4MTQxNjhkYWQ5YTQ1NTZiZWY0OTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d14"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Gold", + "price" : "580", + "sku" : "Apple-iPhone-6s-Smart-Phone-32-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Gold-491282843-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTI5OHxpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDhkLzg5MjczNzM4ODU0NzAuanBnfDdiZmYyNDhlOTU0NGQyOTYwYmZhY2ZiYTljZDRkODIyYmY4NGNiZDI4OTk1NGJjOGZhYzNjNDU4OTE1MzZiM2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d15"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "price" : "580", + "sku" : "Apple-iPhone-6s-Smart-Phone-32-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Silver-491282846-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTIyN3xpbWFnZS9qcGVnfGltYWdlcy9oMzcvaGE4Lzg5MjczODA5NjMzNTguanBnfGU2OTk0OWZhODRjOWUzMDgzMDg0MDk0YjAzODY2YWUwMThhZDdhZDNiMjVmYTBmNDMzZDhiMGE5YTlmNTEwMTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d16"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Silver", + "price" : "759", + "sku" : "Apple-iPhone-7-Smart-Phone-32-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Silver-491282716-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDY2NHxpbWFnZS9qcGVnfGltYWdlcy9oNTYvaDc3Lzg5MjcxNDE5NTM1NjYuanBnfGI0MjNlMDkzN2JjMzZiN2IzZGJhOTc1YTFlNzhkZTA2ZTk2ZDhmY2Q1MGVhYWQ5MjI2ZjYyZDFiYWVmOWJkY2I", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d17"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Black", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Black", + "price" : "911", + "sku" : "Apple-iPhone-7-Plus-Smart-Phone-32-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Black-491282726-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTkwMnxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaDAyLzg5MjcwOTczMjM1NTAuanBnfGM3NmEwYzYxZjAwODQ2M2M4NGRlZWQyNzlkN2M4MGRjZGYxZDU1Nzc3ZDBlZjhhZDRjMWZmNTI4MDFmMDFmYjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d18"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Gold", + "price" : "911", + "sku" : "Apple-iPhone-7-Plus-Smart-Phone-32-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Gold-491282728-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjE5OHxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDY1Lzg5MjcxMDM4NzcxNTAuanBnfDUyOTlkMzk4NDQzMGIwNTc5NDU1ZjY0NDJmNTc4ZTUzNWJmZTUwNDE4NTVkOTE5YTc4ZWE5YmExYjRmMDc1Y2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d19"), + "name" : "Apple iPhone X Smart Phone 64 GB, Space Gray", + "description" : "Apple iPhone X Smart Phone 64 GB, Space Gray", + "price" : "1332", + "sku" : "Apple-iPhone-X-Smart-Phone-64-GB,-Space-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-64-GB-Space-Gray-491350994-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDM1M3xpbWFnZS9qcGVnfGltYWdlcy9oOTIvaDY0Lzg5NjMzODMwNjY2NTQuanBnfGRiMjkyNTkwMGVlODQzZWNjMDJlOWE2OGY1MTQ3MTM4ZTdjN2FmOTRmMmUxY2I3YTliMGIyMjc3MTA3MTI2MmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1a"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone 8 Smart Phone 64 GB, Space Grey", + "price" : "869", + "sku" : "Apple-iPhone-8-Smart-Phone-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-64-GB-Space-Grey-491351007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oZTQvaDBjLzg5NjM0NzUyMTAyNzAuanBnfDUwY2FhOWQwN2Q3MWQ0MmJhM2ZmNzFkZDdiYTk3MzlhM2Y4NmMxNThlNjJjMGU2NTQzNTFhN2ExYTcxZWVlMWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1b"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, Gold", + "description" : "Apple iPhone 8 Smart Phone 64 GB, Gold", + "price" : "869", + "sku" : "Apple-iPhone-8-Smart-Phone-64-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-64-GB-Gold-491351009-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDY2OXxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGIxLzg5NjM0NzQ1NTQ5MTAuanBnfDU1MGVmMTdkOTBmYTk3NmJkZmQzYTM4ZjgwODU2MjA5Njg0YzZkMmY3NzdiYjlkZjgzYThiYTA3ODg5N2E4ZmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1c"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, Space Grey", + "price" : "1014", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-64-GB-Space-Grey-491351002-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDE2Lzg5MjcwNDgzNjgxNTguanBnfGQ0OGQ0YWRjZGU1NDNlMzBjNjZmY2ZhYjFkMjk0ZTdkYzU2OTc1YTYzMWYzZThkNDVmZWU2NTMyNDgzOGIxNmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1d"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Space Grey", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Space Grey", + "price" : "580", + "sku" : "Apple-iPhone-6s-Smart-Phone-32-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Space-Grey-491282844-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjEyOXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaDg5Lzg5NjM1ODkyNDI5MTAuanBnfDY3NGE2MzQxMTkwNWIzMTY5YTA5ZTRmNWY2ZTBhYTg3Y2ZhYjA2ZjhkNTNjMWU5OWNhOTI4NmNkNzU5ODBmMzA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1e"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Black", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Black", + "price" : "759", + "sku" : "Apple-iPhone-7-Smart-Phone-32-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Black-491282715-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjUyOXxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGZiLzg5MjcxMDE5MTEwNzAuanBnfDdhMDhiN2MyMzY0Y2YyZDg4MzRlZjE2N2FmYTVkMzFkNzUzYzhiMjc4YjRlZjFjNjA5ZTQxZjU2MDQ2MDdiZDY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d1f"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, Gold", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, Gold", + "price" : "1014", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-64-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-64-GB-Gold-491351004-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM2MXxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaDQ5Lzg5MjcwNzU3NjIyMDYuanBnfDUxZTA0ZDUyODRhMDYxZWUyYjViOTNhZDAwNWY2YmM2NWQ0MDZiZDI3NGI3YjIzYWRhM2FjMTliMjg3MjFiNWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d20"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, (PRODUCT)RED", + "price" : "1058", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-64-GB,-(PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRT72HN-A-Smart-Phones-491379784-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzcwOXxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDFlLzg5ODE2Njc0MTQwNDYuanBnfGJjMTQ4MTk3OGJhZGRlY2Y0YjkwYWMxZjQ2OWRmOWY5YWQ0NTI2NjFhMDhmNDA0NTRjMjE5MzJiMmU0ZWM3YWQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 14 hours
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d21"), + "name" : "Apple iPhone X Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone X Smart Phone 256 GB, Space Grey", + "price" : "1533", + "sku" : "Apple-iPhone-X-Smart-Phone-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-256-GB-Space-Grey-491350992-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDM1M3xpbWFnZS9qcGVnfGltYWdlcy9oNjkvaGQ0Lzg5MjY5MDEyMzk4MzguanBnfGY1YTE3MjNhYzAwNzQ2MWJmYzY1MmE1YTEzN2NlOTJmOWEyMjA4MWI3MDY3ODUwYmEwOWMwYTU2MzRiNmMyMjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d22"), + "name" : "Apple iPhone X Smart Phone 256 GB, Silver", + "description" : "Apple iPhone X Smart Phone 256 GB, Silver", + "price" : "1533", + "sku" : "Apple-iPhone-X-Smart-Phone-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-256-GB-Silver-491350993-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTAzNHxpbWFnZS9qcGVnfGltYWdlcy9oNDIvaDY5Lzg5NjMzOTY2OTgxNDIuanBnfDc2YjBiMGE2YTk3NDE0Y2E0NGFiMDRjOTViMzM0OGI2ZTc4YWU3MjNhZWYzNDI4NTlmN2VjMjE5ZTU2M2M0Zjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d23"), + "name" : "Apple iPhone 7 Plus Smart Phone 128 GB, Gold", + "description" : "Apple iPhone 7 Plus Smart Phone 128 GB, Gold", + "price" : "986", + "sku" : "Apple-iPhone-7-Plus-Smart-Phone-128-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-128-GB-Gold-491282730-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjE4OXxpbWFnZS9qcGVnfGltYWdlcy9oNjUvaGViLzg5MjcxMTgxNjM5OTguanBnfDk0NGM3YjUyNDRjMWQ3MzM5MjliYmNhYmM2N2RjODQ5MjMzMGFjM2I4ODhjMTU1MTZiNDk0NDI3MWIyY2Y1MjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d24"), + "name" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, White", + "description" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, White", + "price" : "114", + "sku" : "LYF-Wind-7-Smart-Phone-16-GB,-2-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5016-Mobile-Phones-581107909-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDg5fGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oODcvOTAzODg2MTA3NDQ2Mi5qcGd8MjliNzhiY2QyNDZkNjRmNGQ1MGZlMWZmOTFhMDdkMjQxNWU5ZjczYzhiNDg2ZjI2MDcwYWZmZmJiZDE4MDliZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Wind" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Lollipop 5.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2250" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 5 hours
  • \n
  • Audio Playback Time: 32 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 180 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/ BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD BAND3(1800)/ BAND5(850)
  • \n
  • TDD BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MSM8909 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d25"), + "name" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Just Black", + "price" : "1160", + "sku" : "Google-Pixel-3-Smart-Phone-128-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488298-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIyfGltYWdlL2pwZWd8aW1hZ2VzL2g1NC9oYWIvOTA2NDYzOTg1NjY3MC5qcGd8NGI4MDM3NWZmYjgyNjU2OWZlMzRjYjZjOTNhZDY1NjZmNDdlN2YyNjBhMTZkM2IyOTA2NWY4Nzk4NjRlMmIyYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d26"), + "name" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "1203", + "sku" : "Google-Pixel-3-XL-Smart-Phone-64-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488301-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODQ5fGltYWdlL2pwZWd8aW1hZ2VzL2g1YS9oNmMvOTA2NDY1MDIxMTM1OC5qcGd8YzlmOGE0MzE1ZDM3ZTM1ZTQxYmUwMDhmYzQ5ZTQ1M2QwMDQxNjU3NjYyZDFjZTE2MzAxZjQ0NTQ2ZmQzNzA0OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d27"), + "name" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Just Black", + "price" : "1334", + "sku" : "Google-Pixel-3-XL-Smart-Phone-128-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488304-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODQ5fGltYWdlL2pwZWd8aW1hZ2VzL2gyOC9oYjUvOTA2NDY2MTU0OTA4Ni5qcGd8NjkxODA0ODgyYzRiZDVlNGRlM2Y4OThiYmZmODhhYTI3MmI5NmEyYTFlMzk3NDI4MWU1M2NmNTUyN2ZkMDI3YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d28"), + "name" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "1203", + "sku" : "Google-Pixel-3-XL-Smart-Phone-64-GB,-4-GB-RAM,-Clearly-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488302-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzEyfGltYWdlL2pwZWd8aW1hZ2VzL2g0My9oNmYvOTA2NDY0OTg4MzY3OC5qcGd8ODQ1NGM4YjYxY2NkYWYwNTVmMzEyZDQ3OWFlMGQxOTMxMmI1MzFjYzNkZjM5N2UxMTNjOWIyNzdiY2M3OTNhYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d29"), + "name" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "1029", + "sku" : "Google-Pixel-3-Smart-Phone-64-GB,-4-GB-RAM,-Clearly-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488296-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjUyfGltYWdlL2pwZWd8aW1hZ2VzL2hkMy9oMjUvOTA2NDY0MDE4NDM1MC5qcGd8NzAwZmFiMDBjZWVmZmIxN2EyZWM0OTZiOWE5MjA5ZjhjOTA5MWQwNGFlOWJjMTNiMTdhMTJmMGI3Y2E1MjMzYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2a"), + "name" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Not Pink", + "price" : "1160", + "sku" : "Google-Pixel-3-Smart-Phone-128-GB,-4-GB-RAM,-Not-Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488300-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODMwfGltYWdlL2pwZWd8aW1hZ2VzL2g0OS9oZDgvOTA2NDY1MDUzOTAzOC5qcGd8MzUzNGYzYzI2ZjIwZWQ3OTg5MzkxNTQ5NzJhNmNkZTE5NjY3ZDJlZTFkNjY3ODY3ODlkY2RmMjU0NGI3ZjNlYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2b"), + "name" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 XL Smart Phone 64 GB, 4 GB RAM, Not Pink", + "price" : "1203", + "sku" : "Google-Pixel-3-XL-Smart-Phone-64-GB,-4-GB-RAM,-Not-Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488303-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzgwfGltYWdlL2pwZWd8aW1hZ2VzL2g1NC9oNDgvOTA2NDY2MTAyNDc5OC5qcGd8ZGY0YTZhMjZmZTJhMjg2MTYxNzhiYzQyYmVmYTJlZWUyN2VlN2MzNDU4OGVjYjk5NWJlOGZlOGIyNGE4ODA5ZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2c"), + "name" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Not Pink", + "price" : "1029", + "sku" : "Google-Pixel-3-Smart-Phone-64-GB,-4-GB-RAM,-Not-Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488297-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODMwfGltYWdlL2pwZWd8aW1hZ2VzL2hlYS9oZmEvOTA2NDYzOTUyODk5MC5qcGd8YzA3YzkxZDQ3MjAyYWY3OGI0NTFhMWMxMWY1YjIzNjM2ZGVhMjdjOWY2YjVjMmZiYjM4YjFkMzRmZDAzYjM5YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2d"), + "name" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Red", + "description" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Red", + "price" : "247", + "sku" : "Samsung-Galaxy-J6-Plus-Smart-Phone,-64-GB,-4-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Plus-Red-Smart-Phone-491488079-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2hhMC9oNjgvOTAzMzQ0OTYwMzEwMi5qcGd8YjQ3ZmEzNzFmMDI5NTQwYWU1MzRkMTQ4MWE5MTVmYzc2N2IzZTAxZjM5NTNhYWNlZGQ0MTVmNDI1NGExNjhhYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "178" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "True HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2e"), + "name" : "LYF Water F1S Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "LYF Water F1S Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "294", + "sku" : "LYF-Water-F1S-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5201-Mobile-Phones-581107888-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDczfGltYWdlL2pwZWd8aW1hZ2VzL2gyZC9oNDkvOTAzODg1MjIyNzEwMi5qcGd8N2IxMjI0ODBjZTk4NDVlMDBiMTIwMjc2YTNmOTc2YTM4MTI2NGNjNGVmNGI2ZjliZGU0OTJiYWYyMWM0ZGI4ZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F1S" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Water" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback : Up to 8 hours
  • \n
  • Audio Playback : Up to 21 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 320 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 11.5 Hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 1900, 1800, 850, 900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA: BAND1 ( 2100 ) / BAND8 ( 900 )" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: BAND3 (1800) / BAND5 (850)
  • \n
  • LTE TDD: BAND40 (2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1 LE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz + 1.4 GHz Qualcomm Snapdragon 652 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.31" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "146" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C + v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d2f"), + "name" : "Vivo V11 Smart Phone 64 GB, 6 GB RAM, Nebula Purple", + "description" : "Vivo V11 Smart Phone 64 GB, 6 GB RAM, Nebula Purple", + "price" : "363", + "sku" : "Vivo-V11-Smart-Phone-64-GB,-6-GB-RAM,-Nebula-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V11-Nebula-Purple-Smart-Phones-491473040-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjI0fGltYWdlL2pwZWd8aW1hZ2VzL2gxZS9oYjcvOTAzMzQ1OTgyNjcxOC5qcGd8MzcwMzZlMTNmNWE1Njk4M2Y2MWY2YTRlMjM2ZjgzOTBmNTBmZmFlMWIwZWEwN2E5ODVjMDY3M2VmN2VmN2MzZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Nebula Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3315" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.7" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, 2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d30"), + "name" : "LG Q7 Smart Phone 32 GB, 3 GB RAM, Aurora Black", + "description" : "LG Q7 Smart Phone 32 GB, 3 GB RAM, Aurora Black", + "price" : "247", + "sku" : "LG-Q7-Smart-Phone-32-GB,-3-GB-RAM,-Aurora-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMQ610YN-AINDBK-Smart-Phones-491420288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDYyfGltYWdlL2pwZWd8aW1hZ2VzL2g3MC9oZTYvOTA0Njg2Njk4NDk5MC5qcGd8YTMwM2MyYjY3ZDQ5M2JhMDgzN2YwMjlkOWFlMmMyMGE5MDM4NTBlZmJjZmM2YTM4ODBmZjNjYTcyZTEyYjc4Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: 850/900/1900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE : B1/B3/B5/B40/B7/B8/B38/B28/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz MT6750S Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "145" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d31"), + "name" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Clearly White", + "price" : "1334", + "sku" : "Google-Pixel-3-XL-Smart-Phone-128-GB,-4-GB-RAM,-Clearly-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488305-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzEyfGltYWdlL2pwZWd8aW1hZ2VzL2g1My9oMzcvOTA2NDY2MDM2OTQzOC5qcGd8ZDAwNDU2ZmIzY2U0ZDE2YmJlNTlkZGU5MmVjMjk5NzI2NGU2NmRmNDRhNjgyMTMwYzQzYjdjMTZlOGNlZmMxYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d32"), + "name" : "Oppo F9 Pro Smart Phone 64 GB, 6 GB RAM, Starry Purple", + "description" : "Oppo F9 Pro Smart Phone 64 GB, 6 GB RAM, Starry Purple", + "price" : "377", + "sku" : "Oppo-F9-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Starry-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-CPH1823-Smart-Phones-491488060-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjAxNnxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaGI1LzkwNTQ5MTEyNjY4NDYuanBnfDM4ZWIwZDE4ODYzNDhkNzJiZmRkNDY1NzIyMDVmOTExZjc2NTg5YTVjOGU1MGM4OWRkNTg2NGEzNjdkODAxODM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "BT2.1(+EDR)/BT4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d33"), + "name" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3 Smart Phone 128 GB, 4 GB RAM, Clearly White", + "price" : "1160", + "sku" : "Google-Pixel-3-Smart-Phone-128-GB,-4-GB-RAM,-Clearly-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488299-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjUyfGltYWdlL2pwZWd8aW1hZ2VzL2gxMC9oOTYvOTA2NDY1MTE5NDM5OC5qcGd8N2FmNWFhYzE1NDAwZDQ0MWQ1OGY4YWVmZGE0MTQxNzgyNjMxODUxZmYwMmNkN2M4YzFhMTU4YzhhNjJmZjZlNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d34"), + "name" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Black", + "description" : "Samsung Galaxy A7 Smart Phone 128 GB, 6 GB RAM, Black", + "price" : "450", + "sku" : "Samsung-Galaxy-A7-Smart-Phone-128-GB,-6-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488124-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTExfGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oMGUvOTA0OTY4NjYwNTg1NC5qcGd8OTUxNmQyMTk1ZjAxZmRjZmMyYzJhYWJjY2JkMjBmZjU2MGQ4ZjM2Y2Y4MDQwNjBjMmY1NjhlYmU4Y2E2MWRjNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d35"), + "name" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "377", + "sku" : "Samsung-Galaxy-A7-Smart-Phone-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488120-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MzA1fGltYWdlL2pwZWd8aW1hZ2VzL2hhZS9oZWYvOTA0OTY3ODkzODE0Mi5qcGd8NmJkYjBkYTVjOGViYWQ5N2NlM2QzNmY4YzIzOGNlOWRkYmI4ZmU2MzhmNzc4MzNjYzNhNzYyNjAxZmVkYTAzYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2220 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d36"), + "name" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "377", + "sku" : "Samsung-Galaxy-A7-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488121-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTkzfGltYWdlL2pwZWd8aW1hZ2VzL2hjOC9oNWEvOTA0OTY3NjMxNjcwMi5qcGd8MGM2YTc3ZjIxNzJhN2VmOTY2NDY1ZGYwYzEyZDk4Y2FmNzY2NzI0ZTBkMjg3OWNkYTkyOWY1MGEzZjU4YjcwYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d37"), + "name" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A7 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "377", + "sku" : "Samsung-Galaxy-A7-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A7-Smart-Phones-491488122-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTExfGltYWdlL2pwZWd8aW1hZ2VzL2hkZS9oNTIvOTA0OTY3NjY0NDM4Mi5qcGd8MTA2MGY5MWFlZTlhOGQ5ZjdiOGEwMWEzN2U0YmIxZmQzMjc5MzM5OWY4OTk1NGViOGJlZjViMWI1N2FmZWEyZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.98" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d38"), + "name" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "186", + "sku" : "Nokia-3.1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-12ROOL21A01-Smart-Phones-491488396-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjcwfGltYWdlL2pwZWd8aW1hZ2VzL2hiYi9oYWMvOTA2OTQ1MTU0MjU1OC5qcGd8MmNjMWYzZTBjZjhiNjRkZjBhZjkyZWQ1YjlkYzg3MjBmYmE2ZTFjMmRkYWQxOWJkMTQ0MjRiM2M5ZTY1MDU0MQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P22" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d39"), + "name" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Baltic", + "description" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, Baltic", + "price" : "186", + "sku" : "Nokia-3.1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Baltic", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-12ROOD21A01-Smart-Phones-491488397-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjI0fGltYWdlL2pwZWd8aW1hZ2VzL2gyNS9oNWQvOTA2OTQ1MTIxNDg3OC5qcGd8ZjI3N2MyMzdiNmE4ZDFjOTRjYzM5YjY4NzI5MDU4MDcxZTU0MmQ2MDBhYmI1ZDI0MDgyMTJlYjAwNWY2NDRmMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Baltic" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P22" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3a"), + "name" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Champagne", + "description" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Champagne", + "price" : "85", + "sku" : "Itel-A44-Smart-Phone-8-GB,-1-GB-RAM,-Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Smart-Phones-491419887-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2gzMy9oMDQvODk5MzQwNTU2NzAwNi5qcGd8ODM1Y2Q3YTFhOTUzZTkyZTk0OGY3ZjQ1YzdlNGY0NDA4MzEzN2I5ZGE1OTczZWE1YjI5ZDQ4MTkyMTY3MzEwMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.05" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3b"), + "name" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Black/Chrome", + "description" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Black/Chrome", + "price" : "202", + "sku" : "Nokia-3.1-Smart-Phone-32-GB,-3-GB-RAM,-Black-Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-3.1-Smart-Phones-491420136-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzE3OHxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDc1LzkwMTg5MTk4NDU5MTguanBnfGIxOGI2MzM3NGRjNWNjY2Q4N2EzNjBjZmU4MTFmOTQ1MTIzMjFjZTAzMWE1ZjZiNmVmZmI4MzliODAzMmE2Mzk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6750N Octa-Core 1.5 Ghz" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curved & Sculpted Display
  • Gyroscope for AR Gaming
  • Resolution 18:9
  • Corning Gorilla Glass
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3c"), + "name" : "Samsung Galaxy J4 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Samsung Galaxy J4 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "196", + "sku" : "Samsung-Galaxy J4-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J4-Smart-Phones-491419915-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTM1MXxpbWFnZS9qcGVnfGltYWdlcy9oN2EvaGFiLzkwMDI4NjUxMzE1NTAuanBnfDdiZmI5ZWY2NGYzNWExYjZjNzdkNWE0ODliMjJlZWMwOTUwMGRmNzhkMjAyNjIwNzVhYjJhYTk2NDAyMzhiYTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J4" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 11 hours
  • Internet Usage Time(LTE): Up to 13 hours
  • Internet Usage Time(Wi-Fi): Up to 13 hours
  • Video Playback Time: Up to 18 hours
  • Audio Playback Time: Up to 80 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3d"), + "name" : "Intex Aqua Lions 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "description" : "Intex Aqua Lions 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "price" : "99", + "sku" : "Intex-Aqua-Lions-4G-Smart-Phone-8-GB,-1-GB-RAM,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Lions-4G-Smart-Phone-Grey-491297442-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjk2NHxpbWFnZS9qcGVnfGltYWdlcy9oZDcvaGMzLzg5Mjc1OTM4ODk4MjIuanBnfGJlYTdiMTQ0MGZjOTkzMDFhODBjMmEyZmE1ZWZlNzY5OTUxYmViOWY5ZjBjYmZhYjVjNmJlODc5ZGM5MDA5NGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "Lions 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Upto 350 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: Upto 8 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900Mhz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA(900/2100)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD(B3/5), TDD(B40), FDD-LTE/WCDMA/GPRS/EDGE/GSM" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "146.7" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Android Native" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Handset
  • Battery
  • Screen Guard
  • Protection Cover
  • Flip Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TN" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3e"), + "name" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Blue/Copper", + "description" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, Blue/Copper", + "price" : "202", + "sku" : "Nokia-3.1-Smart-Phone-32-GB,-3-GB-RAM,-Blue-Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-3.1-Smart-Phones-491420137-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODU0NHxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaDUxLzkwMTg5MTkxOTA1NTguanBnfDg4Y2JiMTNiNjkyZGI4YzcwOTNkMTk3NDBhZWFhYjUxZjcyNzVjMTY0YmVlNTkzNGExNTJmY2RiNmZlOTBlZTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6750N Octa-Core 1.5 Ghz" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curved & Sculpted Display
  • \n
  • Gyroscope for AR Gaming
  • \n
  • Resolution 18:9
  • \n
  • Corning Gorilla Glass
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d3f"), + "name" : "Centric G1 Smart Phone 16 GB, 3 GB RAM, Sandstone Black", + "description" : "Centric G1 Smart Phone 16 GB, 3 GB RAM, Sandstone Black", + "price" : "131", + "sku" : "Centric-G1-Smart-Phone-16-GB,-3-GB-RAM,-Sandstone-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Centric-G1-Smart-Phone-Sandstone-Black-491297658-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzgzN3xpbWFnZS9qcGVnfGltYWdlcy9oZTQvaGI2Lzg5NjM1ODI1NTgyMzguanBnfDllMjJmYTNkMDc4YjFkZTMzMDlhYzE3MjI2YmUzNDk2NjM5OGRkYzViZDhmNWZiZDhmYjQ0ZGIyNGU2ODEyYzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sandstone Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "G1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Centric" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "15 hours" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B3|B5
  • \n
  • TDD LTE B40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Cortex A53 Quad Core 64 Bit MT6735 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.895" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Centric", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d40"), + "name" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Black", + "description" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Black", + "price" : "69", + "sku" : "LYF-C459-Smart-Phone-8-GB,-1-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-C459-Smart-Phones-581109213-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODE5MHxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaGJmLzg4NzI1Njg2ODQ1NzQuanBnfDg5YTUyYjM4NTFlODQyMWMxOTlhYzljMTJjYWNjOGZkZmMxZTUzYjU2M2JhYjI0ZDI0NjFiNWJhNGU1Yjc3ZTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "C459" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 160 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 8 hours on 4G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA: BAND1 (2100)/ BAN00448(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: BAND3(1800)/ BAND5(850)
  • TDD: BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core Qualcomm Snapdragon 210 MSM8909" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "139" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Removable Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d41"), + "name" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gray", + "description" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gray", + "price" : "63", + "sku" : "Itel-A44-AIR-Smart-Phone-8-GB,-1-GB-RAM,-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-AIR-Smart-Phones-491551049-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTk4fGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oYzUvOTEyODg2NDQxNTc3NC5qcGd8ZmZkZGRmMTNmYzJlNzkzMTU2NWM2YjRmZjc4ZjAyZGU3YjRjYjRmYTJlMzhiNjAwNWYzNmE3ZGI3NTg5MDcyNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 AIR" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1 (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz 64 bit Quad Core Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d42"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Silver", + "price" : "725", + "sku" : "Apple-iPhone-6s-Smart-Phone-32-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6S-Smart-Phones-491297316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODE3NXxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaDZhLzg5OTM0MjQ5MDAxMjYuanBnfDNkMzI1ODRmODQ2NTFkNTMyY2I0ZTliZDljZThmZGJmYzE4ZWRmYmUyZTAyNjM1ZWYzNGY2NzY0N2Q3YTUzNTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 Days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip with 64-bit architecture Embedded M9 motion coprocessor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dual-domain pixels for wide viewing angles
  • \n
  • Full sRGB standard
  • \n
  • Fingerprint-resistant oleophobic coating on front
  • \n
  • Siri
  • \n
  • 4K video recording
  • \n
  • Face detection
  • \n
  • Touch ID fingerprint sensor
  • \n
  • True Tone flash
  • \n
  • iBeacon micro-location
  • \n
  • Sapphire crystal lens cover
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with 3.5mm Headphone Plug" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d43"), + "name" : "LG K9 Smart Phone 16 GB, 2 GB RAM, Moroccan Blue", + "description" : "LG K9 Smart Phone 16 GB, 2 GB RAM, Moroccan Blue", + "price" : "116", + "sku" : "LG-K9-Smart-Phone-16-GB,-2-GB-RAM,-Moroccan-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMX210IMW-AINDBL-Smart-Phones-491503257-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzExfGltYWdlL2pwZWd8aW1hZ2VzL2hhNi9oNzcvOTA3MzE5MTI4ODg2Mi5qcGd8YmE5OGMwYjQ2NmYxZjAzMmYxZTJiMjM0YWU4NGI2ZjBjZTFjZjkxYTQ0YjkwZTViMzM5ZWMzOWNlZTZjNWY5ZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Moroccan Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "K9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: 900 /1900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 850/1800/2300" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.63" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.32" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d44"), + "name" : "Centric P1 Smart Phone 16 GB, 2 GB RAM, Grey", + "description" : "Centric P1 Smart Phone 16 GB, 2 GB RAM, Grey", + "price" : "116", + "sku" : "Centric-P1-Smart-Phone-16-GB,-2-GB-RAM,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Centric-P1-Smart-Phone-Grey-491297661-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTM1N3xpbWFnZS9qcGVnfGltYWdlcy9oY2YvaGM3Lzg5NjM1ODU1NzI4OTQuanBnfDhjMGZlMmVkMWEyNjdkZjE5ODc4NmE3ZGRmMzZiMTM4YWY0NDVkMGFmOWI2OTFlYzRkZjAwNTA2ODljNDVkMWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "P1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Centric" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3950" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "500 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours (3G)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Cortex A53 MT6737 Quad Core 64Bit Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.963" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Centric", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d45"), + "name" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Red", + "description" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Red", + "price" : "160", + "sku" : "OPPO-A1K-Smart-Phone-32-GB,-2-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-A1K-Smart-Phones-491570666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2hiOC9oZWYvOTEzNzIzNzAzMjk5MC5qcGd8N2YxNzg2NTBhYjdiYzIwNjg5YjRlYjAzYmNlYjYzM2NjYjFkMDgwMzliYzQ5NmJlNGIwM2IyMjY2ZjlkZTRhYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1K" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.5 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK MT6762R" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IMG GE8320 GPU" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d46"), + "name" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "218", + "sku" : "Samsung-Galaxy-J6-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-32-GB-Black-491419859-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzY3MHxpbWFnZS9qcGVnfGltYWdlcy9oMzcvaDc3Lzg5NjA2NzY0NjI2MjIuanBnfGZlZDRiYmVjMzMxYTk5YmRkYTk0Y2M0ZDc3N2MyYTZlMDUwYjlkMzNkNDg0NWI4MDhhZTc1NmZlNDkxNWJhODg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d47"), + "name" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "290", + "sku" : "Samsung-Galaxy-J8-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J8-Black-OC-4-64-6-Mobile-Phones-491420008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjYzOHxpbWFnZS9qcGVnfGltYWdlcy9oOGYvaGI1Lzg5NjA2NTQ0NDI1MjYuanBnfDZjMzc3ODExMDhmNWU3NWY4YTM3Y2YzODU2NTY5ZmUxMzBmNGE0ZGU2Y2Y1ZjUwOWQyZjg3Mjk0ZWQyYzcwYmU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.36 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core Qualcomm Snapdragon 450 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d48"), + "name" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "description" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "price" : "124", + "sku" : "Tecno-KB2-Camon-iAce-2-Smart-Phone-32-GB,-2-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-KB2-Mobile-Phone-491550879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE1OHxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaGYwLzkxMjM1NDY5NTU4MDYuanBnfGM0MDFlZDJiNDg3NmQzNDhiM2U4ZWUxM2FjYmE0YjM5ZGJhOTJlZGFiZWE5YzNkOTE4ZWNhNjI2MjIzNjQyNDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "KB2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iAce 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HiOS 4.1 based on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d49"), + "name" : "Apple iPhone 7 Smart Phone 128 GB, Gold", + "description" : "Apple iPhone 7 Smart Phone 128 GB, Gold", + "price" : "841", + "sku" : "Apple-iPhone-7-Smart-Phone-128-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-128-GB-Gold-491282718-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM0MHxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaGFhLzg5MjcxMzA1NTAzMDIuanBnfGE2N2M1YjBjMWJkOTZhMjlmZDM2ZTJmNmY1NDRiYzQ5NjMzNTljNTQzOTY4ODJhYjNiZmU0MTNjMjRmN2JjNzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4a"), + "name" : "Samsung Galaxy S8+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S8+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "price" : "1160", + "sku" : "Samsung-Galaxy-S8+-Smart-Phone-128-GB,-6-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S8-Smart-Phone-128-GB-Midnight-Black-491297594-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzE4OXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDk4Lzg5NjMzOTA3OTk5MDIuanBnfDQ4ODI4NGJhMTM1MmMzM2E2NzVmMzAzYzU1YzQzN2ZlZjIzZDAwYWM1OTVlN2I3OGEyODY1NTM3MTk1YmIyY2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S8+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad 2.35GHz + Quad 1.7GHz Exynos 8895 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.34" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Samsung Pay" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adaptor
  • AKG Earphones
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4b"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Midnight Black", + "price" : "1015", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-64-GB,-6-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Midnight-Black-491379611-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2hlZS9oMDMvODg4MzU3NjM3MzI3OC5qcGd8NzJiMmQ3MjAyYTYxZTUyOTllOTc5MWJlZGMwNjE4YmM1Njk1NmM4NmQ2NmVmNDc2ZThhOWE4NmQ0YzEyMGFhOA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4c"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "price" : "1073", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-128-GB,-6-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Midnight-Black-491379670-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2g4OC9oYTEvODkzNjIwNzIyMDc2Ni5qcGd8YTAyMTlmMjVjYTg2ZGU2NmIzODc2M2ZjZDNkZGM0YTIzNzEyOTk4MGY3NDY3MjEwMTlkYjZkODAxZWJjZDA0OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4d"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Coral Blue", + "price" : "1073", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-128-GB,-6-GB-RAM,-Coral-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Coral-Blue-491379669-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI5MHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDE5Lzg5MzYyMDc1NDg0NDYuanBnfDQzMjM1M2MzYmY1MTFjNzI0Y2Q2MjEzMGJiMmZiOGMxZTA2NzVlNmVmYzI4ODEyOGFjMjZkNDIwYmEwMDczNjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4e"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Lilac Purple", + "price" : "1073", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-128-GB,-6-GB-RAM,-Lilac-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Lilac-Purple-491379671-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjQ3fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oZTQvODkzNzIwNDUxNDg0Ni5qcGd8MmRmNDNhNWFjOWVmZDdkOWRlOTEzZGRjYWE3MWQ1N2ZiZjIwMjI1Y2Y1OTQwMTg0MWMyMmZhZTU4YTgxZWMyNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d4f"), + "name" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "406", + "sku" : "Samsung-Galaxy-A6-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Plus-Smart-Phone-Gold-491419855-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDAzNXxpbWFnZS9qcGVnfGltYWdlcy9oMDEvaDlmLzg5NjA2OTA4MTUwMDYuanBnfDdmZTlhZDg3NzI1YWM0MzUwNDA5OTBkODMzMjg5NDg0YjFmNmJkZmU2N2I3OGM1YTRlMDcxMDk0ZDUwMTg0YjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 21 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Snapdragon Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.02" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d50"), + "name" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "406", + "sku" : "Samsung-Galaxy-A6-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Plus-Smart-Phone-Black-491419856-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTI2NnxpbWFnZS9qcGVnfGltYWdlcy9oNzMvaDZlLzg5NjA2ODk1Njk4MjIuanBnfGMwNTRjYjIxODFlYzIzMWVjNDNmODMxNGFjNGE0ZjA3N2E4MzI5ZTE0NjFlOGE1M2M1ZjI3NjA5MmRjYjNjYWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 21 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Snapdragon Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.02" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d51"), + "name" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Sunrise Gold", + "description" : "Samsung Galaxy S9+ Smart Phone 128 GB, 6 GB RAM, Sunrise Gold", + "price" : "1073", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-128-GB,-6-GB-RAM,-Sunrise-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S9-Plus-Smart-Phones-491419959-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTM3OHxpbWFnZS9qcGVnfGltYWdlcy9oMmMvaDg5Lzg5OTM0MzA0NzA2ODYuanBnfDA2N2E1OTlkNmE3YmE3ZGM2NDI0ODJjNWNjNTM0MzlkZjk0ZjNlN2I1OTBhOGUxMjE1MzNiMmU1MGJkZmRiYjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sunrise Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 13 hours
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • Internet Usage Time(LTE): Up to 15 hours
  • Video Playback Time: Up to 18 hours
  • Audio Playback Time: Up to 54 hours
  • Audio Playback Time (Always On Display Off): Up to 94 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Talk Time (3G WCDMA): Up to 25 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA: B34(2010), B39(1880)
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38(2600), B39(1900), B40(2300), B41(2500)
  • FDD: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d52"), + "name" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Metallic Copper", + "description" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Metallic Copper", + "price" : "1067", + "sku" : "Samsung-Galaxy-Note9-Smart-Phone-128-GB,-6-GB-RAM,-Metallic-Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Note-9-Smartphones-491420115-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTcwNHxpbWFnZS9qcGVnfGltYWdlcy9oODEvaDhjLzg5OTgyOTIyNTg4NDYuanBnfGU0ZGJkYWMyOTY0OGQ1MTdlZWZlYWQyNjZlZmFkOTI4MWM0OWE4ZTBkNGE5OGUwYjY5ZmNjMjkzNjVhMTljNDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Metallic Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d53"), + "name" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Midnight Black", + "price" : "1067", + "sku" : "Samsung-Galaxy-Note9-Smart-Phone-128-GB,-6-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Note-9-Smartphones-491420114-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njk1N3xpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDJiLzg5OTgyOTMyNDE4ODYuanBnfDM2ZmU3ZGM2MDM0YjgzMzQxMDY4M2MzYjhiNWY2Y2IzZGRhYTEzNDNhMGZkMGQzN2Q4OTM0YzFlNzQ5MTc1ZGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d54"), + "name" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "189", + "sku" : "Nokia-4.2-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-4-2-Black-TA-1152-Smart-Phones-491570749-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzY1NnxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDg3LzkxMzU0NDE3NzI1NzQuanBnfDZjODVmYmY1ZmUwZGYyNmYxMWYyYzM1YTVlNjljZjAwOGEwOGE2ZDk1MDQ3NzNjN2MwODZjZmVhNjVlYjAxMTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.5 cm (5.71 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Music playback time Up to 100 hours (with headset)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "4G: Up to 25 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1, 5, 8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 3, 5, 7, 8, 20, 28, 38, 40, 41 (120 MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 439" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.13" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 13 MP (AF/F2.2/1.12 micrometres) + 2 MP (FF/F2.2/1.75 micrometres) dual primary camera
  • \n
  • LTE Cat 4 - 150Mbps DL / 50Mbps UL" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d55"), + "name" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Pink Sand", + "description" : "Nokia 4.2 Smart Phone 32 GB, 3 GB RAM, Pink Sand", + "price" : "189", + "sku" : "Nokia-4.2-Smart-Phone-32-GB,-3-GB-RAM,-Pink-Sand", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-4-2-Pink-TA-1152-Smart-Phones-491570750-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTU2NHxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaDM3LzkxMzU0NDE0NDQ4OTQuanBnfDNkM2Q2MWY3ODU2NzdjMTVjNzViYWFlZGU2YzdhZWNiN2VlMTUyZTU5Njg0N2Q0ODRjOTVlZGZlZDY1MDliMzQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.5 cm (5.71 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pink Sand" + }, + { + "attributeName" : "Model", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Music playback time Up to 100 hours (with headset)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "4G: Up to 25 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1, 5, 8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1, 3, 5, 7, 8, 20, 28, 38, 40, 41 (120 MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 439" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.89" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.13" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 13 MP (AF/F2.2/1.12 micrometres) + 2 MP (FF/F2.2/1.75 micrometres) dual primary camera
  • \n
  • LTE Cat 4 - 150Mbps DL / 50Mbps UL" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d56"), + "name" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "269", + "sku" : "Samsung-Galaxy-J6-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-64-GB-Gold-491419878-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM2fGltYWdlL2pwZWd8aW1hZ2VzL2hkMy9oNDgvODk2MDY2MzE1ODgxNC5qcGd8Y2MwM2QyZmM1OGYxZDIwYjIzOGU0Zjg4NWZlZjI3ZWZkNTNmNTY4N2E3MTM3MmE5NWU1NWZhMmRmNDVmZDhmYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d57"), + "name" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "341", + "sku" : "Samsung-Galaxy-A6-Smart-Phone-32-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Smart-Phone-Gold-491419852-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Njc3fGltYWdlL2pwZWd8aW1hZ2VzL2hhYS9oYWQvODk2MDY3MDgyNjUyNi5qcGd8OGQ1M2MyZWZiYmYwYjUzNzc5NzJkZjc0ZTZlZWQ0N2Y3YzcyNTFiNTJlNDUyYzIyMGY4MjdiYjAyYWE0MDIzNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 10 hours, Internet Usage Time(LTE): Up to 12 hours, Internet Usage Time(Wi-Fi): Up to 13 hours, Video Playback Time: Up to 16 hours, Audio Playback Time: Up to 70 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 20 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM - GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS - B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d58"), + "name" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Matte Black", + "description" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Matte Black", + "price" : "95", + "sku" : "Itel-A22-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Matte-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A22-PRO-Smart-Phone-491538900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyfGltYWdlL2pwZWd8aW1hZ2VzL2hlYS9oYzIvOTA5NTkzOTE2MjE0Mi5qcGd8MWE1ZGE4MjAyMmNjZTcyZjQ0NzhiNTgxNTkwNTk3MzAwMWM2ZjEzMTk0MmU3Njc1OWMwNjhiMjUwN2NiYWNkNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A22 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "9 Days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "28 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE TDD - 2300 MHz, B40
  • \n
  • LTE FDD-2100/1800/850 MHz B1/B3/B5
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.34" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d59"), + "name" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "232", + "sku" : "Nokia-5.1-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-Smart-Phones-491420139-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjE0OXxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGI3LzkwMTg5MjA1MDEyNzguanBnfGE2NTg0MDNkMjJkZDY3N2UwNWY2NmEzMTRjYmU3MWNhNjNhMDBmMzBjNTJlOTg3ZTk3ODJmZTQ1ODkyMDZhZDM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2970" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 52.7 hours
  • Video playback time: Up to 9.4 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 24.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 19 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6755S Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.11" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.07" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music Playback Time: 52.7 hours
  • \n
  • Durable Aluminum Unibody Design
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5a"), + "name" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Midnight Black", + "description" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Midnight Black", + "price" : "87", + "sku" : "Itel-A45-Smart-Phone-8-GB,-1-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A45-Smart-Phones-491420217-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTI5fGltYWdlL2pwZWd8aW1hZ2VzL2gxZS9oNjMvOTA1NDkxMjY0MzEwMi5qcGd8MDRkZjIwYTY2NDZkZmQ1OTYxMzRkY2ZiZWM3MzRkMDdkZDBkNDIwMTc3ZTEzNjZiODdiNGQ2NGFiNTQyMWI2Ng", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A45" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 2100/1800/850 MHz B1/B3/B5
  • \n
  • TD-LTE: 2300/2500 MHz B40/B41rn
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.08" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5b"), + "name" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Gold", + "description" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Gold", + "price" : "608", + "sku" : "Samsung-A8-Plus-Smart-Phone-64-GB,-6-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A8-Plus-Smart-Phones-491379675-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzc3M3xpbWFnZS9qcGVnfGltYWdlcy9oNmYvaDg3Lzg5ODE2NTkwOTA5NzQuanBnfDI2NzkxMGVjMWU2MjhhOWYyYjEzMDEwODEwN2I1NzkxZWZkOTY4MTdkZmY2NzcxNjE5NTI1ZTFjNzhjZDM3ZmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A8 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 19 hours
  • \n
  • Audio Playback Time: Up to 73 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 23 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B12(700),B13(700),B17(700),B18(800),B19(800),B20(800),B26(850),B28(700),B66(AWS-3)
  • \n
  • TDD LTE: B38(2600),B40(2300),B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2GHz Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.99" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5c"), + "name" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "218", + "sku" : "Samsung-Galaxy-J6-Smart-Phone-32-GB,-3-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-32-GB-Blue-491419857-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjcyfGltYWdlL2pwZWd8aW1hZ2VzL2gwOC9oMzkvODk2MDY4NDg1MTIzMC5qcGd8ZjAwMGE3MTkzZTkzZTk2YmQ0ZDVlNGJmYTE3MDhjN2M5ZDZkOGVjMDlkNTJkZmUyZTFjOTlhNDcwZWEwY2IwOA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5d"), + "name" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Tempered Blue", + "description" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Tempered Blue", + "price" : "232", + "sku" : "Nokia-5.1-Smart-Phone-32-GB,-3-GB-RAM,-Tempered-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-Smart-Phones-491420140-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjE2OXxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaDc0LzkwMTg5Mjk0MTQxNzQuanBnfDE4NmNlMGRmNzdhM2VkMDZhZWI5Y2YyZjJkMDhkODRmZGZiOTg3MWZkZDNiMjgwYzQ5MjY3NjA3ODZjZGMyNWI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Tempered Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2970" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 52.7 hours
  • Video playback time: Up to 9.4 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 24.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 19 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6755S Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.11" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.07" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music Playback Time: 52.7 hours
  • \n
  • Durable Aluminum Unibody Design
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5e"), + "name" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Copper", + "description" : "Nokia 5.1 Smart Phone 32 GB, 3 GB RAM, Copper", + "price" : "232", + "sku" : "Nokia-5.1-Smart-Phone-32-GB,-3-GB-RAM,-Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-Smart-Phones-491420141-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDU4OXxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaGUxLzkwMTg5Mjg0MzExMzQuanBnfDZlZDNhOTQ3MGQ5ODY5MjE1YmFkZDg4OWIxY2I0ZTZmOWJlYmZmYTRjMWE4ZGRkMTU4NjNkNTZlMTJjMGUxMzE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2970" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 52.7 hours
  • Video playback time: Up to 9.4 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 24.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 19 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6755S Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.11" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.07" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music Playback Time: 52.7 hours
  • \n
  • Durable Aluminum Unibody Design
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d5f"), + "name" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Black", + "description" : "Samsung A8 Plus Smart Phone 64 GB, 6 GB RAM, Black", + "price" : "608", + "sku" : "Samsung-A8-Plus-Smart-Phone-64-GB,-6-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A8-Plus-Smart-Phones-491379676-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTMzN3xpbWFnZS9qcGVnfGltYWdlcy9oNjIvaGIxLzg5ODE2NjIxMDU2MzAuanBnfGVlNDk2ODk5NjljOWU5MmEyNTE3MDk3YjY2ZmE0MGZkOTcxYTdmNTJiMjczYmRlNDBiOTYzNGU2MjFjY2U2YmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A8 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 19 hours
  • \n
  • Audio Playback Time: Up to 73 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 23 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100),B2(1900),B4(AWS),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100),B2(1900),B3(1800),B4(AWS),B5(850),B7(2600),B8(900),B12(700),B13(700),B17(700),B18(800),B19(800),B20(800),B26(850),B28(700),B66(AWS-3)
  • \n
  • TDD LTE: B38(2600),B40(2300),B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.99" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d60"), + "name" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "269", + "sku" : "Samsung-Galaxy-J6-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-64-GB-Black-491419879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTA4OXxpbWFnZS9qcGVnfGltYWdlcy9oZTkvaDQwLzg5NjA2NjM0ODY0OTQuanBnfDFiZjZiNWEzOTY4YTc5NjZmNDZkZmQxYWQ5YmYyMGIzYmQ4YjhhNjcxZmUyMzQ0MmUyNjFlZmZiNTY3ZGFmMDE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d61"), + "name" : "Apple iPhone XS Smart Phone 512 GB, Space Grey", + "description" : "Apple iPhone XS Smart Phone 512 GB, Space Grey", + "price" : "1956", + "sku" : "Apple-iPhone-XS-Smart-Phone-512-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-512GB-Space-Grey-491488024-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjYzN3xpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDg0LzkwMjU5OTQ2NTM3MjYuanBnfGM4NTUxOTcxYjQ3OTJjZTIzYTM2ZWVkNTg4ZWUxYzQyYzE0YzQxZDc1MTdmZjFiZWI3ZjBmYzIzZmQ2Nzk1YTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d62"), + "name" : "Apple iPhone XS Max Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone XS Max Smart Phone 256 GB, Space Grey", + "price" : "1811", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-256GB-Space-Grey-491488030-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaGJiLzkwMjU5NjkxNjAyMjIuanBnfDI1MWQ1NjFkNjFhMzE0OTlhM2I0NmI1YWNmM2JjOTgwY2Y3MzFjNjMxMWNiNWIxNjdhZDljNWNhMTEwYWMwZjU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d63"), + "name" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Samsung Galaxy J6 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "218", + "sku" : "Samsung-Galaxy-J6-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-32-GB-Gold-491419858-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjM2fGltYWdlL2pwZWd8aW1hZ2VzL2hkNS9oMzUvODk2MDY3ODgyMTkxOC5qcGd8OTQxZGZlYzI5MDJhNzdiNGY1Njk4Y2Y5ZmIwZTFkOWZlNzQzMDhkMmRkY2ZhYmJiMmYxNjAyYjYzNGE2NmY1NQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d64"), + "name" : "Apple iPhone XS Max Smart Phone 64 GB, Silver", + "description" : "Apple iPhone XS Max Smart Phone 64 GB, Silver", + "price" : "1593", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-64GB-Silver-491488028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDM3NXxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaDM2LzkwMjU5Njk4MTU1ODIuanBnfGJkMWQ3NjRiNTM0MmEzOTA5OTg5MDYyOTc5MTYzZmZlMmZlODk1ZmQ4NzczNDMzYjRkYzU2MmNjYjM2OTk1ZWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d65"), + "name" : "Gionee X1s Smart Phone 16 GB, 3 GB RAM, Black", + "description" : "Gionee X1s Smart Phone 16 GB, 3 GB RAM, Black", + "price" : "208", + "sku" : "Gionee-X1s-Smart-Phone-16-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-X1s-Smart-Phones-491351042-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjE1OXxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaGM1Lzg4ODY0NTk0NjU3NTguanBnfDBiYjA4MzFhMDBiMTJiOWFmZDgyMjBiNzBkODQ3MTQxYTY5MWVjZDViNDlhNDQwMDNhMTljODgxNjVhMDBjNjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "X1s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7. 0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4. 2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1. 5 GHz Mediatek Quad Core Processor" + }, + { + "attributeName" : "Weight", + "attributeValue" : "166" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d66"), + "name" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mystic Purple", + "description" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mystic Purple", + "price" : "276", + "sku" : "Vivo-Y17-Smart-Phone-128-GB,-4-GB-RAM,-Mystic-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y17-Smart-Phones-491570588-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTA0fGltYWdlL2pwZWd8aW1hZ2VzL2gzMy9oZmEvOTEyODk5NTc4MjY4Ni5qcGd8ZTBhNDA3NTg5NmQyMDVhOThlOGVjY2M2MjdkNjZmMGM5NDQ4MWRjZWJiZjQxODVhOGRhOThjZDdlZjgwZWNjZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mystic Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.15 cm (6.35 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE B1/3/5/8
  • \n
  • TDD-LTE B40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Octa-Core Helio P35 (MT6765) Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.94" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rear flash + Front Screen Flash
  • \n
  • 89% Screen-To-Body Ratio
  • \n
  • 19.3 : 9 Aspect Ratio
  • \n
  • Mirror Finish
  • \n
  • AI Super Wide-Angle Camera
  • \n
  • 18W Dual Engine Fast Charging
  • \n
  • Ultra Game Mode
  • \n
  • Capacitive Multi-Touch
  • \n
  • 2.4G + 5G Wi-Fi
  • \n
  • Location: GPS" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d67"), + "name" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Gold", + "description" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Gold", + "price" : "102", + "sku" : "Samsung-Galaxy-J2-Core-Smart-Phone-8-GB,-1-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-Core-Smart-Phones-491420210-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIyMHxpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDk2LzkwMTg5NDgwMjYzOTguanBnfDZkNzg0NDE1OGNkY2M4ZWU1YjY5ZWEyZGIxYjY5NDBlN2NjZjRiNzk1YTM4ZjlmZDk4YTJjNjNmODhhMmZjNzk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • \n
  • Internet Usage Time (LTE): Up to 17 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UTMS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d68"), + "name" : "Apple iPhone XS Smart Phone 256 GB, Silver", + "description" : "Apple iPhone XS Smart Phone 256 GB, Silver", + "price" : "1666", + "sku" : "Apple-iPhone-XS-Smart-Phone-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-256GB-Silver-491420322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzQ1M3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDUwLzkwMjU5OTY2ODUzNDIuanBnfGZjMGFhNTU3ODA4YTE4YmE4MjI2NWYwZDg4OTZjZGZiZjYyOTc4YTM0MWEwNzEyZGYzZWYzMWQwYTBhYTIyZmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d69"), + "name" : "Apple iPhone XS Max Smart Phone 512 GB, Silver", + "description" : "Apple iPhone XS Max Smart Phone 512 GB, Silver", + "price" : "2100", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-512-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-512GB-Silver-491488034-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDM3NXxpbWFnZS9qcGVnfGltYWdlcy9oMDEvaDkzLzkwMjU5NzgwNzMxMTguanBnfDdjMzk0NDU3YmQwN2UxOGY5ODhhMGY3NzcyOGM1NDk5YTBiOTQ1MGUxZmMyYjhiNzE5NGVlMTFiMGU3ZWZhMzk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6a"), + "name" : "Apple iPhone XS Smart Phone 512 GB, Gold", + "description" : "Apple iPhone XS Smart Phone 512 GB, Gold", + "price" : "1956", + "sku" : "Apple-iPhone-XS-Smart-Phone-512-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-512GB-Gold-491488026-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDI2MnxpbWFnZS9qcGVnfGltYWdlcy9oN2IvaGJmLzkwMjYwMDMwNDIzMzQuanBnfDI0MWFhMzkzMjkwOGRlYmYzNzU1M2Y2NTg1YmY5N2Q0NjA1NTc2YjEzMjc3NDVlMGZjMGNiNzgyYTE5YTYxZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6b"), + "name" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "290", + "sku" : "Samsung-Galaxy-J8-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J8-Gold-OC-4-64-6-Mobile-Phones-491420007-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzIwN3xpbWFnZS9qcGVnfGltYWdlcy9oZjkvaDZiLzg5NjA2NTc0NTcxODIuanBnfDA5ZWI3NTA0YzA5YWY0NTQxNTBlNmVkODM1MzE1NGRhYjc2ZjhkMTM2NTM2M2ZmMGJlNzAyZTAyMDY3NWIzZDY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.36 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core Qualcomm Snapdragon 450 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6c"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Gold", + "price" : "759", + "sku" : "Apple-iPhone-7-Smart-Phone-32-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Gold-491282714-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzM0MHxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaDYzLzg5MjcxMTU1NDI1NTguanBnfGYyMGI1ODI2YmIyMWZkMWViMjE4MTUxYzZlMzc5MjJhZTNkMmI2YWIwOWNiNjFhMWRiMTY3YmJiYmM5ODc5YmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6d"), + "name" : "Apple iPhone XS Max Smart Phone 64 GB, Gold", + "description" : "Apple iPhone XS Max Smart Phone 64 GB, Gold", + "price" : "1593", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-64-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-64GB-Gold-491488029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg4NnxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaDVhLzkwMjU5NzQwNzU0MjIuanBnfDFmYjEyNmVlOWIxMTQxMGVjOTQwMDZiYTY2ZDNiNTlhOTBkYWZmNWUyYjhjMWU5YzQ3NzhkYTdlYjJhNmVkMTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6e"), + "name" : "Apple iPhone XS Smart Phone 256 GB, Gold", + "description" : "Apple iPhone XS Smart Phone 256 GB, Gold", + "price" : "1666", + "sku" : "Apple-iPhone-XS-Smart-Phone-256-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-256GB-Gold-491488023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDE3MHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDczLzkwMjU5OTkzNzIzMTguanBnfDU0ODFjYWM2ODc1MjdlZTc1MGZkZTVjYzliOGZkNjU3Yjc5ZjU2ZGNhNjRhNDg2ODg3Yjc0MzQ4MjY1MDk3OTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d6f"), + "name" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, White", + "description" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, White", + "price" : "314", + "sku" : "LYF-Earth-2-Smart-Phone-32-GB,-3-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-Earth-2-Smart-Phone-White-581108220-Package-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDkyMHxpbWFnZS9qcGVnfGltYWdlcy9oM2QvaDg1Lzg4OTAzNzYzNTU4NzAuanBnfGEyYmYyZTAwNWU3ZjNlMWM3MmQzMTMyZWQxYmJhNDgzOThhNzNiZTExZWVmNDZjZjc2OTIyYTEyMmE1OWQ4YWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 480 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 1800/1900/850/900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA Band 1(2100)/Band 8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD Band 3(1800)/Band 5(850)
  • TDD Band 40(2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Non Removable Battery
  • Earphone
  • SIM Card Removing Pin
  • Charger Adaptor
  • USB Cable
  • Quick Service Guide
  • Warranty Card
  • Protective Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d70"), + "name" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "314", + "sku" : "LYF-Earth-2-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-Earth-2-Smart-Phone-Gold-581108219-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzQ1MXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaGY2Lzg4OTAxNjA3MDk2NjIuanBnfDI5YThmZGY4YmM4YTA4YWM3MjA3ODIzYjAzYzIyZmFlZDQ4MDExN2I5ZDg1OWQ2ZjZjY2Q1NDlmYjc3YzNhYTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 480 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 1800/1900/850/900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA Band 1(2100)/Band 8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD Band 3(1800)/Band 5(850), TDD Band 40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IPS LCD display
  • Light Sensor
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Non Removable Battery
  • Earphone
  • SIM Card Removing Pin
  • Charger Adaptor
  • USB Cable
  • Quick Service Guide
  • Warranty Card
  • Protective Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d71"), + "name" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "LYF Earth 2 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "314", + "sku" : "LYF-Earth-2-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-Earth-2-Smart-Phone-Black-581108217-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzA0OXxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaDY2Lzg4OTAxNTgwODgyMjIuanBnfDdlODJhOTVhZGJhNDdkYWMxMjQ2MWE0M2YxYTA0YWZhYjE0OTA3NzkzYmViMzI5ZmQ5NzA3NTU1YTE2OGFiODM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 480 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 1800/1900/850/900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA Band 1(2100)/Band 8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD Band 3(1800)/Band 5(850), TDD Band 40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IPS LCD display
  • Light Sensor
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Non Removable Battery
  • Earphone
  • SIM Card Removing Pin
  • Charger Adaptor
  • USB Cable
  • Quick Service Guide
  • Warranty Card
  • Protective Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d72"), + "name" : "LYF Earth 1 Smart Phone 32 GB, 3 GB RAM, White", + "description" : "LYF Earth 1 Smart Phone 32 GB, 3 GB RAM, White", + "price" : "374", + "sku" : "LYF-Earth-1-Smart-Phone-32-GB,-3-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/581107855-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTc1N3xpbWFnZS9wbmd8aW1hZ2VzL2hiMS9oZDUvODg3NTM3OTQ5MDg0Ni5wbmd8NTllZTdmZDMyMGZjNTA4MmRkYmQxMWNkOWEzMTE2NzdkY2Y3YWUxZmJhNWRlZDVhMzIyZmJmNTQxZDQ4ZjRlZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Earth" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.79 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v5.1.1 (Lollipop)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "HD Video Playback - Upto 9 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 280 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 Hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD BAND3(1800)/BAND5(850), TDD BAND40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Qualcomm Snapdragon 615 MSM8939" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.66" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.72" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Jio chat" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Flash
  • 6x Digital Zoom
  • G-sensor
  • Refocus Mode
  • ChromaFlash
  • OptiZoom
  • Dual Rear Camera (13MP + 2MP)
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earphone
  • Ear Plug Charger Adaptor
  • Quick Service Guide
  • Flip Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d73"), + "name" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Frozen Black", + "description" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Frozen Black", + "price" : "392", + "sku" : "Vivo-V15-Smart-Phone-64-GB,-6-GB-RAM,-Frozen-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15-Black-6GB-64GB-12-8-5MP-32MP-SmartPhone-491550985-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MjcxfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oNzQvOTExNjkxNzgyNTU2Ni5qcGd8ZGFjNGZmNzlmMDM5MmRkN2JkMWI5ZDQ4YWQ0N2FkZjg4M2EyYTYzYmEwMzQ5NTgzNDY1NmU3OGNlZDM1ZGYyNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Frozen Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.59 cm (6.53 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (Based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa-core (4*A73 2.1GHz, 4*A53 2.0GHz) MTK P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.59" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earpieces" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d74"), + "name" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Glamour Red", + "description" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Glamour Red", + "price" : "392", + "sku" : "Vivo-V15-Smart-Phone-64-GB,-6-GB-RAM,-Glamour-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15-Red-6GB-64GB-12-8-5MP-32MP-SmartPhone-491550986-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDY3MXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDM3LzkxMTY5MTQ4NzY0NDYuanBnfDUxNjU1YTk5NjNlYjRlZTBiNTg2YjllNzU3OGEzMzllZmM5NzUyNzI2MDdhMGZkOThmODAxNDQ1ZTIyMWY5YzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glamour Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.59 cm (6.53 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (Based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa-core (4*A73 2.1GHz, 4*A53 2.0GHz) MTK P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.59" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earpieces" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d75"), + "name" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "description" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "price" : "145", + "sku" : "Vivo-Y91i-Smart-Phone-32-GB,-2-GB-RAM,-Ocean-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551056-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDQ4fGltYWdlL2pwZWd8aW1hZ2VzL2g0MC9oYjgvOTEyMzIxMjg1MzI3OC5qcGd8MGNmM2RjNmU5ZWIxZjQ1MzhkN2ZhZGQ4NzczYjJlMTVmZWZkMzM4NzU0NjgyNjUxNGI3NmNlYzZiZWJhNDRjMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation\nmicroUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d76"), + "name" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Starry Black", + "description" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Starry Black", + "price" : "189", + "sku" : "VIVO-Y91-Smart-Phone-32-GB,-2-GB-RAM,-Starry-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91-Smart-Phones-491503536-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODk0fGltYWdlL2pwZWd8aW1hZ2VzL2g4ZS9oOGUvOTEzODQxMDg0ODI4Ni5qcGd8NDZmNGY3MDJmYTczZDgzMDcyMjY2ZmJkZjgyZjk5Y2M5OTAyZWFmNjg5YTE2OTE1NTcyYTliMGJhMGRiZjI1YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Helio P22 (MTK6762R) octa-core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full-incell Display type" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d77"), + "name" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "description" : "VIVO Y91 Smart Phone 32 GB, 2 GB RAM, Ocean Blue", + "price" : "189", + "sku" : "VIVO-Y91-Smart-Phone-32-GB,-2-GB-RAM,-Ocean-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91-Smart-Phones-491503537-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDE2OXxpbWFnZS9qcGVnfGltYWdlcy9oMDgvaDc5LzkxMzg0MTM0Njk3MjYuanBnfDBkODFjYTAzNzkwMTdiMDk2NGJjYzIwZDMxMmMyZGYzMzk4Y2YyMTE4NDYzNzAyZjllZTJiNjhlZTFiMTBlYWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Helio P22 (MTK6762R) octa-core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full-incell Display type" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d78"), + "name" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Gold", + "description" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Gold", + "price" : "176", + "sku" : "Gionee-F103-Pro-Smart-Phone-16-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-F103-Pro-Smart-Phone-Gold-491216764-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjc1OHxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDVjLzg5MjczNTE2Njg3NjYuanBnfGEwNDljNzJhNWUyODY2OWY1ZjkzYmUxMWFlZTA4NzdiYzEyM2UzOWE1MDI5MDBhOGUwN2ZiYzFhNzgxZDgzMDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "F103 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android OS" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "369 Hrs (2G) " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "28.57 Hrs (2G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "900MHz/1800MHz/1900MHz/850MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "900MHz/1900MHz/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE(FDD): B3/B5, TDD:B40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "V4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad Core 1.3 GHz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Gesture (Pause Alarm)
  • Smart Vibration Reminder
  • Mood Wallpaper
  • Eco Mode
  • Child Mode
  • Child Mode
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Transceiver
  • Earphone
  • Travel Charger (2A)
  • Data Cable
  • User Manual
  • Warranty Card
  • Protective Film
  • Transparent Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d79"), + "name" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "312", + "sku" : "Gionee-A1-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Smart-Phone-Gold-491297543-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzE1M3xpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDViLzg5MjY4MTM0MjE1OTguanBnfDQ5ZmE0MTg3M2RlODYyZWFlYjIwMzQ5MDgxNzA2OGMzMjdhZDRiODEyMTQxN2YyYzUyMThiZGYwMDI0YTNkZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4010" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa Core MT6755" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7a"), + "name" : "Micromax Canvas 1 Smart Phone 16 GB, 2 GB RAM, Chrome Black", + "description" : "Micromax Canvas 1 Smart Phone 16 GB, 2 GB RAM, Chrome Black", + "price" : "131", + "sku" : "Micromax-Canvas-1-Smart-Phone-16-GB,-2-GB-RAM,-Chrome-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Micromax-Canvas-1-Smart-Phone-Chrome-Black-491350900-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzE2fGltYWdlL2pwZWd8aW1hZ2VzL2hkOC9oOTcvODkyNzA0MDgzMTUxOC5qcGd8MWIyNjdlNjRhNDU4Yzc0ZDg4YmZkY2RjNGI5ZDVkOThjNWRlYTJkZWUwZjhhMTNkOTQzOTZmNTFkNmFjZTAyNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Chrome Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Canvas" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Micromax" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "7 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "180 hours" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: 40
  • \n
  • FDD 3/5
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "HSPA" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz quad-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Micromax", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7b"), + "name" : "Nokia 5 Smart Phone, Matte Black", + "description" : "Nokia 5 Smart Phone, Matte Black", + "price" : "222", + "sku" : "Nokia-5-Smart-Phone,-Matte-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/8dbf8a3c-bf4d-48f2-b4b6-9a54f9797699-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODMwfGltYWdlL2pwZWd8aW1hZ2VzL2gzMy9oNWQvODg1MDk4MDYwMTg4Ni5qcGd8N2MxMWM4MGI2MzcxNmNlYjY3MmE0YjZiNGE3Yzc4OGM1MmNkNDYyMTk4MjRmNGJlZDYxNmVhMzRiMWYwZWI1Zg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Band 1, 2, 5, 8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Band 1, 3, 5, 7, 8, 20, 28, 38, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.25" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.805" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • Charging/data cable
  • Headset
  • Quick guide
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7c"), + "name" : "Gionee X1 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Gionee X1 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "150", + "sku" : "Gionee-X1-Smart-Phone-16-GB,-2-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-X1-Smart-Phone-491351039-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzU3N3xpbWFnZS9qcGVnfGltYWdlcy9oNTYvaGE4Lzg4OTAwMDk3MTQ3MTguanBnfDMxOTA4ZTk2OGY5NTg0YzI3YjAzZGY4MDkxZGQ3MDY2NjEzNzgyYmE1ZDI2ZTc3NzJkZjc2MTFlN2IxNDA5Yjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "X1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 (Amigo 4.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "482 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "27 Hours" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G VoLTE" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MT6737 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.22" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7d"), + "name" : "LG Q6 Smart Phone 32 GB, 3 GB RAM, Platinum", + "description" : "LG Q6 Smart Phone 32 GB, 3 GB RAM, Platinum", + "price" : "247", + "sku" : "LG-Q6-Smart-Phone-32-GB,-3-GB-RAM,-Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-Q6-LGM700DSK-Smart-Phones-491362207-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDczNXxpbWFnZS9qcGVnfGltYWdlcy9oZTcvaDRkLzg5MjEyNTMxNTA3NTAuanBnfGUwODg5MWRjMzg5MjU5NjE5YWI0OWQ1Y2U0NDhiMWMzNjYzMTcxNmQ5ODM2ZTBiOTIwMGUxMTQ1ZjE2OGY4YzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q6 LGM700DSK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "EDGE/GPRS/GSM 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS 850/900 / 1900 / 2100
  • \n
  • HSPA+ 42/HSUPA 5.7
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE Bands: B3 / B5/ B40/B1/B7/B8/B38/B28/ B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4GHz Octa Core Qualcomm MSM8940 Snapdragon 435 Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7e"), + "name" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "305", + "sku" : "Oppo-F5-Smart-Phone-32-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-F5-Smart-Phones-491351095-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzgwMXxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaGE0Lzg5MjE0NTM1NTk4MzguanBnfDNkMzFhN2RhZDU2NzRjYzViMWRjZTA0NGNjYzc4ZjFhYTA2MWU0YWZkOWFkZTc5MDA5YThhYmMyZmI0MThlNWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "F5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 3.2 (Based on Android 7.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3200" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD B1/3/5/7/8
  • \n
  • TDD B38/39/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6763T Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d7f"), + "name" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Oppo F5 Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "305", + "sku" : "Oppo-F5-Smart-Phone-32-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-F5-Smart-Phones-491351096-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzkxM3xpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDQzLzg5MjE0NTQ1NDI4NzguanBnfGUyYTBiZGNmMDg3Yzg4MDdhZWRiYzdjYjg3NzJiMmViMDU5MmEwNDUxYTFkYjYxOGJkNGZmZGRmYTE2ZDA1YTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 3.2 (Based on Android 7.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3200" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1901" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/9" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD B1/3/5/7/8
  • \n
  • TDD B38/39/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6763T Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d80"), + "name" : "VIVO V7 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "description" : "VIVO V7 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "price" : "290", + "sku" : "VIVO-V7-Smart-Phone-32-GB,-4-GB-RAM,-Matte-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V7-Smart-Phone-Matte-Black-491351094-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTA0fGltYWdlL2pwZWd8aW1hZ2VzL2hmNS9oY2QvODg5MTkxNzMzNjYwNi5qcGd8NDI1OWUyNTgxYzczZjM5MTMwZWYwYzk0ZGNiY2JhMTUxYzE1MTYzYThlMjMzOGM5NGE2YzM3NTEyY2I2NmIxYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "V7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 3.2 (based on Android 7.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (2/3/5/8)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands (1/5/8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: (1 / 3 / 5 / 8)
  • \r\n
  • TDD: (38/40/41)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Octa-core Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.28" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "139" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Google Duo" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • XE100 with Remote and Mic
  • Documentation
  • microUSB to USB Cable
  • USB Power Adapter
  • SIM Ejector
  • Protective Case
  • Protective Film (applied)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d81"), + "name" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "348", + "sku" : "VIVO-V9-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V9-Mobile-Phone-Gold-491379631-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4OXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDJkLzg5Nzg2Mzg3MDA1NzQuanBnfDIxNTM0YjcxMjI1NjBiZmZmY2ZkY2M4YzYxNzc1ZWUwYzhhNmM1YzNlMDQ3MWU0OGVmNTI4ZmQzN2I0NmY1OTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "V9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 ( Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (3 / 5 / 8)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: (1 / 5 / 8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: (1 / 3 / 5 / 8)
  • TDD-LTE: 38/40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 626" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.481" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.503" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.789" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • USB Cable
  • Earphone
  • Protective Case
  • Quick Guide
  • Warranty Card
  • SIM eject tool
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d82"), + "name" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Red", + "description" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Red", + "price" : "334", + "sku" : "OPPO-F7-Smart-Phone-64-GB,-4-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-64-GB-Red-491379642-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI3MnxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaGFkLzg4OTU2MDI5NTAxNzQuanBnfDIxMTAxOGJiM2NmM2Q2NGI4YzhjNjY5NTBlYmFmNzRkNjgwYjQ1MTA5NWEwMmUxYjJhNGFmNjViZDVkODcwNTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \r\n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-core MTK P60 processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d83"), + "name" : "LG Q6+ Smart Phone 64 GB, 4 GB RAM, Ice Platinum", + "description" : "LG Q6+ Smart Phone 64 GB, 4 GB RAM, Ice Platinum", + "price" : "290", + "sku" : "LG-Q6+-Smart-Phone-64-GB,-4-GB-RAM,-Ice-Platinum", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LGM700DSK-Mobile-Phones-491362209-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTU0M3xpbWFnZS9qcGVnfGltYWdlcy9oNjIvaGViLzg4OTcyNDQwMDQzODIuanBnfDllYjQyNTgwODJiOWJhMjY3YTUyZDRjM2Y4NTlmYjU0NDAwYTZiZTc3MzVlZjk1NWQzNTUxMDc1NzI3YjgxOTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ice Platinum" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q6+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850/900/1800/1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMT: 850/900/1900/2100 MHz
  • HSPA+: 42
  • HSUPA: 5.7
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B3/B5/ B40/B1/B7/B8/B38/B28/ B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 2 TB" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64 GB" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Qualcomm MSM8940 Snapdragon 435 octa core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d84"), + "name" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Silver", + "description" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Silver", + "price" : "334", + "sku" : "OPPO-F7-Smart-Phone-64-GB,-4-GB-RAM,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-64-GB-Silver-491379643-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjE4M3xpbWFnZS9qcGVnfGltYWdlcy9oY2IvaGVhLzg5MDU1MjEwNzAxMTAuanBnfGRkMDQ4ZmI4NGNjMjVmMjRkZGIwMGJjMGQyMjJlOWZhODQ3YTgzNjUxYjA0ODQyZmQyOWRlZGYzYTVkNDA3ZjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \r\n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz octa-core MTK P60 processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d85"), + "name" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Diamond Black", + "description" : "OPPO F7 Smart Phone 64 GB, 4 GB RAM, Diamond Black", + "price" : "334", + "sku" : "OPPO-F7-Smart-Phone-64-GB,-4-GB-RAM,-Diamond-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-64-GB-Diamond-Black-491379644-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTQ5MHxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaGVjLzkwMTYzNDU2NTczNzQuanBnfDYwZTQwOWFlNDliZTNhNmNlYjQzMTFmNTM4ZDk0YTIyZGFjOWEwYjQwNmRmOGNjYWVjZTEwMjRjNTJiYzY2YWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz octa-core MTK P60 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Light Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d86"), + "name" : "Oppo A71 CPH1801 Smart Phone 16 GB, 3 GB RAM, Black", + "description" : "Oppo A71 CPH1801 Smart Phone 16 GB, 3 GB RAM, Black", + "price" : "160", + "sku" : "Oppo-A71-CPH1801-Smart-Phone-16-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A71-CPH1801-Mobile-Phone-491362577-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzI4MHxpbWFnZS9qcGVnfGltYWdlcy9oNDgvaGU3Lzg5MjIxODAzNTQwNzguanBnfGRkZjFiNDUxODg3ZWJiMGFjMDZjNzA4NGMyM2Y4ZWZiMTJlYTI0MGIwZmUxZTg2YTM3MjA5ZTU3ZTUxMTg3ODI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "OPPO A71-CPH1801" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 3.2 Based on Android 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MSM450 snapdragon octa core processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "136" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d87"), + "name" : "OPPO F7 Smart Phone 128 GB, 6 GB RAM, Red", + "description" : "OPPO F7 Smart Phone 128 GB, 6 GB RAM, Red", + "price" : "406", + "sku" : "OPPO-F7-Smart-Phone-128-GB,-6-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F7-Smart-Phone-128-GB-Red-491379645-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI3MnxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaDExLzg5MzQxOTM4NTY1NDIuanBnfGE5Y2RlZDJmMmJhYjdiOTBiZDRhMzgxZWJlOGFlODhhMTI3ZWEwYTQ2MjYzY2JlMzg1MjkzYmEyNTNjMDNkZjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.82 cm (6.23 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.0 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Bands 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \r\n
  • TD-LTE: Bands 38/40/4
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-core MTK P60 processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adapter
  • Headset
  • Micro USB Cable
  • Important Information Booklet with Warranty Card
  • Quick Guide
  • SIM Card Tool
  • Screen Protect Film
  • Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d88"), + "name" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Pearl Black/Gold", + "description" : "VIVO V9 Smart Phone 64 GB, 4 GB RAM, Pearl Black/Gold", + "price" : "348", + "sku" : "VIVO-V9-Smart-Phone-64-GB,-4-GB-RAM,-Pearl-Black-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-VIVO-V9-Smart-Phones-491379776-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjc2MnxpbWFnZS9qcGVnfGltYWdlcy9oYTYvaGUxLzg5ODE2OTE5OTAwNDYuanBnfDQ4MjU1ZWQ0NTJjMjA2MWM4OWViZjQ0MTkwZGFkODEzODA1ZTY4NjJiYzM2MzhmZWE1YzhhNzdlZDkwN2RkZjY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pearl Black/Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "V9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 ( Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/3/5/8
  • \n
  • TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 626 Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earphones
  • Documentation
  • microUSB to USB Cable
  • USB Power Adapter
  • SIM Ejector
  • Protective Film (applied)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d89"), + "name" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "247", + "sku" : "Oppo-A83-(2018)-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-CPH1729-Smart-Phones-491379677-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzM2M3xpbWFnZS9qcGVnfGltYWdlcy9oMzkvaDM0Lzg5NzgzNTg5NjAxNTguanBnfDdkODMyOTEzNjk5Zjg2N2ZiZTkyOGM3Zjc5ZDg5MTJjY2YzZDVlMWI3YmQ3ZDAyNjMwZjM5NTA4MjY1MGFjNmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A83" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3180" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "13 hours 30 mins" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD B1/3/5/7/8/20/28 TDD B38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6763T Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.31" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • ARM Mali G71 MP2 770MHz GPU
  • \n
  • Multi-touch" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8a"), + "name" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Black", + "description" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Black", + "price" : "174", + "sku" : "VIVO-Y71-Smart-Phone-16-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491379708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzQzN3xpbWFnZS9qcGVnfGltYWdlcy9oNjAvaDVlLzg5ODE2NTcwNTkzNTguanBnfDVjOGI3MDg3MjU3NWI1YTMxNzA2Zjg2ZjAxNTE0Yzk0Y2I1ZmRhYmZlNmIxNjM2ODliMTA0MDE2ZDM3M2NkNDM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE:B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425 processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8b"), + "name" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Gold", + "description" : "VIVO Y71 Smart Phone 16 GB, 3 GB RAM, Gold", + "price" : "174", + "sku" : "VIVO-Y71-Smart-Phone-16-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491379707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjcyM3xpbWFnZS9qcGVnfGltYWdlcy9oZWUvaGViLzg5ODE2NjExMjI1OTAuanBnfDk0ZGNjYjVmMjcxNGFmNzZmOWE4NDZhYWQwNTY2NGY3MzZlYTE3Mzk3ZTM2MDUyMTRhOTY1MGJmZTc4NWU5ZDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE:B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8c"), + "name" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Oppo A83 (2018) Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "247", + "sku" : "Oppo-A83-(2018)-Smart-Phone-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A83-Smart-Phones-491379679-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODk3M3xpbWFnZS9qcGVnfGltYWdlcy9oYTkvaDg5Lzg5OTM0MTQwODY2ODYuanBnfDE1ZjdlM2UwNzU3NTAwZTRiNTkwYjM1ZjA3MjQwNTc2YmZlMWRkMDZhZDc4ZWZiZjBiZDgzYThkZDg0Y2ZjMDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A83 (2018)" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3180" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: (B1/5/8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: (B1/3/5/8)
  • TDD: (B38/40/41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6763T" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.31" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8d"), + "name" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "description" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Matte Black", + "price" : "203", + "sku" : "Vivo-Y71-Smart-Phone-32-GB,-4-GB-RAM,-Matte-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491419865-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDc2NnxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaGU3Lzg5OTM0NTIwOTc1NjYuanBnfDE0NTgyNGE3YzIyOTczZGU1YTViMGQ3ZDlmOTlmMDJmZmE5MDRlYzUxMWM4N2Y5NzY2OGI5ZTBmMmU0M2I3ODg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38/40/41
  • FDD: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.58" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8e"), + "name" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Champaign Gold", + "description" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Champaign Gold", + "price" : "102", + "sku" : "Itel-A44-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Champaign-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Pro-Smart-Phones-491419891-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTA0OXxpbWFnZS9qcGVnfGltYWdlcy9oNGMvaGE0Lzg5OTM0MTY3MDgxMjYuanBnfGM3YmYwNjUyODE4ZTY0MmNkNjliOWYyNGJhMGRhM2U0ZWY0MzBkMjYxYjZhYmMwMWRmMGRmNmVmNzBiY2IzNDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champaign Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: 2300/2500 MHz B40/B41
  • \n
  • FDD: 2100/1800/850 MHz B1/B3/B5
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d8f"), + "name" : "Vivo Y83 Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Vivo Y83 Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "232", + "sku" : "Vivo-Y83-Smart-Phone-32-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y83-Smart-Phones-491419873-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDM4NHxpbWFnZS9qcGVnfGltYWdlcy9oYWEvaDEwLzg5OTM0NjE2MDAyODYuanBnfDRjNWQzOWJiZWFjMjM5MTk3MTkxNjk5Njg2ZTE5MDkyZDBhMTgzMGI1YWFiMDc1OGI0OWI0OGQ3N2Q2YjY2MTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y83" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/B3/B5/B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/3/5
  • TDD: B38/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Mediatek Helio P22 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.52" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d90"), + "name" : "Vivo V9 Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "description" : "Vivo V9 Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "price" : "348", + "sku" : "Vivo-V9-Smart-Phone-64-GB,-4-GB-RAM,-Sapphire-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V9-Smart-Phones-491419863-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTMyMnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDZkLzg5OTM0NDQ4ODg2MDYuanBnfGYxNDMyZmJmYWFlNDY3ZjExYzliMTk3ZjU2ZTk2Y2MyYTIzZmU0YTYxN2M3MTMxNzIwNDRkMGNlNThlMTMwYTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sapphire Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 ( Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/3/5/8
  • TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 626 Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d91"), + "name" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "232", + "sku" : "Vivo-Z10-Smart-Phone-32-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Z10-Smart-Phones-491419990-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzM5OXxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDEzLzg5OTg0NzU3NTk2NDYuanBnfGQ5MzJiMTg3NTI5ZTcxNWM5ZWZjM2U4NzI5NzM3MzY5N2UzYjdhYzNhYmYwMjZjNTk0OGVkYWZhMWYwMTVlYTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Z10" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3225" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Octa-core 64-bit" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d92"), + "name" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Dark Purple", + "description" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Dark Purple", + "price" : "174", + "sku" : "Oppo-A3s-Smart-Phone-16-GB,-2-GB-RAM,-Dark-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420029-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTg4NXxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDY2LzkwMDc2NDUzMjczOTAuanBnfGFiZDkzODRkZWQ2ZjkyYWQ5NTdjMTY4ZDVlNTZlZWUxMDdlNDUwYWNlZDVhNmU3YmJkNTBmNmRkNzEyMjE2OGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d93"), + "name" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Dazzling Gold", + "description" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Dazzling Gold", + "price" : "392", + "sku" : "Vivo-V11-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Dazzling-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/vivo-v11-pro-Gold-Smartphones-491420226-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzgxOXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDg5LzkwMjY3OTk1NjY4NzguanBnfDJiODA2MThmMGMyNGU3Yjg2OWU2M2MwY2IzYjE2ODJmZGU1NDUwYTg3MGQ5NGQxNWIyYTM3YjMzNTU0M2UxMGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dazzling Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11 pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.28 cm (6.41 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android Oreo 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/7/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 660AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d94"), + "name" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Twilight Blue", + "description" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Twilight Blue", + "price" : "377", + "sku" : "OPPO-F9-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Twilight-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F9-Pro-Blue-Smartphones-491420189-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzM0OHxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaGVmLzkwMTI1NzEwMTMxNTAuanBnfGU4YzY1Y2JmNmU0ZDhhZDIzNzIzODkzN2YxODhkMTE5ZTZmZDdiODBmNzRjMzMzMDQwMTU5YTAyYjYwMGY3NmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Twilight Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d95"), + "name" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "145", + "sku" : "Vivo-Y71i-Smart-Phone-16-GB,-2-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71i-Mobile-Phones-491420052-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDgzNHxpbWFnZS9qcGVnfGltYWdlcy9oMTkvaGZiLzkwMTU3NDI5MjI3ODIuanBnfDI5ZTgzOWI2OGRiNzQ5NTA3NmU4YmRjMGU1YzkzZjU1ZDI0MDM1ZDc4OWY4NmUyNjk4MTRkOWRhNWM2ODcwZjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE: B38/40/41
  • \n
  • FDD LTE: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d96"), + "name" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Matte Black", + "description" : "Vivo Y71i Smart Phone 16 GB, 2 GB RAM, Matte Black", + "price" : "145", + "sku" : "Vivo-Y71i-Smart-Phone-16-GB,-2-GB-RAM,-Matte-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71i-Mobile-Phones-491420053-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQzNnxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaGZjLzkwMTU3NDQyMzM1MDIuanBnfDk2NTY3MWRiODQ5YjI4Zjg3MzBiMDU2ZjlkYWJjNWE0OTA2Yzc3YTQxNWIwZmY2OGM3OTYwMDNhNWJkNDNlZjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matte Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE: B38/40/41
  • \n
  • FDD LTE: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d97"), + "name" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "247", + "sku" : "Vivo-Y83-Pro-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y83-Pro-Mobile-Phones-491420157-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODQxNXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaGRlLzkwMTU3NTM4MDE3NTguanBnfDg3ZGI2MmE5NTMxMDlkODAxMGJlZTNhYWEzNjU3OWI2ZTIyYjZkNDVhNmExZWE0ZGRkYjBlOWUwYzhhOWM2MWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y83 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/B40/B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6762 (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d98"), + "name" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Red", + "description" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Red", + "price" : "232", + "sku" : "Oppo-A5-Smart-Phone-32-GB,-4-GB-RAM,-Diamond-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A5-Mobile-Phones-491472934-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODIxMHxpbWFnZS9qcGVnfGltYWdlcy9oNmIvaDQ0LzkwMTU3NDg4MjEwMjIuanBnfGM2MzQxMTI5YmI5NDVmM2ZhZWM2YmIyMWMyNzJmZTc3YzdjOTc1OTk1MzRmMzY2OWRlMDdmNDA2YTlmOWYyYWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TD LTE: 38/40/41 (2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d99"), + "name" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Blue", + "description" : "Oppo A5 Smart Phone 32 GB, 4 GB RAM, Diamond Blue", + "price" : "232", + "sku" : "Oppo-A5-Smart-Phone-32-GB,-4-GB-RAM,-Diamond-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A5-Mobile-Phones-491472935-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjcyOXxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaDdiLzkwMTU3NDgyMzExOTguanBnfGVlN2I4ZmUyNzI4OGY4MjQ3YmFkNmRlY2UxNDA2MDdjNzlhM2I2NDNlYjYxYTRkZTRmZWY2ZTIwNTgwMzU0OTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TD LTE: 38/40/41 (2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9a"), + "name" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Vivo Z10 Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "232", + "sku" : "Vivo-Z10-Smart-Phone-32-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Z10-Mobile-Phones-491419991-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjg1N3xpbWFnZS9qcGVnfGltYWdlcy9oNDgvaDgyLzkwMTU3ODg1MzU4MzguanBnfDZmYmUxNWNiYzQ5MTEyMjE2OTFiOWYwYzQ3NjMxY2M4ZThhYzk1YmI2MjVkZDJhMjRiM2NhYTU2NDgzNjEzYmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Z10" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 (N)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3225" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Octacore 64-bit" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 2.15 mm narrow bezel" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9b"), + "name" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "203", + "sku" : "Vivo-Y81-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y81-Smart-Phones-491420062-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODQ3NXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDc0LzkwMTg5MzcxNDc0MjIuanBnfDczOGUzYTQ3OWE2OTIyYmIwNmFkN2U1ZWZkOTE1MDQ0N2I0MmU4MzYzNDVlNjJiYzdjNTRkN2U0M2I0M2M2NzA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y81" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6762 Octa Core (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9c"), + "name" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "203", + "sku" : "Vivo-Y81-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y81-Smart-Phones-491420063-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODkxOHxpbWFnZS9qcGVnfGltYWdlcy9oMWYvaDI1LzkwMTg5Mzc0NzUxMDIuanBnfGQ2NmUxYTlmY2MzYmEyZGY4ZTZmMWFhYWY3NDExYmU0NWMyMjQ0NWQwOTUxNWYxMDFiMTU1YjJkZGZlYjRkOTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y81" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6762 Octa Core (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9d"), + "name" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Champagne Gold", + "description" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Champagne Gold", + "price" : "218", + "sku" : "Tecno-Camon-iClick-IN6-Smart-Phone-64-GB,-4-GB-RAM,-Champagne-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN6-Smart-Phones-491419900-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzYyfGltYWdlL2pwZWd8aW1hZ2VzL2g0NS9oMzcvOTAzMTY3OTUwODUxMC5qcGd8YTIyNTU2N2YzOTQyNDFhYzA0MjE3ZTUyMzc1NTVmNzA1MDE0Yjk1ZGRiOGI1NjczZGI3ODMzMGE2M2Y2YjczNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN6" + }, + { + "attributeName" : "Series", + "attributeValue" : "iClick" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/B3/B5/B8
  • \n
  • LTE TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9e"), + "name" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "description" : "Tecno Camon iClick IN6 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "price" : "218", + "sku" : "Tecno-Camon-iClick-IN6-Smart-Phone-64-GB,-4-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN6-Smart-Phones-491419901-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODMzfGltYWdlL2pwZWd8aW1hZ2VzL2hmOS9oMGIvOTAzMTY4MDE2Mzg3MC5qcGd8MDNlNTgyZmViMmQ3MjgzNWJlMWY5MDVlOWU5ODEwYTcwMThmNGIwNGFmNGIwMWJkMTFkN2NjNDQyMzM5MjIyMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN6" + }, + { + "attributeName" : "Series", + "attributeValue" : "iClick" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/B3/B5/B8
  • \n
  • LTE TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637d9f"), + "name" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "189", + "sku" : "Tecno-Camon-iTwin-IA5-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Twin-IA5-Smart-Phones-491420216-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTc2NnxpbWFnZS9qcGVnfGltYWdlcy9oNTcvaDIxLzkwNDM3ODIxMzk5MzQuanBnfGNmZjA1Njg0NGRhNDVlMmYwZjBkN2E2Y2I4NjNjZWRjMWMxYjU2NjFjMDYxYThiZjEyZTI3NzRkYmM0ZTMyZDE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IA5" + }, + { + "attributeName" : "Series", + "attributeValue" : "iTwin" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MSM8917 Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.63" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da0"), + "name" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Tecno Camon iTwin IA5 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "189", + "sku" : "Tecno-Camon-iTwin-IA5-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Twin-IA5-Smart-Phones-491420215-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzI5OXxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDg5LzkwNDM3ODE4MTIyNTQuanBnfDdmNDYwZTdlNWM3ZjY4MDI4NWY3MmM0NTBjNzQxNTFlMDgyZGNiNTg1OTIwZDY2NjA5NTZlOTUwNGM0Y2Q5YmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IA5" + }, + { + "attributeName" : "Series", + "attributeValue" : "iTwin" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MSM8917 Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.63" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da1"), + "name" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "124", + "sku" : "Tecno-Camon-iSky-IN2-Smart-Phone-16-GB,-2-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Sky-IN3-Smart-Phones-491419899-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTQyM3xpbWFnZS9qcGVnfGltYWdlcy9oZDYvaDM1LzkwNDM5Mzk2ODg0NzguanBnfGFhOTk4Y2M4MWZiYWQxNzg4YmJlYTYzYTI0ZTJhZjk1ZGQ2Yjc2YWIyZGM3NDViMmY4ZDAzNWRhNTZhNmE2NTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da2"), + "name" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaring Gold", + "description" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaring Gold", + "price" : "276", + "sku" : "Oppo-A7-Smart-Phone-64-GB,-4-GB-RAM,-Glaring-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smart-Phones-491503393-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTY5fGltYWdlL2pwZWd8aW1hZ2VzL2g3NC9oMDMvOTA3OTgxMzE3NzM3NC5qcGd8MDdlYzk0NWFiZWI3NTIwNWUzODU3ZGRhZjc0NmIwYTNmZmZhY2IyZjM3YWRjNGY1N2E5NDBhNTY1ZmRlMGRhZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaring Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TD-LTE: 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da3"), + "name" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaring Gold", + "description" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaring Gold", + "price" : "247", + "sku" : "Oppo-A7-Smart-Phone-64-GB,-3-GB-RAM,-Glaring-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smartphones-491503525-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzA3fGltYWdlL2pwZWd8aW1hZ2VzL2gyZS9oOTYvOTA5MzQ1NjU5MjkyNi5qcGd8Yjg4Y2UxOTQwNDY2YTVhMzA3Y2NhNTFiMTA1MGJlNzFmOWE4ZjE5ZTQzMGYzODBlZWFmMmUzOTdmNzJhNzEzNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaring Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "410 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "32 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/3/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da4"), + "name" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "price" : "256", + "sku" : "Nokia-6.1-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Midnight-Gloss-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5-1-PLUS-Smartphones-491503532-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzgwfGltYWdlL2pwZWd8aW1hZ2VzL2hmMC9oZjcvOTA5Mzg4MDU3ODA3OC5qcGd8ZjgyMTU0ZmQ1NDU5ZTdlMjVkNTUwMGI0OWIyZmFiMTc3NTQ5NzNhOTBkNzIyZmNmNTgwNjMzMzk1MDUyZGUxMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "6.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 9.5 hours
  • \n
  • Video playback time: Up to 9 hours
  • " + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 14.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto 20.5 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B850/900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/8
  • \n
  • TDD: 40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da5"), + "name" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Midnight Gloss Blue", + "price" : "192", + "sku" : "Nokia-5.1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Midnight-Gloss-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-5-1-PLUS-Smartphones-491503530-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODI4fGltYWdlL2pwZWd8aW1hZ2VzL2g1NC9oYjMvOTA5Mzg3MzA0MTQzOC5qcGd8MzM1YzNhODMwOTA2ZmUyNmE3YTNiNjAzZmM3MGJmNmJhMTU1OGI5ZmQ4YTAzYTA2NjdkMTYyNThkNjc2MjM3OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "TDD: B40/41" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes - Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da6"), + "name" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss Black", + "description" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss Black", + "price" : "192", + "sku" : "Nokia-5.1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Gloss-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-5-1-PLUS-Smartphones-491503529-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjY1fGltYWdlL2pwZWd8aW1hZ2VzL2gwOC9oZTkvOTA5Mzg3MjcxMzc1OC5qcGd8ODk1ZTE4MTVhZTk4ZDk1MmQ1NDNhYTZjZDNkMmQ2ZmJiOGNhYjcyNjhkNDdkYWE2ZDlhOWVhMWMxZDllODQ5Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "TDD: B40/41" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes - Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da7"), + "name" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "description" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "price" : "256", + "sku" : "Nokia-6.1-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Gloss-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-1-PLUS-Smartphones-491503533-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTc4fGltYWdlL2pwZWd8aW1hZ2VzL2hmYS9oZWMvOTA5Mzg4MDkwNTc1OC5qcGd8MDA5YzJmYjRmNGZlOGZhZWFkYzE4ZjM5MTZjNzViMWFmMzAxMzZiMmRmYjVlOTY2NGMyZWFlMzA5MDdkZThkOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "6.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 9.5 hours
  • \n
  • Video playback time: Up to 9 hours
  • " + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 14.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto 20.5 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B850/900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/8
  • \n
  • TDD: 40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da8"), + "name" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A6 Plus Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "406", + "sku" : "Samsung-Galaxy-A6-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Plus-Smart-Phone-Blue-491419854-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjMxNnxpbWFnZS9qcGVnfGltYWdlcy9oYTkvaGFmLzg5NjA2ODc1MzgyMDYuanBnfDlhODhiNDMyMzY3YmRhNjJmMmJhNjg0ZmIxY2YwMDIwYzY4ZjA5ODZmZjQxOGRjOTA5NDVlYjgzZTE3ZTgwM2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 21 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Snapdragon Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.02" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637da9"), + "name" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Matt Black", + "description" : "Vivo Y81 Smart Phone 32 GB, 3 GB RAM, Matt Black", + "price" : "203", + "sku" : "Vivo-Y81-Smart-Phone-32-GB,-3-GB-RAM,-Matt-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y81-Smart-Phones-491420130-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njk0N3xpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDRiLzkwMTg5MzY3NTQyMDYuanBnfDVhYWFlYWVlZmU2MTYzZGVkZjllOTJjNTIyZjA4OTMwMGYzZmU3N2RmZTkzMTUyOTY4MThhMWM2MjVlOGVhODU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Matt Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y81" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6762 Octa Core (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637daa"), + "name" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Supernova Red", + "description" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Supernova Red", + "price" : "392", + "sku" : "Vivo-V11-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Supernova-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V11PRO-Smart-Phones-491503384-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTYzfGltYWdlL2pwZWd8aW1hZ2VzL2gxNC9oNDgvOTA3OTgxMzgzMjczNC5qcGd8YjRiMDQ0NjkzNzY5NmU1NmIxOTlkNDRjNjc2MmJjNjNmNjI4OTU4NWU5MmI2MTBlMjc5NzMxZTBkZDc3NjdhNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Supernova Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.29 cm (6.41 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/7/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 660AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dab"), + "name" : "Apple iPhone XS Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone XS Smart Phone 64 GB, Space Grey", + "price" : "1448", + "sku" : "Apple-iPhone-XS-Smart-Phone-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-64GB-Space-Grey-491420318-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjYzN3xpbWFnZS9qcGVnfGltYWdlcy9oMDAvaDhjLzkwMjU5ODg0Mjc4MDYuanBnfGJjMzM5Nzg3OTc3Mjg1N2JkMTk4ZTE0YzE5MjI4MGFjMWFjNDMxZGM1ODExNDVlNzAzOWM2ZmZhZDAzM2JkYWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dac"), + "name" : "Apple iPhone XS Smart Phone 64 GB, Gold", + "description" : "Apple iPhone XS Smart Phone 64 GB, Gold", + "price" : "1448", + "sku" : "Apple-iPhone-XS-Smart-Phone-64-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-64GB-Gold-491420320-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDMyNHxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaDRhLzkwMjU5ODYwNjg1MTAuanBnfDdmZTNiZTk2YTFlY2ZkOWQ1NzRhMmQ3OGY2ZWQ4YzQ1N2Q2ZWIzMDRlNTM3OWZmOTJmYzlmMGY1ODNjYjJmZmE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dad"), + "name" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Aurora Green", + "description" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Aurora Green", + "price" : "435", + "sku" : "OPPO-F11-Pro-Smart-Phone-128-GB,-6-GB-RAM,-Aurora-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F11-PRO-Smart-Phones-491570772-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjU1fGltYWdlL2pwZWd8aW1hZ2VzL2gwZC9oY2QvOTE0MjMyNjMyOTM3NC5qcGd8MDY4ZDExNDc0ZjhmNDBmODU4MmNjYWUwODZjZGVjNDgwZjk4MDY0NmFlNDM2NWYyN2RiNzYxOTRiNzFhYzM4MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.5 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Green" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6 (based on Android 9)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Audio Playback: Up to 118.7 hours
  • \n
  • Video Playback: Up to 12 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "
  • GSM: Up to 36 hours
  • \n
  • WCDMA: Up to 26.7 hours
  • " + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz MediaTek Helio P70 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 16 million colors" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dae"), + "name" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Topaz Blue", + "description" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Topaz Blue", + "price" : "508", + "sku" : "VIVO-V15-Pro-Smart-Phone-128-GB,-8-GB-RAM,-Topaz-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V15PRO-Smart-Phones-491570742-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDY5fGltYWdlL2pwZWd8aW1hZ2VzL2hiMi9oOWUvOTE0MjMzMTI0NDU3NC5qcGd8NzcyYTNhMmVjN2Q0ZDI3ZTY1YjhjOWE1MTM3ZmVkNzE1MjU5ZGFjYzgzYjk5MmJkZjYxYzM2ZjY5N2VmYTc1Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Topaz Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/3/5/8
  • \n
  • LTE TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • AI Triple Camera Shoot Like a Pro
  • \n
  • 48 Million Quad Pixel Sensor Capture the Night
  • \n
  • Ultra FullView Display Unhindered Vision
  • \n
  • Spectrum Ripple Design Stand Out from the Crowd
  • \n
  • Ultra-Smooth Gaming" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637daf"), + "name" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Ruby Red", + "description" : "VIVO V15 Pro Smart Phone 128 GB, 8 GB RAM, Ruby Red", + "price" : "508", + "sku" : "VIVO-V15-Pro-Smart-Phone-128-GB,-8-GB-RAM,-Ruby-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-V15PRO-Smart-Phones-491570743-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzgzfGltYWdlL2pwZWd8aW1hZ2VzL2g5MC9oN2YvOTE0MjMyODYyMzEzNC5qcGd8YTBhZWQ0ZmI2YjM4NDFhZDYwOTFlMGRjMDRlZjQ0YWFkNTVlZDhlYzk5OTVlMGRlNTU5Y2E0Yjk5NDk2M2Q5MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ruby Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1/3/5/8
  • \n
  • LTE TDD: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.73" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • AI Triple Camera Shoot Like a Pro
  • \n
  • 48 Million Quad Pixel Sensor Capture the Night
  • \n
  • Ultra FullView Display Unhindered Vision
  • \n
  • Spectrum Ripple Design Stand Out from the Crowd
  • \n
  • Ultra-Smooth Gaming" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "VIVO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db0"), + "name" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Ocean Blue", + "description" : "Samsung Galaxy Note9 Smart Phone 128 GB, 6 GB RAM, Ocean Blue", + "price" : "1067", + "sku" : "Samsung-Galaxy-Note9-Smart-Phone-128-GB,-6-GB-RAM,-Ocean-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Note-9-Smartphones-491420113-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTgxNHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDJiLzg5OTgyOTgwMjYwMTQuanBnfDYwMDY3MmViY2Y2NDVhYmNjNjQxMjhkNjUwMmUwNDA3ODdkMjMyYmI0MWZiYjExNGFkNmQ1YmQwZWY1YTg5ZWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db1"), + "name" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Blue", + "description" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Blue", + "price" : "140", + "sku" : "Samsung-Galaxy-A10-Smart-Phone 32-GB,-2-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-BLU-2GB-32GB-6-2-491550840-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjkwMXxpbWFnZS9qcGVnfGltYWdlcy9oNmIvaDc0LzkxMDg5MDk4NTA2NTQuanBnfGUwMzgwMDZmM2NiYWVkZjVhOGQ2OTYyYTMwN2MxNTZiMmY3MDllNDc0MmU2MTYxNGJjODc5NjE0ZGE2ZGU1YmE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7884 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db2"), + "name" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "251", + "sku" : "Samsung-Galaxy-A30-Smart-Phone 64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A30-BLK-4GB-64GB-6-4-491550843-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzQwMnxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDZlLzkxMDkyMDgxMzc3NTguanBnfDQ3NTMzODFlYTlkNjM3NzM5NTAxODA4NWNjMTMxODdkNjU2MWY3NDFkOTVlNDI4ZjM3ODUzMDVmZTkyMTRkNzg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A30" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7904 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db3"), + "name" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "251", + "sku" : "Samsung-Galaxy-A30-Smart-Phone 64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A30-BLU-4GB-64GB-6-4-491550842-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzM4fGltYWdlL2pwZWd8aW1hZ2VzL2hjNy9oMDIvOTEwOTIwNTEyMzEwMi5qcGd8MDFiNGZlMWE4M2UxN2M0OTNiYjA3YzM0NzIxZDJlOGQ4MjJkNTEyN2YwZDkxZjU0MmFiOWRjYTRmZTcwMDM0YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A30" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7904 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db4"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Black", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Black", + "price" : "367", + "sku" : "Samsung-Galaxy-A50-Smart-Phone-64-GB,-6-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLK-6GB-64GB-6-4-491550849-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTE5fGltYWdlL2pwZWd8aW1hZ2VzL2g1Yy9oYzUvOTEwODkzOTUwNTY5NC5qcGd8ZjJhMTQ4MDdkYmE3NjBjZTdmMmVhOGYxOGIxYTE5ZTE2OGU1YmQyMGRiNGEzYzhhZTI1ZjJjMDRkZWE0YmRhNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db5"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, White", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, White", + "price" : "295", + "sku" : "Samsung-Galaxy-A50-Smart-Phone-64-GB,-4-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-WHT-4GB-64GB-6-4-491550847-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTA3fGltYWdlL2pwZWd8aW1hZ2VzL2hlZS9oMzUvOTEwODkzMTQ0NDc2Ni5qcGd8MDBhYjNhMzdkZDljMDRjMTI0YmNkMjg0NjBkOTc1MDc4MzlhMmVmMmY0MjlmZDE4NzRmYWM4NTRjMWNkYzUzMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db6"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "295", + "sku" : "Samsung-Galaxy-A50-Smart-Phone-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLU-4GB-64GB-6-4-491550845-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzcwfGltYWdlL2pwZWd8aW1hZ2VzL2g4My9oODUvOTEwODkzMTc3MjQ0Ni5qcGd8NWIyNDk2Y2Y4Njg5ZjEzNWJlNTYwZjY4ZGJmODE2MTViNmEyZWI2MmFlMGQ4YTg2YjIwMTJmMzU4MzdmNTIzZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db7"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "295", + "sku" : "Samsung-Galaxy-A50-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLK-4GB-64GB-6-4-491550846-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTE5fGltYWdlL2pwZWd8aW1hZ2VzL2hkNi9oMjQvOTEwODkzMjc1NTQ4Ni5qcGd8MjZhNjE1NTVkZDYyYjUxZDg1YTYzODhlYzE4OGY5MTE2YzY1MWMyOTFkYWM2MDA3YjA1NTZlNTRhMTAyMTUzZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db8"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, White", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, White", + "price" : "367", + "sku" : "Samsung-Galaxy-A50-Smart-Phone-64-GB,-6-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-WHT-6GB-64GB-6-4-491550850-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTA3fGltYWdlL2pwZWd8aW1hZ2VzL2g2MC9oNWIvOTEwODk0MDE2MTA1NC5qcGd8NDgwZGZkYTMxMDNiN2RmODZjMDBhZTg0MTM0ZDI3MmU5YmU2NGNhNDMxZTM5NzI1MDgyNWUzNjBhZjQxZDdjNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637db9"), + "name" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "187", + "sku" : "Samsung-Galaxy-A20-Smart-Phone 32-GB,-3-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A20-Blue-OC-3-32-6-4-smart-phone-491551067-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTk2fGltYWdlL2pwZWd8aW1hZ2VzL2g5Mi9oYzAvOTEyMjI4Njc2NDA2Mi5qcGd8MmE1M2E4NDc2MDliOTQ1MWE5MDMyMGUxZDhkZTEwZjQ3NzY0ZjUzYjRkNTlhYTY0ZjYzYWVjODM0MGM3M2ViZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A20" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.20 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 12 hours
  • Internet Usage Time(LTE) - Up to 13 hours
  • Internet Usage Time(Wi-Fi) - Up to 13 hours
  • Video Playback Time - Up to 21 hours
  • Audio Playback Time - Up to 82 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 26 (3G WCDMA)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 (LE up to 2 Mbps)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Location Technology - GPS, Glonass, Beidou
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6GHz, 1.35GHz Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dba"), + "name" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "187", + "sku" : "Samsung-Galaxy-A20-Smart-Phone 32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A20-Black-OC-3-32-6-4-smart-phone-491551068-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODk1fGltYWdlL2pwZWd8aW1hZ2VzL2hkOC9oZWYvOTEyMjI4NjQzNjM4Mi5qcGd8OTk4ZDM0NWRmZjRkM2ExYjY5NzY5ZmJhMjNhNjIwOGFhMmJhYWJjNzcxOWZjOWRkYWJkMzFiY2JhMDMxZDc0NQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A20" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.20 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 12 hours
  • Internet Usage Time(LTE) - Up to 13 hours
  • Internet Usage Time(Wi-Fi) - Up to 13 hours
  • Video Playback Time - Up to 21 hours
  • Audio Playback Time - Up to 82 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 26 (3G WCDMA)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 (LE up to 2 Mbps)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Location Technology - GPS, Glonass, Beidou
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7884 Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbb"), + "name" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Red", + "description" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Red", + "price" : "140", + "sku" : "Samsung-Galaxy-A10-Smart-Phone-32-GB,-2-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-Mobile-491551066-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDcyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Yi9oMjUvOTEyMzU5MzI1Njk5MC5qcGd8ODM4YjkyY2IxYTQ3NzVkYmM0MDNiYWNlZmE5NDk4MDA0NDEzZTVkZjI5ZTMxOTYwYmJiMzYwMmZjNmJlNzJhNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 15 Hours
  • \n
  • Internet Usage Time(LTE): Up to 19 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 19 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 72 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1(2100), B2(1900), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD-LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7884 Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbc"), + "name" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Black", + "description" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Black", + "price" : "450", + "sku" : "Samsung-Galaxy-A70-Smart-Phone-128-GB,-6-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A70-6GB-Black-OC-6-128-6-7-Smart-Phone-491570550-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU4N3xpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGYyLzkxMjYzNjM1NjIwMTQuanBnfDc2YjZkOTcxNzU2ZmJiYzRjMDYxYjVkYzQ4Y2JhYWQ1NTZhY2JjNTAyNjk0ODY4ZGJiZmZjYzEyOTA1Mjk3Njc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A70" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.03 cm (6.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 14 hours
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 16 hours
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Upto 16 hours
  • \n
  • Video Playback Time (Hours): Up to 24 hours
  • \n
  • Audio Playback Time (Hours): Up to 128 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto to 28 hours ((3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbd"), + "name" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, White", + "description" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, White", + "price" : "450", + "sku" : "Samsung-Galaxy-A70-Smart-Phone-128-GB,-6-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A70-6GB-White-OC-6-128-6-7-Smart-Phone-491570551-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTU5fGltYWdlL2pwZWd8aW1hZ2VzL2hiZi9oNGEvOTEyNjM2NTY1OTE2Ni5qcGd8NmIwYTU3ZTI3NDk5Yzc0MDVlNzI3MDUyYTRlNTg3ZTU3MzI2OTcyYWE1ZjRhYmQ5M2Y5ZmQ2OGRlZjlkODAwZg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "A70" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.03 cm (6.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 14 hours
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 16 hours
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Upto 16 hours
  • \n
  • Video Playback Time (Hours): Up to 24 hours
  • \n
  • Audio Playback Time (Hours): Up to 128 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto to 28 hours ((3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbe"), + "name" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Blue", + "description" : "Samsung Galaxy A70 Smart Phone 128 GB, 6 GB RAM, Blue", + "price" : "450", + "sku" : "Samsung-Galaxy-A70-Smart-Phone-128-GB,-6-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A70-6GB-Blue-OC-6-128-6-7-Smart-Phone-491570549-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDY5OXxpbWFnZS9qcGVnfGltYWdlcy9oMGYvaGEzLzkxMjYzNjM4ODk2OTQuanBnfDBkOTM5Y2ExZjM1YmY0ODBkOTY4NTYzMDk5NDk3Y2JhMDBmYzVmM2NlYjQ0MDNkYzRiMjBjMGM5MWE4MjZjYjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A70" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "17.03 cm (6.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 14 hours
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 16 hours
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Upto 16 hours
  • \n
  • Video Playback Time (Hours): Up to 24 hours
  • \n
  • Audio Playback Time (Hours): Up to 128 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto to 28 hours ((3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.43" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dbf"), + "name" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Black", + "description" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Black", + "price" : "86", + "sku" : "Samsung-Galaxy-A2-Core-Smart-Phone-16-GB,-1-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-GALAXY-A2-CORE-Mobile-Phones-491551071-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDc1NXxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDU0LzkxMzI0NTExNjgyODYuanBnfDdhZDU5YzdmNjllZmQ0YjRkNTIzOGI2OThkOTkzMzFjYTQyODY2YzZhMjA2MWJiMzI3ZmE4OTdkNjQ0ZTYzYzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.64 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 15 Hours
  • \n
  • Internet Usage Time(LTE): Up to 18 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 16 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900)
  • \n
  • TDD LTE: B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7870 Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc0"), + "name" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Gold", + "description" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Gold", + "price" : "86", + "sku" : "Samsung-Galaxy-A2-Core-Smart-Phone-16-GB,-1-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-GALAXY-A2-CORE-Smart-Phones-491551072-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NTA2fGltYWdlL2pwZWd8aW1hZ2VzL2hkYy9oZjMvOTE0MTU2NTU1NDcxOC5qcGd8NTNlODY4MTYxZGY2NzdlMmQ4ZGQ4N2ZjYmZhMTY3NDU0ODk2ZjI3ZDM4ODc3MTA4OWM2MDBjZGQ2ZTI1MzJmZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.64 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) (Hours): Up to 15
  • \n
  • Internet Usage Time(LTE) (Hours): Up to 18
  • \n
  • Internet Usage Time(Wi-Fi) (Hours): Up to 18
  • \n
  • Video Playback Time (Hours): Up to 18
  • \n
  • Audio Playback Time (Hours): Up to 75
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "
  • Talk Time (3G WCDMA) (Hours): Up to 16
  • " + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900)
  • \n
  • TDD LTE: B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa Core Exynos 7870" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • FHD (1920 x 1080)at 30fps Video Recording Resolution
  • \n
  • Android Operating System Type" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Travel Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc1"), + "name" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Clear White", + "description" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Clear White", + "price" : "276", + "sku" : "Motorola-moto-G7-Smart-Phone-64-GB,-4-GB-RAM,-Clear-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-G7-Smart-Phones-491550768-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzIzfGltYWdlL2pwZWd8aW1hZ2VzL2hmOS9oYjIvOTEyMDI1Mzk2ODQxNC5qcGd8NTkyZGFlYThiMGEwYjQ1ZWY2Y2QxOGNiZGI1OTc4YmJlMWY3ZGFiOGM2ZjRkM2VmNzFkODE0ZDk2ZTdlYmJjMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clear White" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE band 1/2/3/4/5/7/8/18/19/20/26/28
  • \n
  • TD-LTE band 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 632 Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "172" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face unlock" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc2"), + "name" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, White", + "description" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, White", + "price" : "232", + "sku" : "Motorola-Android-One-Smart-Phone-64-GB,-4-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Moto-Android-One-White-OC-4-64-6.2-SmartPhone-491550770-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYzNHxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaGMzLzkxMjAyNTQ2MjM3NzQuanBnfGY3ZjlkODgxM2Y0ZDEzOGU5ZDg3MDE0ZGY1YTUzY2I2NzhmNGM4OGUyNjNlMTE1N2ZjMDUyNjhhNWU2NTY5MTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "Android One" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15 cm (5.9 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1/3/5/7/8/20/38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice control: Google Assistant
  • Bottom-ported speaker
  • Splash-resistant P2i
  • " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc3"), + "name" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "description" : "Motorola moto G7 Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "price" : "276", + "sku" : "Motorola-moto-G7-Smart-Phone-64-GB,-4-GB-RAM,-Ceramic-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-G7-Smart-Phones-491550767-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzIzfGltYWdlL2pwZWd8aW1hZ2VzL2hhYS9oOTEvOTEyMDI1MzY0MDczNC5qcGd8NmIwMDJiYTg0Njk4NGY2N2Q5NjMwNWYwZmJiMTIwY2JkMDU5YzEyMjE1NWJlZDdmYWM2YzQwOGI5MmIyMDc2Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE band 1/2/3/4/5/7/8/18/19/20/26/28
  • \n
  • TD-LTE band 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 632 Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.7" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "172" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face unlock" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc4"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Coral Blue", + "price" : "1015", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-64-GB,-6-GB-RAM,-Coral-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Coral-Blue-491379609-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI5MHxpbWFnZS9qcGVnfGltYWdlcy9oNzYvaDg4Lzg5MjE1Mjg1OTg1NTguanBnfGE4NjI1ZThkYmIzM2RhMWJhMTQwMTljMzAzNzQ0NDJjMDNhMTU4MDY4NzJkZjVmNTE5MjAxYTIyYWFmMzU5NDA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc5"), + "name" : "Samsung Galaxy S9+ Smart Phone 256 GB, 6 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9+ Smart Phone 256 GB, 6 GB RAM, Midnight Black", + "price" : "1145", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-256-GB,-6-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-256-GB-Midnight-Black-491379612-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2g5ZS9oYzAvODkyMTUwNzY5MjU3NC5qcGd8ZjM0MjMyNzQ0MDhmMWM3NTkyMGMzNjlkOWZkYzUzZjg2YTBjYWUxYjg4MDY2M2VjYmI2YmUzNzM1ZTMzNmViNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc6"), + "name" : "Apple iPhone XS Max Smart Phone 256 GB, Gold", + "description" : "Apple iPhone XS Max Smart Phone 256 GB, Gold", + "price" : "1811", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-256-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-256GB-Gold-491488032-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg4NnxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGI0LzkwMjU5ODAxMDQ3MzQuanBnfGVhNTIxMDBjNzNjYzlhM2E3YTAyYmVmZGNkMmE5YzcyZWIxZmYxOTZhMGQyOGE5MjJkYTRlYmIzYjU3ZWY4YmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc7"), + "name" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Nebula Purple", + "description" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Nebula Purple", + "price" : "218", + "sku" : "Vivo-Y93-Smart-Phone-64-GB,-3-GB-RAM,-Nebula-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y93-Smartphones-491503524-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTEzfGltYWdlL2pwZWd8aW1hZ2VzL2hiZS9oZmQvOTA5MzQ0ODcyODYwNi5qcGd8NTE1NDg1ZGMzYTJiZDA2ZGMyMTQ2OWY4NTZiODRlZTI0YzRjMWE2YzljYzAzM2UzMmYyMTJmODlhMzY5OTI5Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Nebula Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y93" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TDD-LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Helio P22 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc8"), + "name" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Red", + "description" : "Samsung Galaxy A20 Smart Phone 32 GB, 3 GB RAM, Red", + "price" : "187", + "sku" : "Samsung-Galaxy-A20-Smart-Phone 32-GB,-3-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A20-Red-OC-3-32-6-4-smart-phone-491551069-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTkzfGltYWdlL2pwZWd8aW1hZ2VzL2g0YS9oZjUvOTEyMjI4NzA5MTc0Mi5qcGd8MzRmNWJjYTlmMDZhNTQxMzY2N2JiMDg1YjViNjE5ZjM0NjZkYjhkNzYwNTUyNjc1YWJiMTE5NzdmN2EzZTkwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A20" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.20 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 12 hours
  • Internet Usage Time(LTE) - Up to 13 hours
  • Internet Usage Time(Wi-Fi) - Up to 13 hours
  • Video Playback Time - Up to 21 hours
  • Audio Playback Time - Up to 82 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 26 (3G WCDMA)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 (LE up to 2 Mbps)" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Location Technology - GPS, Glonass, Beidou
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6GHz, 1.35GHz Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.47" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dc9"), + "name" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Midnight Blue", + "description" : "Nokia 7.1 Smart Phone 64 GB, 4 GB RAM, Gloss Midnight Blue", + "price" : "356", + "sku" : "Nokia-7.1-Smart-Phone-64-GB,-4-GB-RAM,-Gloss-Midnight-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-7-1-TA-1097-DS-4-64-IN-CM-BLUE-491503443-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTU4MXxpbWFnZS9qcGVnfGltYWdlcy9oMGUvaDVhLzkwNzQ2MDk2NTE3NDIuanBnfDhjZDQyNTU0Y2JkMTZhZWRhYWQ3NTQ0MjhjMTA0ODU2YTJkNTQ0MDE4MjZhZjJiNWZlOTNhODcwNWE0Yjc0ZTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Midnight Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.83 cm (5.84 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 636" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.97" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "160" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "Single speaker with smart amp" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 18W charger
  • \n
  • USB Type-C cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • \n
  • Headset
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (USB 2.0)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dca"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss Black", + "price" : "232", + "sku" : "Nokia-5.1-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Gloss-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550760-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjU1fGltYWdlL2pwZWd8aW1hZ2VzL2gwZC9oODUvOTExMTUxNzY1OTE2Ni5qcGd8MTJiNjVhOTRhOTQ0NDAzNWIyNTg5OGMxOGM3MWE3NGFjOGFkZGRmMTkwZjc5ZTI4NWNiYzMwYTUzYWRlYzdjYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcb"), + "name" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaze Blue", + "description" : "Oppo A7 Smart Phone 64 GB, 4 GB RAM, Glaze Blue", + "price" : "276", + "sku" : "Oppo-A7-Smart-Phone-64-GB,-4-GB-RAM,-Glaze-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smart-Phones-491503394-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzMxfGltYWdlL2pwZWd8aW1hZ2VzL2hmYy9oNTYvOTA3OTgyMTY5NzA1NC5qcGd8YmZmMDdmZTZiNWU4Zjc1NzhmMTY3NDgyMTg2N2QwOGIzMmE5MGY3ZTEzOGQxYjhhYzAyMmNhZGM2Y2M1YTJiYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaze Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TD-LTE: 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcc"), + "name" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, White/Iron", + "description" : "Nokia 3.1 Smart Phone 32 GB, 3 GB RAM, White/Iron", + "price" : "202", + "sku" : "Nokia-3.1-Smart-Phone-32-GB,-3-GB-RAM,-White-Iron", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-3.1-Smart-Phones-491420138-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDgxNnxpbWFnZS9qcGVnfGltYWdlcy9oZmIvaDE2LzkwMTg5MTk1MTgyMzguanBnfDEyZGQ0ZTVmOTM5NzZhYzMzNWQ4MGJiNDE3MGRmY2VlM2Q2MmQ4NzU1ODZmMDU4MDQ0YTY5MTEwMTI1NjcwZmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Iron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6750N Octa-Core 1.5 Ghz" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curved & Sculpted Display
  • \n
  • Gyroscope for AR Gaming
  • \n
  • Resolution 18:9
  • \n
  • Corning Gorilla Glass
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcd"), + "name" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Sunrise Red", + "description" : "OPPO F9 Pro Smart Phone 64 GB, 6 GB RAM, Sunrise Red", + "price" : "377", + "sku" : "OPPO-F9-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Sunrise-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F9-Pro-Red-Smartphones-491420188-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjU2OXxpbWFnZS9qcGVnfGltYWdlcy9oZGEvaDkwLzkwMTI1NzEzNDA4MzAuanBnfGRjYzJmMGY4YjUyNzQyODY0ZjY2NmY5ZTVlNDIzMDczZmZmZDU3NDY4ODdhODE5YmJjNzE5MzcxNGU4M2EyMmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sunrise Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dce"), + "name" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy J6 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "269", + "sku" : "Samsung-Galaxy-J6-Smart-Phone-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Smart-Phone-64-GB-Blue-491419877-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjcyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Yi9oZmIvODk2MDY4MDc4Nzk5OC5qcGd8ZDNmOTA3ODkwNzQ5Mzg5M2Q0ZmM1MTQ1M2FjNGE4ZWRiYjQ0MTMwNDRkNjVmNWM4MTIxNzM1YThlNjI2NmM5NA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.93" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.02" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dcf"), + "name" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Red", + "description" : "Oppo A3s Smart Phone 16 GB, 2 GB RAM, Red", + "price" : "174", + "sku" : "Oppo-A3s-Smart-Phone-16-GB,-2-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420028-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQyNnxpbWFnZS9qcGVnfGltYWdlcy9oZWYvaDU3LzkwMDc2NDU5ODI3NTAuanBnfDA2MDJlYmY1MTEwMjQ1MmE2OGVjZmU5MDhiMGU0YWJiOTc0ZmIwYWYwYmJjNjg4MDEyMDFlZGI3Y2JjZGM0ODg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd0"), + "name" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Thunder Black", + "description" : "OPPO F11 Pro Smart Phone 128 GB, 6 GB RAM, Thunder Black", + "price" : "435", + "sku" : "OPPO-F11-Pro-Smart-Phone-128-GB,-6-GB-RAM,-Thunder-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F11-PRO-Smart-Phones-491570771-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTY1fGltYWdlL2pwZWd8aW1hZ2VzL2gxMS9oMzgvOTE0MjMyNDAzNTYxNC5qcGd8ZmYwNzIxNDY1ZjAzMWUzZjAxODEyZGViYWY4ZDE0M2U4ZDVhZWNjNjczYzYyZTVkZTkyOGM0NjMxNjFhZGYyYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.5 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Thunder Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6 (based on Android 9)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Audio Playback: Up to 118.7 hours
  • \n
  • Video Playback: Up to 12 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "
  • GSM: Up to 36 hours
  • \n
  • WCDMA: Up to 26.7 hours
  • " + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz MediaTek Helio P70 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 16 million colors" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd1"), + "name" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Blue", + "price" : "247", + "sku" : "Samsung-Galaxy-J6-Plus-Smart-Phone,-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Plus-Blue-Smart-Phone-491488077-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzIwfGltYWdlL2pwZWd8aW1hZ2VzL2g1OC9oMjgvOTAzMzQzOTI0ODQxNC5qcGd8YWJjZWUxMGU4N2QyYzhiNjU0ODM4MmEyODMxN2MyMzA1YTZlZTBmMzc2OWUyMzMwYzhjYjRjZjdiYmQ5Y2U2Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "178" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "True HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd2"), + "name" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Red", + "description" : "Samsung Galaxy A30 Smart Phone 64 GB, 4 GB RAM, Red", + "price" : "251", + "sku" : "Samsung-Galaxy-A30-Smart-Phone 64-GB,-4-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A30-RED-4GB-64GB-6-4-491550844-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzE1NXxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaGE4LzkxMDkyMDU0NTA3ODIuanBnfDkxOTUzMDA5MmNmZDAzYWUxM2YwZjU2NzdjMzhkNWZmODc3MTBmZDQ4NGU1NjA5MmRiODM4M2MwYzVlY2VjZmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A30" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7904 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd3"), + "name" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Vivo Y83 Pro Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "247", + "sku" : "Vivo-Y83-Pro-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y83-Pro-Mobile-Phones-491420158-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODAwMnxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaDE4LzkwMTU3NTY0ODg3MzQuanBnfGUzOTU3NmExMzNhZWI4NTRjZDNhMjFhOGExNDVhYmU3YTcxMmY2MzkyMGU2ZWMxNmJhZjY0OTc2MDA4ZGI1MDI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y83 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.79 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3260" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1/3/5/8
  • \n
  • TDD LTE: B38/B40/B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core MT6762 (Helio P22)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd4"), + "name" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Neon Purple", + "description" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Neon Purple", + "price" : "537", + "sku" : "Oppo-R17-Smart-Phone-128-GB,-8-GB-RAM,-Neon-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-R17-Purple-8Gb-128GB-16-5MP-25MP-SmartPhone-491550999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjI3fGltYWdlL2pwZWd8aW1hZ2VzL2hlNi9oMzUvOTEyMDI3NTkyMjk3NC5qcGd8NmM2NjMwNDFiMTYyY2ZiZWQ5YmUzZTQ5NGZlODY0MWFkZGQ4ZTc5MjE3ZGNkYmNhYmI1YTFmY2M2NjkwNDJmNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.3 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Neon Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "R17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/2/3/4/5/7/8/20/28
  • \n
  • TD-LTE: Bands 38/39/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Qualcomm Snapdragon 670 octa core SDM670" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "182" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Headset" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd5"), + "name" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Ambient Blue", + "description" : "Oppo R17 Smart Phone 128 GB, 8 GB RAM, Ambient Blue", + "price" : "537", + "sku" : "Oppo-R17-Smart-Phone-128-GB,-8-GB-RAM,-Ambient-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-R17-Blue-8Gb-128GB-16-5MP-25MP-SmartPhone-491550998-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzE5fGltYWdlL2pwZWd8aW1hZ2VzL2hhNC9oZDIvOTEyMDI3NDYxMjI1NC5qcGd8NDUwZTViYzgxZmNlMGU1YjhmZDE0NWJjZGJhN2M4NzE3MWNiZDc4ZDhhNGY3NTc3Y2EzNjBkZmMyMGRiNzA5OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.3 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ambient Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "R17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/2/3/4/5/7/8/20/28
  • \n
  • TD-LTE: Bands 38/39/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Qualcomm Snapdragon 670 octa core SDM670" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.49" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "182" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Headset" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd6"), + "name" : "Apple iPhone XS Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone XS Smart Phone 256 GB, Space Grey", + "price" : "1666", + "sku" : "Apple-iPhone-XS-Smart-Phone-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-256GB-Space-Grey-491420321-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjYzN3xpbWFnZS9qcGVnfGltYWdlcy9oYmEvaDk0LzkwMjU5OTA2NTYwMzAuanBnfGJiMTlhYWJkODYyMzI3ODU2ZTc2NzM5OGZmZmUxMDk4NzZjNjViMmU2NDlhZWMyMDcxYjliY2YyMmNmNDk4NmM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd7"), + "name" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, Black/Copper", + "description" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, Black/Copper", + "price" : "261", + "sku" : "Nokia-6-with-Android-One-Smart-Phone-32-GB,-3-GB-RAM,-Black-Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-with-Android-One-Smart-Phone-Black-Copper-491379647-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA4NXxpbWFnZS9qcGVnfGltYWdlcy9oOTAvaDhiLzg5MzQxOTEyMzUxMDIuanBnfGZkNDJmODk5N2JiMGM1NWE5MzI0NDU1Nzc2ZTBiZTg5N2M5YmE5OGEzZDllNzc4YWRkMGRhNTc4NGQxOTczYTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "6" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core Qualcomm Snapdragon 630" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.88" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.58" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Nokia USB-C Charger
  • Charging/data cable
  • Quick guide
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd8"), + "name" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, White/Iron", + "description" : "Nokia 6 with Android One Smart Phone 32 GB, 3 GB RAM, White/Iron", + "price" : "261", + "sku" : "Nokia-6-with-Android-One-Smart-Phone-32-GB,-3-GB-RAM,-White-Iron", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-with-Android-One-Smart-Phone-White-Iron-491379648-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjE5NHxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDQyLzg5MzQxODUzMzY4NjIuanBnfDA0Mjg2Y2QxYTQ3N2YzNjY5OTczNTU3MTRlMWFjOWI5YTEwNWIyYjVlMWY5ZTAwZTE0ZGE2N2I5NjU5NmI5ZWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Iron" + }, + { + "attributeName" : "Model", + "attributeValue" : "6" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core Qualcomm Snapdragon 630" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.88" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.58" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Nokia USB-C Charger
  • Charging/data cable
  • Quick guide
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dd9"), + "name" : "Apple iPhone XS Max Smart Phone 256 GB, Silver", + "description" : "Apple iPhone XS Max Smart Phone 256 GB, Silver", + "price" : "1811", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-256GB-Silver-491488031-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDM3NXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDVjLzkwMjU5NzYwNDE1MDIuanBnfGZiNmM1NjA4M2NmZTM2NjYxMWVmMzFkMTg1MDlkYzIyMTNmMTI2ZjE4NzU4MTdjODQzYWRiYWFlMGRjN2E3YjQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dda"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Caviar Black", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Caviar Black", + "price" : "609", + "sku" : "Samsung-Galaxy-A9-Smart-Phone-128-GB,-8-GB-RAM,-Caviar-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-8-GB-RAM-Caviar-Black-491503314-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTU1NnxpbWFnZS9qcGVnfGltYWdlcy9oZGYvaGQ1LzkwNzA0NTYxNzY2NzAuanBnfDI1ZWZhZmNiMzEzY2Q5NTUwZWI0ODRmYTMxNDg4OWMwNDU0Y2M1YWZjMzJmZTU5YjQ2ZmI3MDA4NDU4ZTMyNjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Caviar Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddb"), + "name" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Black/Chrome", + "description" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Black/Chrome", + "price" : "171", + "sku" : "Nokia-3.1-Smart-Phone-16-GB,-2-GB-RAM,-Black-Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-3.1-TA-1070-DS-2-16-IN-CM-BLACK-Smart-Phones-491420054-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTcxNHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaGUxLzg5OTY4MDY0MjY2NTQuanBnfGQwOGMxNjQ3OTNmM2UzYjg0MzE5MjQ2ZWJiZTA3NjM4YzA0ZTcxYmZjNjUwODI2Y2NlNzc1MDNmYTgzMmQ4NTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 5V/2A charger
  • \n
  • Micro USB cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB (USB 2.0)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddc"), + "name" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, White/Iron", + "description" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, White/Iron", + "price" : "171", + "sku" : "Nokia-3.1-Smart-Phone-16-GB,-2-GB-RAM,-White-Iron", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-3.1-TA-1070-DS-2-16-IN-CM-WHITE-Smart-Phones-491420056-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTEwMXxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDkxLzg5OTY4MDY3NTQzMzQuanBnfGFkNDg5ODIxZjA2NDZmMmEwOGNiN2QxZDQxZmJhZGE4ZjM3NzYwNDgxNWMyOTc1ZTQyMjhkMDRmZTE1NTMzMWI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Iron" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 5V/2A charger
  • \n
  • Micro USB cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB (USB 2.0)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddd"), + "name" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Blue/Copper", + "description" : "Nokia 3.1 Smart Phone 16 GB, 2 GB RAM, Blue/Copper", + "price" : "171", + "sku" : "Nokia-3.1-Smart-Phone-16-GB,-2-GB-RAM,-Blue-Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-3.1-TA-1070-DS-2-16-IN-CM-BLUE-Smart-Phones-491420055-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzIyNHxpbWFnZS9qcGVnfGltYWdlcy9oN2IvaDJiLzg5OTY4MDQ0NjA1NzQuanBnfGYwZTlmNjM2MGEyYTc2ZWY2NGEwNzk3NTQzNzc3NGRlNDMxMGQ0MzcxMmM1ZWE3Njk4NzE2M2NmNzc4NTEzOTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2990" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138.3" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 5V/2A charger
  • \n
  • Micro USB cable
  • \n
  • Quick guide
  • \n
  • SIM door key
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB (USB 2.0)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dde"), + "name" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Grey/Silver", + "description" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Grey/Silver", + "price" : "112", + "sku" : "Nokia-2.1-Smart-Phone-8-GB,-1-GB-RAM,-Grey-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-2.1-Smart-Phones-491420144-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTYxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaDQ5LzkwMTg5MzQ3ODgxMjYuanBnfDY1MGI0MWM3YzE4ZmRhZmMwNGYyYmEyZGVlNWZlM2M0MWY4YTkxMmYyNzVhMGJkODFiZmVhNDI4MTkxODk5YzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.96" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ddf"), + "name" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Copper", + "description" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Copper", + "price" : "112", + "sku" : "Nokia-2.1-Smart-Phone-8-GB,-1-GB-RAM,-Blue-Copper", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-2.1-Smart-Phones-491420142-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDc3NHxpbWFnZS9qcGVnfGltYWdlcy9oODIvaDA1LzkwMTg5MjcwNTQ4NzguanBnfDFlZWVjNDMxZjZhOWVjOTAxNzFhYmQzYzk4MDI0YTgwZDIwN2M0NGVkMmQzNWE5YzY5OWQ3NzMxYjQ4MzVhODM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Copper" + }, + { + "attributeName" : "Model", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.96" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de0"), + "name" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Iron/Steel", + "description" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Iron/Steel", + "price" : "464", + "sku" : "Nokia-8.1-Smart-Phone-64-GB,-4-GB-RAM,-Iron-Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-8-1-IRON-OC-4-64-6-18-491503475-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzk2N3xpbWFnZS9qcGVnfGltYWdlcy9oODEvaDkzLzkwNzcxNjA2NDA1NDIuanBnfGI4MDNjNjc1YjZjNmZjMGQ0ODZmMzEyM2ViNzFmMTZhZmI0MzgzMmQ5ZTdmYWZmNGM4ZmYzMjQ4ZDUwODFiY2U", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron/Steel" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Recording: Nokia OZO surround sound capture
  • \n
  • Single speaker with smart amplifier
  • \n
  • Dual-tone anodized metal frame
  • \n
  • Dual Hi-Cri flash
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de1"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Gloss Black", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Gloss Black", + "price" : "269", + "sku" : "Nokia-5.1-Plus-Smart-Phone-64-GB,-6-GB-RAM,-Gloss-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550762-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Njc3fGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oODMvOTExMTUxODk2OTg4Ni5qcGd8NWNmZGMzMGNjYWYxM2Y2MzYzODJmZjhlZDRjNzVkZTBmMjg5ZWQ1ZWM4ZTNjNDY5YTE5ZGUyMjlkOGUzYTI1Zg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de2"), + "name" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Blue/Silver", + "description" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Blue/Silver", + "price" : "464", + "sku" : "Nokia-8.1-Smart-Phone-128-GB,-6-GB-RAM,-Blue-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-8.1-Smart-Phones-491550750-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTIxfGltYWdlL2pwZWd8aW1hZ2VzL2g5NC9oYzcvOTExNzAyMTY2NzM1OC5qcGd8M2QxOGMwYzRlYTg0Yzk5YzU3ODM0ZDRlNDdiNGE3NWUzYjgxY2ZlZGE3NDY2NmIwYjk2NDc4MDRhZGM1YzY5NA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Nokia OZO Surround Sound Capture Recording
  • \n
  • 18W Fast Charging Charger
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de3"), + "name" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Red", + "description" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Red", + "price" : "232", + "sku" : "OPPO-A5-Smart-Phone-64-GB,-4-GB-RAM,-Diamond-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-A5-4plus64-Smart-Phones-491551063-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDk5NnxpbWFnZS9qcGVnfGltYWdlcy9oMDMvaGZlLzkxMzg0MDAyMzE0NTQuanBnfGY2OWZmYjQyNGQwMTI1MzhjZWZkZjhkMjMzZTIwYjU3NGFlZjY3ZTc2YWZiZDY3NjE1NDZiYmQ4OTFkYWZkZDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa Core Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.61" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Clone Apps" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de4"), + "name" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Blue", + "description" : "OPPO A5 Smart Phone 64 GB, 4 GB RAM, Diamond Blue", + "price" : "232", + "sku" : "OPPO-A5-Smart-Phone-64-GB,-4-GB-RAM,-Diamond-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-A5-4plus64-Smart-Phones-491551064-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDkxNXxpbWFnZS9qcGVnfGltYWdlcy9oNWYvaDBlLzkxMzg0MDgwOTU3NzQuanBnfDNhOTRkOTBkZmJkY2RjZTZmODdhNDMxYzE2MDdiNWJiN2EzMzU4MzYxMTYzZDZlZjdiNWFmY2I4MGY2NDU1OTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Diamond Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa Core Qualcomm Snapdragon 450" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.61" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Clone Apps" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de5"), + "name" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Black", + "description" : "Samsung Galaxy J6 Plus Smart Phone, 64 GB, 4 GB RAM, Black", + "price" : "247", + "sku" : "Samsung-Galaxy-J6-Plus-Smart-Phone,-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J6-Plus-Black-Smart-Phone-491488078-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODU3fGltYWdlL2pwZWd8aW1hZ2VzL2hhZi9oZjgvOTAzMzQ1MDU4NjE0Mi5qcGd8YmJlZTc3MmFhNjcxMGY1ODNjZjlkOTUyZDRjMjljNzEzMWQ4ZjZmMDM2NjZlNmM3ZWQ4NTNiNDlhNTc4ZDBiMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J6 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "178" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "True HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de6"), + "name" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Dark Purple", + "description" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Dark Purple", + "price" : "203", + "sku" : "Oppo-A3s-Smart-Phone-32-GB,-3-GB-RAM,-Dark-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420072-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTk4N3xpbWFnZS9qcGVnfGltYWdlcy9oMzMvaGYxLzkwMDc2NDYzMTA0MzAuanBnfGNiNDg1NjkwMTQyNDNiOWM4YmVmOTNlYjMyNDZmMDdiZmYyMzk5ZTFmMTc3NTUxNmY5MjA0YmNiZjA1Y2NhMzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de7"), + "name" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Red", + "description" : "Oppo A3s Smart Phone 32 GB, 3 GB RAM, Red", + "price" : "203", + "sku" : "Oppo-A3s-Smart-Phone-32-GB,-3-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-A3S-Smartphones-491420071-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU2M3xpbWFnZS9qcGVnfGltYWdlcy9oMWYvaGI2LzkwMDc2NDU2NTUwNzAuanBnfGI2MmM4OWRjNTcxZjY1YWFlODE4MDI0NWYxODI1ZGU0NTMyZjRlMjBhM2NmNzIxNzhlOTVmOTEyMDg4ODY1ZTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A3s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE: Bands 1/3/5/8; TD-LTE: Bands 38/40/41 (2535-2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 450" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de8"), + "name" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Starry Black", + "description" : "Vivo Y93 Smart Phone 64 GB, 3 GB RAM, Starry Black", + "price" : "218", + "sku" : "Vivo-Y93-Smart-Phone-64-GB,-3-GB-RAM,-Starry-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y93-Smartphones-491503523-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTI3fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oNDYvOTA5MzQ0ODQwMDkyNi5qcGd8MjZjYjRlYTgwZjJjYjEwNDI3MTk3YzBiMWFlNzI1NjM1OTc3OGVjNDEyMjMyOGQ5YWViNTMxMWFlMzI0YjBlYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y93" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 1/3/5/8
  • \n
  • TDD-LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Helio P22 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637de9"), + "name" : "LG Candy K9 Smart Phone 16 GB, 2 GB RAM, Aurora Black", + "description" : "LG Candy K9 Smart Phone 16 GB, 2 GB RAM, Aurora Black", + "price" : "116", + "sku" : "LG-Candy-K9-Smart-Phone-16-GB,-2-GB-RAM,-Aurora-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMX210IMW-AINDBK-Mobile-Phones-491420205-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTEyfGltYWdlL2pwZWd8aW1hZ2VzL2hhZS9oNDQvOTAzODg1MTU3MTc0Mi5qcGd8NDc4MmMwMWVjYzU1NzU3M2UzYTk3YmRkN2NlNjA4OTY0NTBmOGJjOGZmYTMyNGJiZDMyMjYzNWRlMDZhNWQxYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "K9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: 900, 1900, 2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE_850 (Band 5) / LTE_1800 (Band 3) / LTE_2300 (Band 40) TDD" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Qualcomm Snapdragon" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.63" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.32" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "152" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dea"), + "name" : "Vivo Y95 Smart Phone 64 GB, 4 GB RAM, Starry Black", + "description" : "Vivo Y95 Smart Phone 64 GB, 4 GB RAM, Starry Black", + "price" : "276", + "sku" : "Vivo-Y95-Smart-Phone-64-GB,-4-GB-RAM,-Starry-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y95-Smart-Phones-491503385-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDg1fGltYWdlL2pwZWd8aW1hZ2VzL2gzOS9oYWEvOTA3OTgxMjcxODYyMi5qcGd8YzQ3MDU0NGYwMmJiZjY1YmIwY2ZjY2NlYzE1ZjJjODhiZDc3NjRjYjFhYzBlZGI2ZDNmM2FhMzQzNjdlNzg3NQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y95" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "V4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Octa-core Snapdragon 439" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "XE160 with Remote and Mic" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637deb"), + "name" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Black", + "description" : "Samsung Galaxy S10+ Smart Phone 128 GB, 8 GB RAM, Prism Black", + "price" : "1145", + "sku" : "Samsung-Galaxy-S10+-Smart-Phone-128-GB,-8-GB-RAM,-Prism-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-BLK-P-8-128-6-4-Smart-Phone-491550807-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTkxfGltYWdlL2pwZWd8aW1hZ2VzL2gzMS9oYzIvOTEwNDU2MTE3NjYwNi5qcGd8NDE5YTg4YWE0MTg5OThlYTZjNTliNjhmN2FiNjQyNjYwYmM5MWFiZTRhYzQ0YTJiM2Q0MGM3NGE5NzE2NzcwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Prism Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dec"), + "name" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Topaz Blue", + "description" : "Vivo V15 Pro Smart Phone 128 GB, 6 GB RAM, Topaz Blue", + "price" : "479", + "sku" : "Vivo-V15-Pro-Smart-Phone-128-GB,-6-GB-RAM,-Topaz-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15Pro-Blue-6-128GB-12-8-5MP-32MP-SmartPhone-491550771-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjAwMnxpbWFnZS9qcGVnfGltYWdlcy9oOTYvaDdjLzkxMDM0MDI5OTE2NDYuanBnfDc5Y2U2Y2U5ZGRhMGU5N2UyY2Q2OGI4MmY1MjljYjY5MzAwOTY4YTcyOTlhODk3MjNiZWQ0MDg5M2U3YzViYTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Topaz Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.23 cm (6.39 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0) " + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE - B1/3/5/8
  • TDD-LTE - B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 675AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.471" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.821" + }, + { + "attributeName" : "Weight", + "attributeValue" : "185" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pop Camera
  • \n
  • Infiniti Screen
  • \n
  • GoPop Signal projection
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone, Documentation, USB Cable, USB Power Adapter, SIM Ejector, Protective Case, Protective Film (applied) " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ded"), + "name" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaze Blue", + "description" : "Oppo A7 Smart Phone 64 GB, 3 GB RAM, Glaze Blue", + "price" : "247", + "sku" : "Oppo-A7-Smart-Phone-64-GB,-3-GB-RAM,-Glaze-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1901-Smartphones-491503526-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTA4fGltYWdlL2pwZWd8aW1hZ2VzL2hmMC9oM2IvOTA5MzQ0ODA3MzI0Ni5qcGd8NzNmYjY3OTIyODUwNGNiN2FlNjIwZGQ1NGFlYTU3YjU2MmMwM2UzOGFmODgzZWE2ZDUxNWY4ZjkwOTkxZTQwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glaze Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A7" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4230" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "410 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "32 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/3/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • \n
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.59" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Oppo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dee"), + "name" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Blue/Silver", + "description" : "Nokia 8.1 Smart Phone 64 GB, 4 GB RAM, Blue/Silver", + "price" : "464", + "sku" : "Nokia-8.1-Smart-Phone-64-GB,-4-GB-RAM,-Blue-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/NOKIA-8-1-BLUE-OC-4-64-6-18-491503474-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzQ3fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oYjEvOTA3NzE2MDk2ODIyMi5qcGd8YjhiM2M4ODUyZTBhMjQyNDMxNDJlOTUzNzM3MzZhNmM5NTJiOTI0ZTk1NjEyOGQyYWNiZGUxYmUxYzkxZDhmOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Recording: Nokia OZO surround sound capture
  • \n
  • Single speaker with smart amplifier
  • \n
  • Dual-tone anodized metal frame
  • \n
  • Dual Hi-Cri flash
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637def"), + "name" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Blue", + "description" : "Samsung Galaxy A50 Smart Phone 64 GB, 6 GB RAM, Blue", + "price" : "367", + "sku" : "Samsung-Galaxy-A50-Smart-Phone-64-GB,-6-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A50-BLU-6GB-64GB-6-4-491550848-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzcwfGltYWdlL2pwZWd8aW1hZ2VzL2g5Zi9oYzMvOTEwODkzMjEwMDEyNi5qcGd8NjhiZTBjZTc0OThhZTFjNzdkODcyNjJjZGQ5YTJiZmYwMjgxNjg4MmNhYTI0NGQyODlhYTk4YWNlNDM0MmQyZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A50" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.21 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-Core Exynos 9610" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df0"), + "name" : "Motorola One Power Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Motorola One Power Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "276", + "sku" : "Motorola-One-Power-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-ONE-POWER-Smart-Phones-491550765-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjczfGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oMzgvOTEwNzc4MjEwNzE2Ni5qcGd8Y2MwN2FmYTQyNWQ4NDczNjlhOWM3MjY4NDRmZjYyMzQxMzEyZDc5MDUxMzQ1YmRkMTE4MjQwYTQ0Mjc4ZGIyOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "One Power" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.7 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 2 Days" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/3/5/8/38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df1"), + "name" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Thunder Black", + "description" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Thunder Black", + "price" : "421", + "sku" : "OPPO-F11-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Thunder-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-F11-Pro-Smart-Phones-491550882-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzgxfGltYWdlL2pwZWd8aW1hZ2VzL2g0Yi9oNjUvOTEzODQwMjg1Mjg5NC5qcGd8ZDU1NWY0MmFmMmZlZjMxNzllNTVhNTQ1ZmExNzg0NmFkMjhhYWY0ZjRlYmM4ZDM2MWI1N2YxYzcwMTRjMGFjNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Thunder Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa Core MediaTek Helio P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • VOOC Flash Charge 3.0
  • \n
  • Pop-up Camera
  • \n
  • Double Microphone Noise Suppression
  • \n
  • Hyper Boost" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df2"), + "name" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Royal Blue", + "description" : "Vivo V15 Smart Phone 64 GB, 6 GB RAM, Royal Blue", + "price" : "392", + "sku" : "Vivo-V15-Smart-Phone-64-GB,-6-GB-RAM,-Royal-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-V15-Blue-6GB-64GB-12-8-5MP-32MP-SmartPhone-491550984-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTE2MHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaGVlLzkxMTY5MTUyMDQxMjYuanBnfDYwZjQ4YjgyODM0ZGFkYWJlMGRjMzM2NDdlMmIwZmU5YWQyZWE2ZmM2ZDc1N2FkM2FhMTNjZDNlNmJmYmNhMzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Royal Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "32" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.59 cm (6.53 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (Based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa-core (4*A73 2.1GHz, 4*A53 2.0GHz) MTK P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.59" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earpieces" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df3"), + "name" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Fusion Black", + "description" : "Vivo Y91i Smart Phone 32 GB, 2 GB RAM, Fusion Black", + "price" : "145", + "sku" : "Vivo-Y91i-Smart-Phone-32-GB,-2-GB-RAM,-Fusion-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551055-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mjc2fGltYWdlL2pwZWd8aW1hZ2VzL2g1Mi9oOGYvOTEyMzIxMzI0NjQ5NC5qcGd8MGViY2Q2ZTI3YTZiNDIzZDhjZThjNTBkZWNkOTI3MzIyNzgxNDJkYTcyOTRhMjg4N2RjYzE1OWVmOGQ4NDg3Nw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fusion Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation\nmicroUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df4"), + "name" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mineral Blue", + "description" : "Vivo Y17 Smart Phone 128 GB, 4 GB RAM, Mineral Blue", + "price" : "276", + "sku" : "Vivo-Y17-Smart-Phone-128-GB,-4-GB-RAM,-Mineral-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y17-Smart-Phones-491570587-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgzfGltYWdlL2pwZWd8aW1hZ2VzL2hlZi9oNGUvOTEyODk5NjExMDM2Ni5qcGd8NTQ2MTljNjAwOWMwOWIyMDBhNDM0ZDBmMzBkYjc0OTI3MmVhMmJhOTRlMzYwYTlmY2I0NzgyMDhiY2Y1MDg5Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mineral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y17" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.15 cm (6.35 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 9 (based on Android 9.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE B1/3/5/8
  • \n
  • TDD-LTE B40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.3 GHz Octa-Core Helio P35 (MT6765) Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.94" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190.5" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Rear flash + Front Screen Flash
  • \n
  • 89% Screen-To-Body Ratio
  • \n
  • 19.3 : 9 Aspect Ratio
  • \n
  • Mirror Finish
  • \n
  • AI Super Wide-Angle Camera
  • \n
  • 18W Dual Engine Fast Charging
  • \n
  • Ultra Game Mode
  • \n
  • Capacitive Multi-Touch
  • \n
  • 2.4G + 5G Wi-Fi
  • \n
  • Location: GPS" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df5"), + "name" : "Moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "189", + "sku" : "Moto-E5-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Plus-Smartphones-491433186-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTA4NHxpbWFnZS9qcGVnfGltYWdlcy9oNTMvaDc5LzkwMDc2NTU1NTEwMDYuanBnfDAxOGJkYmY0ODEyZTA3ZWJjODU4OGUzZjFkZGUyZGVlODUzMTMxMTBkOTgzMGIxMWVjMzk1YmUxNzM1M2M5OTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "E5 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM band 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA band 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD LTE band- 1/3/5/8 TDD LTE band-38/40/41 (2535–2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.53" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "197" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Crystal Clear Sound
  • \n
  • Distinctive Design
  • \n
  • Expandable Storage
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Moto", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df6"), + "name" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "description" : "Itel A44 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "price" : "102", + "sku" : "Itel-A44-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Pro-Smart-Phones-491419890-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTM3MXxpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDQyLzg5OTM0MTI3NzU5NjYuanBnfGQ3ZTU0NmVhZDA5YjI0NzUyMmNkZjllYmMxYmM4YzM5YTZlZTIwYWQ0MTU1MmI5ZWE3OTM3ODZkNGU2YzY0MWM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: 2300/2500 MHz B40/B41
  • \n
  • FDD: 2100/1800/850 MHz B1/B3/B5
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df7"), + "name" : "Samsung Galaxy S9 Smart Phone 256 GB, 4 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9 Smart Phone 256 GB, 4 GB RAM, Midnight Black", + "price" : "1029", + "sku" : "Samsung-Galaxy-S9-Smart-Phone-256-GB,-4-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-256-GB-Midnight-Black-491379608-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjUzfGltYWdlL2pwZWd8aW1hZ2VzL2g5Yy9oZDgvODkyMTUyNjk2MDE1OC5qcGd8MGU0ZmVmMzA1MWQ0YTNjMmY1OThlNGMyZWM2ZTY2MjM2OGNiNmY3YTBlNWI1YjhhMjRhMTU3YWQyYTNiNzRmMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df8"), + "name" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Coral Blue", + "price" : "906", + "sku" : "Samsung-Galaxy-S9-Smart-Phone-64-GB,-4-GB-RAM,-Coral-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Coral-Blue-491379605-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTQwOHxpbWFnZS9qcGVnfGltYWdlcy9oMWUvaDc1Lzg5MjE1Mjc2MTU1MTguanBnfDBmMjQ5Yzc2ZGYwMGQ5MTk4NzI3Njc3MzZhYTdjMjFjNzAzYzQ0YjI0MGVjMmI2MjdhYjE3NzhjMWFkZDM2ZTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637df9"), + "name" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "price" : "906", + "sku" : "Samsung-Galaxy-S9-Smart-Phone-64-GB,-4-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Midnight-Black-491379607-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjUzfGltYWdlL2pwZWd8aW1hZ2VzL2gzNy9oODgvODkyMTUyNjMwNDc5OC5qcGd8MDRjMmRhYmY5NmFiYWIxN2Y2ZTdiYTkyZTE1NzhiMGVmMmMyNTQ3MGU4MjY5NjNkYmEyNTgyZTRlYmQ3YTU5MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfa"), + "name" : "Samsung J2 2018 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Samsung J2 2018 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "129", + "sku" : "Samsung-J2-2018-Smart-Phone-16-GB,-2-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-2018-Smart-Phones-491379715-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ0N3xpbWFnZS9qcGVnfGltYWdlcy9oMjgvaDVlLzg5ODE2NTMwNjE2NjIuanBnfDM2ZjE2ZTIxOTA1MjE4Y2M0NjJhNTM5MzI3MTNjZjlmMWZmZjBjMDhkMjZkZTc0Njc2NjljM2FhOTNjNDc3NGY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 2018" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core Qualcomm Snapdragon processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.23" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Weight", + "attributeValue" : "153" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfb"), + "name" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy J8 Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "290", + "sku" : "Samsung-Galaxy-J8-Smart-Phone-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J8-Blue-OC-4-64-6-Mobile-Phones-491420006-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDU1MnxpbWFnZS9qcGVnfGltYWdlcy9oYmUvaGM2Lzg5NjA2NTYxNDY0NjIuanBnfDM0MDAzODRlMGMwYzk4Y2ViYWIyOGFjOWY5NzBjYWVkMzY4OGJhYTAxNDQ0ZTIzNGNlMDZlNTQ0ZWYyMDhhY2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.36 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Octa-Core Qualcomm Snapdragon 450 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfc"), + "name" : "Apple iPhone XS Max Smart Phone 64 GB, Space Grey", + "description" : "Apple iPhone XS Max Smart Phone 64 GB, Space Grey", + "price" : "1593", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-64-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-64GB-Space-Grey-491488027-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaDE3LzkwMjU5Njc3ODM5NjYuanBnfGYzYjdiMmE1ZGE4ZWVhZjlhYjEwNTZiMTZlZjZkOTlhNTk0YzIyYjA4YWNjNjkxNzgzYWQwNTAwODNiNWM4Mjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2688 x 1242" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfd"), + "name" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Aurora Green", + "description" : "OPPO F11 Pro Smart Phone 64 GB, 6 GB RAM, Aurora Green", + "price" : "421", + "sku" : "OPPO-F11-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Aurora-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Oppo-OPPO-F11-Pro-Smart-Phones-491550883-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUyfGltYWdlL2pwZWd8aW1hZ2VzL2gxYy9oYmYvOTEzODQwNTQ3NDMzNC5qcGd8NTE0YTRjZDE1MmJiZDViZTNlZTM1YjM2ODIyOTE3ZDY3NTkyZjhiYTcwMTZkYTliYTI3MDc2YThhNGQ4NTlkMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "48" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Green" + }, + { + "attributeName" : "Model", + "attributeValue" : "F11 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.1 GHz Octa Core MediaTek Helio P70" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • VOOC Flash Charge 3.0
  • \n
  • Pop-up Camera
  • \n
  • Double Microphone Noise Suppression
  • \n
  • Hyper Boost" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dfe"), + "name" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Black", + "description" : "Samsung Galaxy A10 Smart Phone 32 GB, 2 GB RAM, Black", + "price" : "140", + "sku" : "Samsung-Galaxy-A10-Smart-Phone 32-GB,-2-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-A10-BLK-2GB-32GB-6-2-491550841-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzMzOHxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDNhLzkxMDg5MTAxNzgzMzQuanBnfDhiOGYzNDM2Mjc3MjE1OTI1NDNmZjNhMjJiMjBiNzAwMWIwYTU5OTI3NTdiNGEyMzM0YThmYWVmNzAwNGNlNjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A10" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie Samsung One UI" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos 7884 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637dff"), + "name" : "Apple iPhone XR Smart Phone 64 GB, (PRODUCT)RED", + "description" : "Apple iPhone XR Smart Phone 64 GB, (PRODUCT)RED", + "price" : "1115", + "sku" : "Apple-iPhone-XR-Smart-Phone-64-GB,-(PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-RED-491488443-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA2M3xpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDRhLzkwNTE3MTY3NDcyOTQuanBnfGY5NzBhMTg4NGYwMzliMDU0MGFhZWQxM2U3NzM2ZWZhZjY0MjM4MzczYjcwNzE3OTAwOGRkZjI5NGY3MTAxYTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e00"), + "name" : "Apple iPhone XR Smart Phone 64 GB, Yellow", + "description" : "Apple iPhone XR Smart Phone 64 GB, Yellow", + "price" : "1115", + "sku" : "Apple-iPhone-XR-Smart-Phone-64-GB,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-64GB-Yellow-491488444-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI5N3xpbWFnZS9qcGVnfGltYWdlcy9oY2MvaGE1LzkwNTE3MjM3NTk2NDYuanBnfGY1Nzk2M2QyZjA3YTc3Yjg1YmI2MWFhNGViM2JjMTA1MGI5OWNlNzhhNTViMGU3OGUwZjZjODU0MzA2YzBhNWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e01"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Yellow", + "description" : "Apple iPhone XR Smart Phone 128 GB, Yellow", + "price" : "1187", + "sku" : "Apple-iPhone-XR-Smart-Phone-128-GB,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Yellow-491488450-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzMwMHxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDg2LzkwNTE3MzcwNjM0NTQuanBnfDFjZDAwNDI3MGZmMjY2N2UyODlmMzIzNjViMDJmOGJkYmU5NzgxZDkxMjI0OGZhNjRjNTA5YTM5MWViNDk3NjQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e02"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Coral", + "description" : "Apple iPhone XR Smart Phone 128 GB, Coral", + "price" : "1187", + "sku" : "Apple-iPhone-XR-Smart-Phone-128-GB,-Coral", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Coral-491488451-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjkzN3xpbWFnZS9qcGVnfGltYWdlcy9oZWQvaGQ2LzkwNTE3MzMzMjc5MDIuanBnfDE0OGI0MmJhMWFlYjFiYmJhMWEzZTU1MTczZTQ0Y2QzYmJjZTFjZGVjNzc3ZjlhMWE5ZTEwYjhkYzFlMDEyZDM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e03"), + "name" : "Apple iPhone XR Smart Phone 128 GB, Blue", + "description" : "Apple iPhone XR Smart Phone 128 GB, Blue", + "price" : "1187", + "sku" : "Apple-iPhone-XR-Smart-Phone-128-GB,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-128GB-Blue-491488452-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjIyOXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDNmLzkwNTE3MzU3NTI3MzQuanBnfGE3MWUxMWFlZDA3ZWMwYjcyNjAzZDk2MTAxYzU3YjBmZTJiZmJkMGJjZjk2YTFkOWY3MzY0MzU5ODRhNzc5NzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e04"), + "name" : "Apple iPhone XR Smart Phone 256 GB, Black", + "description" : "Apple iPhone XR Smart Phone 256 GB, Black", + "price" : "1332", + "sku" : "Apple-iPhone-XR-Smart-Phone-256-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-Black-491488453-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIzfGltYWdlL2pwZWd8aW1hZ2VzL2hkYS9oZTgvOTA1MTc0Mjc2NTA4Ni5qcGd8OWEzODkxMTM1MTJkOWIzMWYzNjFhNWNmYmU0YjhjZjhmYzQ3MTUyMjI0OTM2ZDVhOTY2NzRiODEzZjQ5MjBmMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e05"), + "name" : "Apple iPhone XR Smart Phone 256 GB, White", + "description" : "Apple iPhone XR Smart Phone 256 GB, White", + "price" : "1332", + "sku" : "Apple-iPhone-XR-Smart-Phone-256-GB,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-White-491488454-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTIyMHxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDIxLzkwNTE3NTIwNzExOTguanBnfDlmYWNlNzgxNGYzOGQwNjZjZTdhY2ExY2Q0OGY5NmFjNTY4YTY4Njk0MWVhZDQxZmE4NTYyMjMwYzg2NzAzNTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e06"), + "name" : "Apple iPhone XR Smart Phone 256 GB, (PRODUCT)RED", + "description" : "Apple iPhone XR Smart Phone 256 GB, (PRODUCT)RED", + "price" : "1332", + "sku" : "Apple-iPhone-XR-Smart-Phone-256-GB,-(PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-RED-491488455-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA2M3xpbWFnZS9qcGVnfGltYWdlcy9oNmMvaDJkLzkwNTE3NDU3Nzk3NDIuanBnfGRlN2QxNDM1NTdlNDVjNzQ5MTdiYzY2NmI3YTgyZmY2ZmU3MjYzNTRkZDBkZDZkMDQwNmEyZjU3MTdmMTU5MTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e07"), + "name" : "Apple iPhone XR Smart Phone 256 GB, Yellow", + "description" : "Apple iPhone XR Smart Phone 256 GB, Yellow", + "price" : "1332", + "sku" : "Apple-iPhone-XR-Smart-Phone-256-GB,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XR-256GB-Yellow-491488456-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzI5N3xpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDY1LzkwNTE3NDk3Nzc0MzguanBnfDhhZWNjNzdlNjkyODNlODVhNzRlNDI0MTY2NTljOWQ0OTNiYjQxNTAzODM3NTAzMDJlZThlMTY5YmU2ODA3NzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Model", + "attributeValue" : "XR" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 15 hours
  • Video playback (wireless): Up to 16 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Assisted GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.09" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "194" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID - Enabled by TrueDepth camera for facial recognition
  • \n
  • Support for display of multiple languages and characters simultaneously
  • \n
  • Wide colour display (P3)
  • \n
  • 1400:1 contrast ratio (typical)
  • \n
  • Multi‑Touch display with IPS technology
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • \n
  • Three‑axis gyro & Face ID Sensors
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "FLAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "H.264" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "EarPods with Lightning Connector" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e08"), + "name" : "Apple iPhone 6s Plus Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 6s Plus Smart Phone 32 GB, Gold", + "price" : "711", + "sku" : "Apple-iPhone-6s-Plus-Smart-Phone-32-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Plus-Smart-Phone-32-GB-Gold-491297328-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTgwOXxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaGYyLzg5MjcyNzA2NjYyNzAuanBnfDZhYjk5OWU3YjJhNGZmN2VhNTFjYmVmZmZiYWM2ZDEyYTNlMzVhOTg4OGM5Yjc5N2EyM2ZmMDVmYzRkZjBhNjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours (3G)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 24 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "192" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M4V" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e09"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Jet Black", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Jet Black", + "price" : "759", + "sku" : "Apple-iPhone-7-Smart-Phone-32-GB,-Jet-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Mobile-Phones-491351014-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDkyOXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDY5Lzg5MjcwMjUxMDI4NzguanBnfDY1NjAwOGIzOGE4MWJiMmYwMmUwMTNkN2I2NDVjZjBjYzNjZDA4MzI5MGJhYzE0YzUxNGMxNGFmMTRiZmFlMzc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0a"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Jet Black", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Jet Black", + "price" : "911", + "sku" : "Apple-iPhone-7-Plus-Smart-Phone-32-GB,-Jet-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Mobile-Phones-491351010-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTQ0N3xpbWFnZS9qcGVnfGltYWdlcy9oZTcvaGQzLzg5MjcwMzU5MTYzMTguanBnfDk5MTEyMGIxNTZiM2EwYzdkNGM2YzNiNTQ3ODE5OTVlMzBhYjg4YTMzYzZkMTcyOTA0YjE3MzA5YzYxOTA4YmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Jet Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • \n
  • TD-SCDMA 1900 (F), 2000 (A)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41))
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0b"), + "name" : "Apple iPhone 7 Smart Phone 32 GB, Rose Gold", + "description" : "Apple iPhone 7 Smart Phone 32 GB, Rose Gold", + "price" : "759", + "sku" : "Apple-iPhone-7-Smart-Phone-32-GB,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-32-GB-Rose-Gold-491282717-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjM2OHxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGE0Lzg5MjcxMzQxNTQ3ODIuanBnfGRjODE5MmJiZWE2ODIyY2NiMGVjMjFiZDFmNTJiNzI5NDdjYzQ5ZTdjYTMxMzE4NGQ0MGM0MDE2NDNiNTIxZWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0c"), + "name" : "Apple iPhone X Smart Phone 64 GB, Silver", + "description" : "Apple iPhone X Smart Phone 64 GB, Silver", + "price" : "1332", + "sku" : "Apple-iPhone-X-Smart-Phone-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-X-Smart-Phone-64-GB-Silver-491350995-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTAzNHxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDA1Lzg5NjMzNjkzMDQwOTQuanBnfDRiYWFkMjhkNjFhNDIzYTJkZjk2Zjk0MjU2YjY3MmJmZmFkNjE5NGYwMWUwOTJjODMzZDYyYjMyOTE3ZWU1NTM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "X" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • CDMA EV-DO Rev. A (800, 1900, 2100 MHz)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE : (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5 mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0d"), + "name" : "Apple iPhone 7 Plus Smart Phone 128 GB, Silver", + "description" : "Apple iPhone 7 Plus Smart Phone 128 GB, Silver", + "price" : "986", + "sku" : "Apple-iPhone-7-Plus-Smart-Phone-128-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-128-GB-Silver-491282732-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDA2OXxpbWFnZS9qcGVnfGltYWdlcy9oZWMvaDkzLzg5MjcwOTIwODA2NzAuanBnfDE0YTJjZTQyNzQwY2VjNjFmNDMxMDVhNzlmZGY2MmMwNDNmNTgyNzczM2I2MzdmYmVkN2E1ZmE0MDVmODhmYTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0e"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, (PRODUCT)RED", + "price" : "1247", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-256-GB,-(PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRT82HN-A-Smart-Phones-491379785-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzg5NnxpbWFnZS9qcGVnfGltYWdlcy9oNGEvaDRlLzg5ODE2NjUwNTQ3NTAuanBnfDU4NzM5NmU1MTkzNWY2MjIxZTdjOGY4N2ZhZjM2MTljYjQ4NzRmY2Q5Y2RiMDA3NmYxYWUzNTY4YzgzZTI5Zjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 14 hours
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e0f"), + "name" : "Apple iPhone 8 Plus Smart Phone 64 GB, Silver", + "description" : "Apple iPhone 8 Plus Smart Phone 64 GB, Silver", + "price" : "1014", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-64-GB-Silver-491351003-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzIyNnxpbWFnZS9qcGVnfGltYWdlcy9oOTIvaGZlLzg5MjcwNjI3ODYwNzguanBnfDk2ZDhlMWQyMmU0ODM2MmI1MWVlZDk2NGYyYTk1MzBmMzZkMzQ0MDIwMGRhOGY2MjMzZmJiNmFjNWY2YWVhZjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (Wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e10"), + "name" : "Apple iPhone 6s Smart Phone 32 GB, Rose Gold", + "description" : "Apple iPhone 6s Smart Phone 32 GB, Rose Gold", + "price" : "580", + "sku" : "Apple-iPhone-6s-Smart-Phone-32-GB,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6s-Smart-Phone-32-GB-Rose-Gold-491282845-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTkzN3xpbWFnZS9qcGVnfGltYWdlcy9oODcvaDI5Lzg4NzU5MTQ3MjMzNTguanBnfGUzNGM4ODEyMGFkNWMxMjI0ZGY1OWI3NmY3MzVhNmY3M2FlYTczYWFlZWZhOTQ3Y2UzZDA5ODExMjBlNTgzNDQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6s" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 9" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 10 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), CDMA EV-DO Rev. A (800, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29)
  • \n
  • TD-LTE (Bands 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A9 chip" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M9 motion coprocessor
  • Dual-domain pixels for wide viewing angles
  • Full sRGB standard
  • Fingerprint-resistant oleophobic coating on front
  • Siri
  • 4K video recording
  • Face detection
  • Touch ID fingerprint sensor
  • Improved noise reduction
  • True Tone flash
  • iBeacon micro-location
  • Slo-mo video support for 1080p at 120 fps and 720p at 240 fps
  • Live Photos
  • Video & Photo geotagging
  • Sapphire crystal lens cover
  • Display Zoom
  • Support for display of multiple languages and characters simultaneously
  • " + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e11"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Silver", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Silver", + "price" : "911", + "sku" : "Apple-iPhone-7-Plus-Smart-Phone-32-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Silver-491282727-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDA2OXxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGU0Lzg5MjcwODk3ODY5MTAuanBnfDY2ODE4OGVjZTQzYWVlMGY3Y2VkMzIwYjllODNmN2JjZGMyNjJmNjQ4ODMxMDAxNzkyNGIzZmI1ODAzZWQxZGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e12"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, Space Grey", + "price" : "1231", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-256-GB-Space-Grey-491350996-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDc2Lzg4OTA4MTgzMzA2NTQuanBnfGJhMTNiYWE1NjFhNmY0NTRmYjNkMmRhY2M3M2U2ZDQxYjcxOGE0ZGQ4NzE2ZjQxZTY1MDRkNTk1N2ExYWRmMzU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e13"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, Silver", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, Silver", + "price" : "1247", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-256-GB-Silver-491350997-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzIyNnxpbWFnZS9qcGVnfGltYWdlcy9oZWYvaDk0Lzg5MjcwODM2MjY1MjYuanBnfGY3MjYxNjBjNDhhNDcwNGVhZWFlZTM3ZWFiMjQyYmM4M2UwYjI4NTU1MzBkZjVmZjMwMWZkZWNmNzJmN2YzYjY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e14"), + "name" : "Apple iPhone 8 Plus Smart Phone 256 GB, Gold", + "description" : "Apple iPhone 8 Plus Smart Phone 256 GB, Gold", + "price" : "1231", + "sku" : "Apple-iPhone-8-Plus-Smart-Phone-256-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Plus-Smart-Phone-256-GB-Gold-491350998-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM2MXxpbWFnZS9qcGVnfGltYWdlcy9oZmUvaDYxLzg5MjcwNzc3MjgyODYuanBnfDgzMzljNjY3YjhjNjI0MzMwODZmYjIzYjc1MTFkZGNiMDlmZGFiNDE5NGIwMzVmMzhmZjc0N2Y5YTU3ZTg0MGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.81" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "202" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e15"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, Space Grey", + "description" : "Apple iPhone 8 Smart Phone 256 GB, Space Grey", + "price" : "1116", + "sku" : "Apple-iPhone-8-Smart-Phone-256-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-256-GB-Space-Grey-491350999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OHxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDUyLzg5NjM0ODMyMDU2NjIuanBnfDIxYzQzMDgzODg1MGY5MmYzOGNhZDQxNTk0ZDFmYTFkMmQ0ZTc1N2Q0NTQ4ZDMxZjk3NDQ1NjIzYWNiMjBhOTI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e16"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, Silver", + "description" : "Apple iPhone 8 Smart Phone 256 GB, Silver", + "price" : "1116", + "sku" : "Apple-iPhone-8-Smart-Phone-256-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-256-GB-Silver-491351000-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMTQvaDYyLzg5NjM0Njk4MzYzMTguanBnfDNjOWI4ZjRiM2NmMDZiNDI3NDY5ZjMyNTk0YTY2MTcxNDVhMTE0ZmI4OTlkODk3YzNjNmVkMGZiMjIzNGEwMzE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e17"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, Gold", + "description" : "Apple iPhone 8 Smart Phone 256 GB, Gold", + "price" : "1116", + "sku" : "Apple-iPhone-8-Smart-Phone-256-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-256-GB-Gold-491351001-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDY2OXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDE3Lzg5NjM0NTc1ODEwODYuanBnfDliYTU5ZWM5N2FkNWExY2NkNzJhMDlhYzJiMTU2OWY1OWJiNzQ0MzA2OGRjYTc4MmZlNjU3YTQ1M2VkZWUwNzQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e18"), + "name" : "Apple iPhone 8 Smart Phone 256 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Smart Phone 256 GB, (PRODUCT)RED", + "price" : "1116", + "sku" : "Apple-iPhone-8-Smart-Phone-256-GB,-(PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRRL2HN-A-Smart-Phones-491379783-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzE1MXxpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDRkLzg5ODE2NzEwODQwNjIuanBnfDYyNWQwY2U4MGRiMzFiZjY5OTM4NGI1ZGY0MTY3MGM1Nzk1OTUxNmU1NDEwNjRmZjZlYzI2NDk2N2NlNjA4ZTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • Video playback (wireless): Up to 13 hours
  • Audio playback (wireless): Up to 40 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "256" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e19"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, Silver", + "description" : "Apple iPhone 8 Smart Phone 64 GB, Silver", + "price" : "869", + "sku" : "Apple-iPhone-8-Smart-Phone-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-8-Smart-Phone-64-GB-Silver-491351008-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkyM3xpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDAwLzg5MjcwNjk4NjM5NjYuanBnfDBlNDcwMzBhZjNjMzRmODQ5OWYzNWU3Y2NhZWU4MzViZGZhYTFiMDk0MDVmZjE3MjkzZDA3ZTdiODlmM2FkMjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (wireless)" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1a"), + "name" : "Apple iPhone 8 Smart Phone 64 GB, (PRODUCT)RED", + "description" : "Apple iPhone 8 Smart Phone 64 GB, (PRODUCT)RED", + "price" : "985", + "sku" : "Apple-iPhone-8-Smart-Phone-64-GB,-(PRODUCT)RED", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-MRRK2HN-A-Smart-Phones-491379782-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjkzMHxpbWFnZS9qcGVnfGltYWdlcy9oNjIvaDUwLzg5ODE2NjcwMjA4MzAuanBnfDZlYTBhNWM0ZDE5MDg0YmY5MTFiM2NiYzBlOWM5MTAzZjdiZjkxY2Y4NDk0ZWE5MmQ5MmVjYzgzYmEyMGM3MmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "(PRODUCT)RED" + }, + { + "attributeName" : "Model", + "attributeValue" : "8" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 11" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • Video playback (wireless): Up to 13 hours
  • Audio playback (wireless): Up to 40 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • TD-SCDMA 1900 (F), 2000 (A)
  • \n
  • UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 28, 29, 30, 66)
  • \n
  • TD-LTE (Bands 34, 38, 39, 40, 41)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A11 Bionic chip with 64-bit architecture" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.84" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.73" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M11 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Quad-LED True Tone \n\nflash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • Fingerprint sensor built into the new Home \n\nbutton
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple \n\nlanguages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1b"), + "name" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, Blue", + "description" : "LYF Wind 7 Smart Phone 16 GB, 2 GB RAM, Blue", + "price" : "114", + "sku" : "LYF-Wind-7-Smart-Phone-16-GB,-2-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5016-Mobile-Phones-581107911-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDA5fGltYWdlL2pwZWd8aW1hZ2VzL2gzOS9oZTIvOTAzODg2MjM4NTE4Mi5qcGd8MGQ0YTVmZGZkYmU1ZjI3M2EwZWY2ZjQ1M2QzNTI4MTljMTlmMDdiMDFlOThlY2IyZjE1ZTA0MDRiNzc3ZTg2MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Wind" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Lollipop 5.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2250" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Video Playback Time: Up to 5 hours
  • \n
  • Audio Playback Time: 32 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 180 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/ BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD BAND3(1800)/ BAND5(850)
  • \n
  • TDD BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MSM8909 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "AVI" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0 " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1c"), + "name" : "LYF Water 7S Smart Phone 16 GB, 3 GB RAM, Gold", + "description" : "LYF Water 7S Smart Phone 16 GB, 3 GB RAM, Gold", + "price" : "179", + "sku" : "LYF-Water-7S-Smart-Phone-16-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-LS-5507-Mobile-Phones-581107928-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjQwfGltYWdlL2pwZWd8aW1hZ2VzL2gwOC9oZWYvOTAzODg1MjU1NDc4Mi5qcGd8YmYyZWEyY2ZlMDNhMGI3MDMxYTczNjE0NTQyODc3ODY0OTNmZGExNGIyMjA3ZTUyZjQ4NjIwODgyZGUyYmU3MA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7S" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Water" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - FHD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • HD Video Playback : Up to 5 hours
  • \n
  • Audio Playback : Up to 6 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 400 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 6 hours (4G)" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1(2100) / BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: BAND3(1800) / BAND5(850)
  • \n
  • LTE TDD: BAND40(2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.21" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "141" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice Unlock
  • \n
  • Mobile Anti-theft
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MID" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Non removable battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1d"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Burgundy Red", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Burgundy Red", + "price" : "1015", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-64-GB,-6-GB-RAM,-Burgundy-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S9Plus-Smart-Phones-491488287-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njk4fGltYWdlL2pwZWd8aW1hZ2VzL2gwZS9oNmUvOTA2OTUwMDc2MDA5NC5qcGd8M2UxMTEwYTg3MGRhNmRiN2Q1MTIwYzE0NjJmMDlkMTAxZTUxYjAxMzljODUwZmQwYjJjMjgwZDE4MzUwMmQwNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Burgundy Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Exynos 9810 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Travel Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1e"), + "name" : "Samsung Galaxy Note 9 Smart Phone 128 GB, 6 GB RAM, Lavender Purple", + "description" : "Samsung Galaxy Note 9 Smart Phone 128 GB, 6 GB RAM, Lavender Purple", + "price" : "1067", + "sku" : "Samsung-Galaxy-Note-9-Smart-Phone-128-GB,-6-GB-RAM,-Lavender-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-NOTE-9-Smart-Phones-491488286-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTQ1fGltYWdlL2pwZWd8aW1hZ2VzL2g5NS9oNmYvOTA2OTUwNDAzNjg5NC5qcGd8ZjJmZDA1Y2RkNmFlN2NlMjVhZDQwZGExMzhjYTE1MGE4ZjgzY2NjODQ3NGIwMDg4Nzc2YTVmNTQ2YzlkZTMxNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lavender Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note 9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 17 hours
  • \n
  • Audio Playback Time: Up to 59 hours
  • \n
  • Internet Usage Time(LTE): Up to 16 hours
  • \n
  • Video Playback Time: Up to 20 hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 29 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, DCS: 1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • \n
  • TD-SCDMA: B34(2010), B39(1880)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • \n
  • TDD: B38(2600), B39(1900), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "201" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e1f"), + "name" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3 Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "1029", + "sku" : "Google-Pixel-3-Smart-Phone-64-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-Smart-Phones-491488295-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDIyfGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oYjUvOTA2NDYzOTIwMTMxMC5qcGd8ZGZjYzk4ZDI4ZGVmNTA3NDNlYzUzZjI1YzkyNjkwOGI4YzE3ZmExYjNlZTZmN2ZjODk2Yzg4Zjc0ZjFiMDRmMg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2915" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.56" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e20"), + "name" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Not Pink", + "description" : "Google Pixel 3 XL Smart Phone 128 GB, 4 GB RAM, Not Pink", + "price" : "1334", + "sku" : "Google-Pixel-3-XL-Smart-Phone-128-GB,-4-GB-RAM,-Not-Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-3-XL-Smart-Phones-491488306-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzgwfGltYWdlL2pwZWd8aW1hZ2VzL2hlOS9oODYvOTA2NDY2MDY5NzExOC5qcGd8ZWIxNGJiNjBiMmY1NWQ3YjJiZjZjNzVjNTY5ODcyYTY5ZjRjNDQ1MjExMjczNTAyZjhkMTkwNDBjM2E5YWM0ZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Not Pink" + }, + { + "attributeName" : "Model", + "attributeValue" : "3 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8
  • CDMA EVDO Rev A: BC0/BC1/BC10
  • WCDMA: W1/W2
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1/2/3/4/5/7/8/12/13/17/18/19/20/25/26/28/29/30/32/66/71
  • TD-LTE: Bands 38/39/40/41/42/46
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.5 GHz + 1.6 Ghz Qualcomm Snapdragon 845 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sensors: Active Edge" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Switch Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type - C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e21"), + "name" : "BlackBerry Evolve Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "BlackBerry Evolve Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "435", + "sku" : "BlackBerry-Evolve-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/BlackBerry-EVOLVE-Smart-Phones-491488309-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NzA3fGltYWdlL2pwZWd8aW1hZ2VzL2g1NS9oMGIvOTA2NzA5MTI5NjI4Ni5qcGd8YjAzOTRhMjk0ZTZmMzI2NTgwN2UzNzIzMGRmNTNjNmI1MmQ0MTVjNTI5OWIwMjBlZmNjMjFjYWQxMTQwNGIyNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Evolve" + }, + { + "attributeName" : "Brand", + "attributeValue" : "BlackBerry" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2160 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (5.99 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "384 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/3/5/7/8/40/41" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "BlackBerry", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e22"), + "name" : "Tecno Camon i2 ID5A Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Tecno Camon i2 ID5A Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "174", + "sku" : "Tecno-Camon-i2-ID5A-Smart-Phone-32-GB,-3-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-TECNO-ID5A-Smart-Phones-491488118-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTExfGltYWdlL2pwZWd8aW1hZ2VzL2hlMy9oNDkvOTA4NzY2MjQ4OTYzMC5qcGd8OTM5MzNkN2M1NWY2MTVkN2U5YTk2NjdiYTIzMDE4NzdmN2Y1NjRmNDE0ZjZlZDE0YjVmMzhkZTgzZjAzN2JhMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "ID5A" + }, + { + "attributeName" : "Series", + "attributeValue" : "i2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HISO 4.1 base on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MT6761 Quad Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e23"), + "name" : "OPPO F9 Smart Phone 64 GB, 4 GB RAM, Mist Black", + "description" : "OPPO F9 Smart Phone 64 GB, 4 GB RAM, Mist Black", + "price" : "319", + "sku" : "OPPO-F9-Smart-Phone-64-GB,-4-GB-RAM,-Mist-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-F9-Mist-Black-Smart-Phone-491420303-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTczMXxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDYyLzkwMzM0NTYyODc3NzQuanBnfGMwN2JkODQ4ODJjYzY3ZWUwOTRkZWEwMWUxZGE5ZjY1MjQ3ZDQxNjYyZmYxMjkwMmIwNTNhZTcyYzk2ZGU2ZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Mist Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: Bands 1/3/5/8
  • TD-LTE: Bands 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "BT2.1(+EDR)/BT4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS : GPS/A-GPS/GLONASS/Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK P60" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e24"), + "name" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, White", + "description" : "Nokia 3.1 Plus Smart Phone 32 GB, 3 GB RAM, White", + "price" : "186", + "sku" : "Nokia-3.1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-12ROOW21A01-Smart-Phones-491488398-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDkwfGltYWdlL2pwZWd8aW1hZ2VzL2gwNS9oN2EvOTA2OTQ2NTA0Mjk3NC5qcGd8YTJhZmU1MTgwNDgzNzk3ZGY5M2E1M2VlNzI1MzYzNjNkODc0NzJmNDM4ODA3NWJmZWNhYjBjMmJlZjliZTFmNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P22" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.68" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e25"), + "name" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Blue", + "description" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Blue", + "price" : "160", + "sku" : "Samsung-Galaxy-J4-Smart-Phone-16-GB,-2-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J4-Smart-Phones-491419874-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjc5NHxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDIyLzg5OTM0MjMyNjE3MjYuanBnfDZiNmZiZmRiMmQxZDdkMTJkMWJlOTY0NDJmMDE1ODgxMjUxNWQ5NzJiODY2YjMwODJkOGNhM2M0OWQ3ZWQxZGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "J4" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e26"), + "name" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Aqua Blue", + "description" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Aqua Blue", + "price" : "153", + "sku" : "Tecno-Camon-iAir2+-Smart-Phone-32-GB,-2-GB-RAM,-Aqua-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-CAMON-I-AIR-2-Smart-Phone-491550704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTU2fGltYWdlL2pwZWd8aW1hZ2VzL2hjNy9oY2IvOTA5NTkzNzUyMzc0Mi5qcGd8YTQ3NDM5YWM5YTcwMGQ4ZWJiOGYyY2NhYjMzMmFmNDUxOWMwYmU5YzYwMDk2NTM5YWZkOTcyYTE4OTkzZGQ1Yw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aqua Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "iAir2+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e27"), + "name" : "Samsung Note 9 Smart Phone 128 GB, 6 GB RAM, Alpine White", + "description" : "Samsung Note 9 Smart Phone 128 GB, 6 GB RAM, Alpine White", + "price" : "1067", + "sku" : "Samsung-Note-9-Smart-Phone-128-GB,-6-GB-RAM,-Alpine-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-NOTE-9-Smart-Phones-491503479-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTEwfGltYWdlL2pwZWd8aW1hZ2VzL2g2Ni9oM2UvOTA4NzY1NTYwODM1MC5qcGd8MmE2M2I5MDM0ZGZhNjFjZTA4YWNhZDE5NzZkZGYxMGI2YzdmYjVhMjVjNmYwYzdkOGYwMzgxNDRlNTIyN2M1Zg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Alpine White" + }, + { + "attributeName" : "Model", + "attributeValue" : "Note 9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.25 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 17 hours
  • \n
  • Audio Playback Time: Up to 59 hours
  • \n
  • Internet Usage Time(LTE): Up to 16 hours
  • \n
  • Video Playback Time: Up to 20 hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 29 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • \n
  • TD-SCDMA: B34(2010), B39(1880)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • \n
  • LTE TDD: B38(2600), B39(1900), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7GHz, 1.7GHz Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.19" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.64" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "201" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e28"), + "name" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Champagne Gold", + "description" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Champagne Gold", + "price" : "124", + "sku" : "Tecno-KB2-Camon-iAce-2-Smart-Phone-32-GB,-2-GB-RAM,-Champagne-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-KB2-Mobile-Phone-491550881-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjgyMXxpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDM3LzkxMjM1NDUzMTc0MDYuanBnfGJjZGIyNWVlYjhmOTIxMDU3ZDFjOGEzNTI3ZmUwNGFlNjg5ZjYwM2RiZGVjODM0ZjgyOTBmNTMwYzczZWE4ZTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "KB2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iAce 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HiOS 4.1 based on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e29"), + "name" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Blue", + "description" : "Tecno KB2 Camon iAce 2 Smart Phone 32 GB, 2 GB RAM, Midnight Blue", + "price" : "124", + "sku" : "Tecno-KB2-Camon-iAce-2-Smart-Phone-32-GB,-2-GB-RAM,-Midnight-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-KB2-Mobile-Phone-491550880-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzEwfGltYWdlL2pwZWd8aW1hZ2VzL2g3Zi9oZWUvOTEyMzU0NDk4OTcyNi5qcGd8NjE3NGRjNDk1NzgwMjViZDNkNWVmOTQ4ZmRjYWFlODM3YmQwYjBlNzVjMmY1Y2I4MmQxNzNjYmFmYzI0NmE1Mw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "KB2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iAce 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "HiOS 4.1 based on Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2a"), + "name" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Blue", + "description" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Blue", + "price" : "63", + "sku" : "Itel-A44-AIR-Smart-Phone-8-GB,-1-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-AIR-Smart-Phones-491551050-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTkwfGltYWdlL2pwZWd8aW1hZ2VzL2gzNS9oZWIvOTEyODg2NDc0MzQ1NC5qcGd8YzdmMTMyZWZjN2VmMmE2YTA3NmFkMDEwYjhkZmZlMTRiZjMyNzczZjViZDUyZGFiNjIxNjI3YjliZmJjMWZhMg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 AIR" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1 (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz 64 bit Quad Core Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2b"), + "name" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gold", + "description" : "Itel A44 AIR Smart Phone 8 GB, 1 GB RAM, Gold", + "price" : "63", + "sku" : "Itel-A44-AIR-Smart-Phone-8-GB,-1-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-AIR-Smart-Phones-491551058-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDY4fGltYWdlL2pwZWd8aW1hZ2VzL2g5Mi9oODcvOTEyODg2NTA3MTEzNC5qcGd8ZDk4ODMzMzcyODU0ODIzYTkwZDA3OWQwZGNlYjQ2OTEzOWQ1Y2NjNTVhYjVlZDE3N2E2ZGUxZTQ4NzljMjNmYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44 AIR" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1 (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz 64 bit Quad Core Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2c"), + "name" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "description" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Grey", + "price" : "116", + "sku" : "Intex-Cloud-Style-4G-Smart-Phone-8-GB,-1-GB-RAM,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Cloud-Style-4G-Smart-Phone-Grey-491282668-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTE2N3xpbWFnZS9qcGVnfGltYWdlcy9oYzEvaDQyLzg5MjY5MjE3NTI2MDYuanBnfDc2MDllYTE1NWM0ZWQyNjY5NTE4NWI0M2VmOTBhYTVlM2JkYjZmNzlkYzY3NGM0NDgwOGEyNjE4YWY3NDI4Nzc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "Style 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Cloud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0 (Marshmallow)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 400 hours (GSM)" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 10 hours (GSM)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD : Band 3, Band 5
  • \n
  • TDD : Band 40
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery
  • Screen Guard
  • Protection Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Intex", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2d"), + "name" : "Intex Aqua Lions 4G Smart Phone, Champagne", + "description" : "Intex Aqua Lions 4G Smart Phone, Champagne", + "price" : "99", + "sku" : "Intex-Aqua-Lions-4G-Smart-Phone,-Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Lions-4G-Smart-Phone-Champagne-491297443-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjc1MHxpbWFnZS9qcGVnfGltYWdlcy9oMDgvaDFmLzg5Mjc1Nzk5MzA2NTQuanBnfDgyZGJmZjBiMGExMTZhMzlmMGNmNzAxZWY3ZDdkYzdiNWE0NmJmZmJhMDJmNjNlZTA5Zjc4MDQ3MDNmYzRiZWQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "Lions 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0 Marshmallow" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Upto 350 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: Upto 8 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900Mhz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA(900/2100)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD(B3/5), TDD(B40), FDD-LTE/WCDMA/GPRS/EDGE/GSM" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "146.7" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Android Native" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Handset
  • Battery
  • Screen Guard
  • Protection Cover
  • Flip Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TN" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Intex", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2e"), + "name" : "LYF C451 Smart Phone 8 GB, 1 GB RAM, White/Gold", + "description" : "LYF C451 Smart Phone 8 GB, 1 GB RAM, White/Gold", + "price" : "73", + "sku" : "LYF-C451-Smart-Phone-8-GB,-1-GB-RAM,-White-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-C451-Smart-Phone-White-Gold-581108681-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjIxOXxpbWFnZS9qcGVnfGltYWdlcy9oYjgvaDFiLzg4OTA3MTI0MjQ0NzguanBnfDk0NDMxZjI4OTE1NDE4ODk0YmY2MzYzNjQxMTlmYWQwZmJlNzJjMTk3Y2JlZjQ0NGQwNGYzZWU2MTc1YWI3MGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "C451" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0.1 (Marshmallow)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: Up to 6 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 240 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 12.5 Hours (4G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA BAND1 (2100)/ BAND8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE-FDD BAND3(1800)/ BAND5(850)
  • \n
  • LTE-TDD BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "USB OTG support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad-Core Qualcomm Snapdragon 210 MSM8909" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.9" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger Adapter
  • Earphone
  • USB cable
  • QSG
  • Warranty card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e2f"), + "name" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Champagne", + "description" : "Intex Cloud Style 4G Smart Phone 8 GB, 1 GB RAM, Champagne", + "price" : "116", + "sku" : "Intex-Cloud-Style-4G-Smart-Phone-8-GB,-1-GB-RAM,-Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-CLOUD-20STYLE-491282669-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTczNnxpbWFnZS9qcGVnfGltYWdlcy9oMGYvaDAzLzg5MjY5MzE5MTA2ODYuanBnfDc0ZDYyMjMwN2RiODBmOTA0YjdkODU4MTVmMzVjNjhlYmI3Yzg2YzFjOGM4NjQxNjA1MTI2ZTc4M2E4OTY1NDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "Style 4G" + }, + { + "attributeName" : "Series", + "attributeValue" : "Cloud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v6.0 (Marshmallow)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 400 hours (GSM)" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 10 hours (GSM)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD : Band 3, Band 5
  • \n
  • TDD : Band 40
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "AGPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Battery
  • Screen Guard
  • Protection Cover
  • User Manual
  • Adapter
  • USB Cable
  • Earphones
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Intex", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e30"), + "name" : "Samsung Galaxy J5 Prime SM-G570F Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Samsung Galaxy J5 Prime SM-G570F Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "245", + "sku" : "Samsung-Galaxy-J5-Prime-SM-G570F-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J5-Prime-SM-G570F-Smart-Phone-32-GB-Gold-491066688-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzAwMXxpbWFnZS9qcGVnfGltYWdlcy9oMDQvaGM2Lzg4OTA3MDk4MDMwMzguanBnfDhmMTcwYWZhOGU5MWRkOWQ4OWU0OWU3MGMwODkzYWNlODI4NmE5NTJlMjE5MzlkODk5OGZiYTU0NGY5NmE3MWU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J5 Prime SM-G570F" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G) - Up to 10 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 15 hours (3G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.28" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.95" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e31"), + "name" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Starry Black", + "description" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Starry Black", + "price" : "102", + "sku" : "Motorola-moto-C-Plus-Smart-Phone-16-GB,-2-GB-RAM,-Starry-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-C-Plus-Smart-Phones-491351085-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mzg0MnxpbWFnZS9qcGVnfGltYWdlcy9oMDQvaGJlLzg5MjExOTE0ODEzNzQuanBnfDRlOWQ0YjllNzgyYjg1MzZhMWE4M2FiYmEyMmZjZWJlYWY1MTI3MTEyMTlmOTRkMWNjMzk5NWY0Y2VlMGJhOTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto C Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/7/8
  • TDD: 40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core 64-bit MediaTek MT6737 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.23" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e32"), + "name" : "Sony Xperia R1 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Sony Xperia R1 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "203", + "sku" : "Sony-Xperia-R1-Smart-Phone-16-GB,-2-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-R1-Smart-Phones-491351084-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI3NXxpbWFnZS9qcGVnfGltYWdlcy9oYmUvaDczLzg5OTg0NzY3NDI2ODYuanBnfDNhODJlMmU0YmE0OGQ1N2FhMmJkNjAxNTY1YzYwZTFhNDNiYThmMGIzYjZhMzBmN2NhYzZjMDA3Njg0M2UyOGI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "R1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android 8.0 (Oreo)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2620" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430 Mobile Platform" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.32" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e33"), + "name" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "240", + "sku" : "Gionee-A1-Lite-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Lite-Smart-Phones-491350925-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDEyOHxpbWFnZS9qcGVnfGltYWdlcy9oMmYvaDMyLzg5MjEyNDA2OTg5MTAuanBnfDRkZGIwYTM3OWQ2YmNmMDkxN2UxNmYxNzk5MTM1ODk3ZmJkNDM0MTQ5YjVmNGIwNGJlNzI4NWI0NjBmZGU4MDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.4 cm (5.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Octa Core MediaTek MT6753V/WA Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.05" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.44" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "116" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e34"), + "name" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Gionee A1 Lite Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "240", + "sku" : "Gionee-A1-Lite-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-20Lite-Smart-Phones-491350924-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTIwOHxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDE4Lzg4ODk2NzkxODM5MDIuanBnfGQxZjg1YTYxYTUwNmM2MjQ4NzljYmI0OTdjZmQ0YmI2MmU1ZjgyMTU2ODIxNTQ3OWE4MzY5ZWE3MDM1MmNhNDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.4 cm (5.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Amigo 4.0 (Android 7.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MT6753V/WA 64-bit Octa core 1.3GHz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Weight", + "attributeValue" : "116" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e35"), + "name" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "description" : "Motorola moto C Plus Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "price" : "102", + "sku" : "Motorola-moto-C-Plus-Smart-Phone-16-GB,-2-GB-RAM,-Fine-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-Moto-20C-20Plus-Smart-Phones-491351087-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTQyNHxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaDIxLzg4ODk2NzE2NDcyNjIuanBnfDhiMjkzMWY4NWUzMTZmY2Y1NjliNTdiYzdkMmNiMzQwY2M5NWVmNzNhMTJiZTcwNDYxNzdjYzYzNmY4YjM4NGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto C Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850, 900, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: Band 01, 03, 05, 07, 08
  • TDD: Band 40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4. 1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Mediatek MTK6737 Quad Core 1. 3Ghz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e36"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Polaris Blue", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Polaris Blue", + "price" : "1015", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-64-GB,-6-GB-RAM,-Polaris-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S9-Plus-Mobiles-491503480-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjM3fGltYWdlL2pwZWd8aW1hZ2VzL2g3Mi9oYmYvOTExMTg1NzYyNzE2Ni5qcGd8NjBkNjg1NTVhMTI0ZGViNDI0NjY0ZDA0OWVmZDM2NDIwMmMxZTI4Yjc5ZDg5MmRmYWFmMTE0ZTExNWY1NzkwNw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Polaris Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2960 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.80 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 13 hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 15 hours
  • \n
  • Audio Playback Time: Up to 54 hours
  • \n
  • Internet Usage Time(LTE): Up to 15 hours
  • \n
  • Video Playback Time: Up to 18 hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 25 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: B1(2100), B2(1900), B4(AWS), B5(850), B8(900)
  • \n
  • TD-SCDMA: B34(2010), B39(1880)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD-LTE: B38(2600), B39(1900), B40(2300), B41(2500)
  • \n
  • FDD-LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B18(800), B19(800), B20(800), B25(1900), B26(850), B28(700), B32(1500), B66(AWS-3)
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.7 GHz Exynos 9810 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.18" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e37"), + "name" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Fusion Black", + "description" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Fusion Black", + "price" : "131", + "sku" : "Vivo-Y91i-Smart-Phone-16-GB,-2-GB-RAM,-Fusion-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551053-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDkwfGltYWdlL2pwZWd8aW1hZ2VzL2hmMi9oZDMvOTEyMzIxMzkwMTg1NC5qcGd8ZTI2NTUyOWE1YWZjMDk5MmMzYzZjN2Q1MTE1Y2QyMzIwNTBjYzlhOWYzOTA4NDczNmQ0YjQwMjZjYzczOWY4Nw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fusion Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation microUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e38"), + "name" : "Samsung Galaxy J2 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Samsung Galaxy J2 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "158", + "sku" : "Samsung-Galaxy-J2-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/424264c0-faf3-4f43-b398-5b8d2c66d1ea-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDA1MXxpbWFnZS9qcGVnfGltYWdlcy9oNTkvaDlmLzg4MDY1NjEwNTQ3NTAuanBnfDMyMTY3YzY2NDQ2YTkwM2M1NGVjMmExNTg3MjExOGY1MGVjNTAxODE4OTRmZTJkYTgxYjU1MThkNmIyZmU5NGU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 Pro" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback Time - Up to 11 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours (3G WCDMA)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850,GSM900,DCS1800,PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS - B1(2100),B2(1900),B5(850),B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100),B3(1800),B5(850),B8(900),B20(800)
  • \n
  • TDD LTE - B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad-Core" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.24" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.11" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e39"), + "name" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Fine Gold", + "description" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Fine Gold", + "price" : "203", + "sku" : "Motorola-moto-G5S-Smart-Phone-32-GB,-4-GB-RAM,-Fine-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Smart-Phones-491362233-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDEwM3xpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDNlLzg5MjEyMDMxNDY3ODIuanBnfDVjMTRjNzE4NzliNGMxMTE4ZTY4NGM3YjQyZTE0OTY4ZDNhMzMwMGQ5YmVmOWI4YmM0ZDIzZTNjMTE2MjdkYjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+: 850, 900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1, 3, 5, 8, 28, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 1.4 GHz Octa-Core Qualcomm Snapdragon 430" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.35" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3a"), + "name" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "description" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "price" : "85", + "sku" : "Intex-Aqua-Pro-Smart-Phone-8-GB,-1-GB-RAM,-Dark-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Pro-Smart-Phones-491362215-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MzcwOHxpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDQwLzg5MjEyMDUxMTI4NjIuanBnfDc4NGIxMWE3ODcxNDUwM2I3N2M0YzU0YTg5Mzg1MWQ5MDM1Mjc5NjVkMzM3MTY2ZTVhZjQwMzZiZjJmMTY3Yjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Up to 300 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: up to 10 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 850/1800MHz
  • TDD: 2300MHz
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core Cortex A7 Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3b"), + "name" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Lunar Grey", + "description" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Lunar Grey", + "price" : "203", + "sku" : "Motorola-moto-G5S-Smart-Phone-32-GB,-4-GB-RAM,-Lunar-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Smart-Phones-491362235-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDIwN3xpbWFnZS9qcGVnfGltYWdlcy9oM2MvaGY1Lzg5MjEyMDkwNDUwMjIuanBnfGZlNDFmY2MyMjVjMmMyNjk5NDg5ZTE2NjM5YmViNDA0YjVlN2VjNTEwY2JlN2YzYzEzY2U3YTA1NDc4YjRhMjM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lunar Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+: 850, 900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1, 3, 5, 8, 28, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 1.4 GHz Octa-Core Qualcomm Snapdragon 430 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.35" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3c"), + "name" : "Intex Aqua Style 3 Smart Phone 16 GB, 1 GB RAM, Black", + "description" : "Intex Aqua Style 3 Smart Phone 16 GB, 1 GB RAM, Black", + "price" : "86", + "sku" : "Intex-Aqua-Style-3-Smart-Phone-16-GB,-1-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Style-III-Mobile-Phones-491362509-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTE3N3xpbWFnZS9qcGVnfGltYWdlcy9oNjAvaGQxLzg4OTcyMzYyMDU1OTguanBnfDMyZGNiZjU0ZDY4YzA1NDg5MTVmZDVlYTNkYTY1MjkzYWI5NjIxMTMyNDhjNGQ1YzU1MmIwYjk3OTNlMjJlMjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Aqua Style 3" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2500" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "5 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 2100/1900/850/900 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1800/2300 MHz" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Spreadtrum Quad Core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "164" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3d"), + "name" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Iron Grey", + "description" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Iron Grey", + "price" : "145", + "sku" : "Motorola-moto-E4-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Iron-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E4-Plus-Mobile-Phones-491379572-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzI1NHxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDNhLzg5MjE5MTEyNjMyNjIuanBnfDc4NmNkMTBlMWU3ODUzNzRkZjEyODE0ODIxYjc3MWI2MmU4Mjg5MTkyNGQ3N2RlOGMyYWQ2ZTMyYTVhYzZiN2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto E4 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B40
  • FDD: B1/3/5/7/8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz MT6737 quad core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.8" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3e"), + "name" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Oxford Blue", + "description" : "Motorola moto G5S Smart Phone 32 GB, 4 GB RAM, Oxford Blue", + "price" : "203", + "sku" : "Motorola-moto-G5S-Smart-Phone-32-GB,-4-GB-RAM,-Oxford-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-Moto-G5S-Smart-Phones-491362232-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODQyMnxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDVkLzg5NzgzNTkzNTMzNzQuanBnfGQyMWFlYTAxNDQ5Zjg2OTg4NWE1MmJlOTQxNDE5YzliOGZlNDM2ODUzODNkMjYxZmE1M2NkOWQ4M2QzZTk1YjE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Oxford Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5s" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+ (850, 900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE: B1, 3, 5, 8, 28, 40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + HSPA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz octa-core Qualcomm Snapdragon 430 processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.35" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "157" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bottom-port loud speaker" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e3f"), + "name" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Champagne", + "description" : "Intex Aqua Pro Smart Phone 8 GB, 1 GB RAM, Champagne", + "price" : "85", + "sku" : "Intex-Aqua-Pro-Smart-Phone-8-GB,-1-GB-RAM,-Champagne", + "imageUrl" : "https://www.reliancedigital.in/medias/Intex-Aqua-Pro-Smart-Phones-491362214-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDY2MHxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaDU5Lzg5MjExOTk4Njk5ODIuanBnfDg1NmJhZDNiMzUwNmY0YWMwMDRjMmE5YTFmNzcxYzBiMTIzYmMxMDc4Y2YyODU5ZTE4YzQ1MGJjMDIyMGZlNDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Intex" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "854 x 480" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 6.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "GSM: Up to 300 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "GSM: up to 10 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 850/1800MHz
  • TDD: 2300MHz
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.69" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Intex", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e40"), + "name" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "145", + "sku" : "Motorola-moto-E4-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-E4-PLUS-Smart-Phones-491379573-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTE0MnxpbWFnZS9qcGVnfGltYWdlcy9oZjAvaDZjLzg5ODE2MzQ4NDI2NTQuanBnfDQwYWE3NTQxZDAzODFjMzdiMzUyZThkZjBhMGUxZWM4ZTQwMDQ2ZDEwYmVmMGEyZjMwZDg1MWI3YWI4YjY5NDU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "E4 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE B40
  • \n
  • FDD LTE B1/3/5/7/8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MT6737 Quad-core, ARM Mali T720 MP1 650 MHz processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.75" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "198" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e41"), + "name" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Motorola moto E4 Plus Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "145", + "sku" : "Motorola-moto-E4-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-MOTO-E4-PLUS-Smart-Phones-491379574-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTA3OHxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDE1Lzg5ODE2MzU0OTgwMTQuanBnfDk0NGM5NjMxYjdiNTkyNTdkZWUyMjA5YzI0MmRhYWU5OTVlNjRiZWQwYTUyYmVlM2RkM2ZiYzE5YTdmYjNjZjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "E4 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA B1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE B40
  • \n
  • FDD LTE B1/3/5/7/8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MT6737 Quad-core, ARM Mali T720 MP1 650 MHz processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.75" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "198" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MPEG4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e42"), + "name" : "Samsung Galaxy J7 Prime 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Samsung Galaxy J7 Prime 2 Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "218", + "sku" : "Samsung-Galaxy-J7-Prime-2-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J7-Prime-2-Smart-Phones-491379672-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTEzMXxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaDIxLzg5ODE2ODc1OTkxMzQuanBnfDRlNWM3NWU3NTM1ZTBjZjk0MzNmNDY5NTExMWY2NjAzZjVkNGY4MmQ2YTU2MGFiZWU5ZDgzZTg2YWM1NjgwYmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J7 Prime 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 12 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours (3G WCDMA)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6GHz Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e43"), + "name" : "Samsung J7 Duo Smart Phone 32 GB, 4 GB RAM, Black", + "description" : "Samsung J7 Duo Smart Phone 32 GB, 4 GB RAM, Black", + "price" : "261", + "sku" : "Samsung-J7-Duo-Smart-Phone-32-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J7-Duo-Smart-Phones-491379712-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjgzNnxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDUwLzg5ODE2NDUwNjYyNzAuanBnfDdmY2FmMTVlYzIxZTQwNjQ5M2E1OWFhMzM3MjRmYzZmMTJkYmVjZDNjYmExYzJjMDg2YTliMjVhYTEzNTMxZmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J7 Duo" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time(3G): Up to 11 hours\nInternet Usage Time(LTE): Up to 13 hours\nInternet Usage Time(Wi-Fi): Up to 13 hours\nVideo Playback Time: Up to 17 hours\nAudio Playback Time: Up to 66 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 20 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Octa-Core Exynos 7 Series processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "15.35" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e44"), + "name" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Ocean Blue", + "description" : "Vivo Y91i Smart Phone 16 GB, 2 GB RAM, Ocean Blue", + "price" : "131", + "sku" : "Vivo-Y91i-Smart-Phone-16-GB,-2-GB-RAM,-Ocean-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/VIVO-Y91I-Mobile-491551054-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTgxfGltYWdlL2pwZWd8aW1hZ2VzL2hlNy9oZGUvOTEyMzIxMzU3NDE3NC5qcGd8NTI5MGFiZWUwZDI1NTI1OGE5OTZlN2FlMDk4NWM0OGM1OTYwZDE2ZjkxODlhNzEzMjgyYzlmOWZhMjI3NzgwNg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ocean Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y91i" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.8 cm (6.22 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4030" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Helio P22 (MTK 6762R)" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.51" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.51" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163.5" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Play Store" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Documentation\nmicroUSB to USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e45"), + "name" : "Apple iPhone 7 Smart Phone 128 GB, Rose Gold", + "description" : "Apple iPhone 7 Smart Phone 128 GB, Rose Gold", + "price" : "841", + "sku" : "Apple-iPhone-7-Smart-Phone-128-GB,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-128-GB-Rose-Gold-491282721-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzU5M3xpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGUyLzg5NjMzOTI3NjU5ODIuanBnfDNlNzM3Y2E5NWQzMjAxM2RiYWQyMzBmN2IzNDE2NmIzMDYxZWEzOTA2NWQ4NGMyZjBkNGQxMzZkMzgyY2FmZGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e46"), + "name" : "Apple iPhone 7 Smart Phone 128 GB, Black", + "description" : "Apple iPhone 7 Smart Phone 128 GB, Black", + "price" : "841", + "sku" : "Apple-iPhone-7-Smart-Phone-128-GB,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Smart-Phone-128-GB-Black-491282719-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjUyOXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDI0Lzg5MjcxNjUxNTMzMTAuanBnfDYzOTgwOWE5NThmZmMwYjVmMjNlYWM4NDZhZDUyMDk2ODYzMGI3MzI5Mjc3ZjVkZWI0MDViZjRjMmNhOGQxMGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 12 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 10 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 14 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.83" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.71" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.71" + }, + { + "attributeName" : "Weight", + "attributeValue" : "138" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e47"), + "name" : "Apple iPhone 6 A1549 Smart Phone 32 GB, Space Grey", + "description" : "Apple iPhone 6 A1549 Smart Phone 32 GB, Space Grey", + "price" : "463", + "sku" : "Apple-iPhone-6-A1549-Smart-Phone-32-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6-A1549-Smart-Phone-32-GB-Space-Grey-491297527-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTM3MXxpbWFnZS9qcGVnfGltYWdlcy9oZTcvaGM3Lzg5MjczNzkxMjgzNTAuanBnfDdiYWVlNGQ5MDM3NGQxZjE4ZTQ2MDcwYWRjZDNlMjdkNWVmOTRkYzM5ZTdjYTYzZDdkM2ZlMDVjMzIxNjk4MGE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1549" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 8" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "14 hours (3G)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "1, 2, 3, 4, 5, 7, 8, 13, 17, 18, 19, 20, 25, 26, 28, 29" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Cable" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A8 Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "129" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multi-Touch display with IPS technology
  • Full sRGB standard
  • Dual-domain pixels for wider viewing angle
  • Fingerprint-resistant oleophobic coating on front
  • Display Zoom
  • Reachability
  • M8 motion coprocessor
  • Autofocus with Focus Pixels
  • Five-element lens
  • Sapphire crystal lens cover
  • Auto image stabilisation
  • Panorama (up to 43 megapixels)
  • Photo geotagging
  • Auto HDR for photos and videos
  • Fingerprint identity sensor built into the Home button
  • Charging via USB to computer system or power adapter
  • Video playback - Up to 11 hours
  • Audio playback - Up to 50 hours
  • Apple EarPods with Remote and Mic
  • iPhone 6 is not compatible with existing micro-SIM cards
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e48"), + "name" : "Apple iPhone 7 Plus Smart Phone 32 GB, Rose Gold", + "description" : "Apple iPhone 7 Plus Smart Phone 32 GB, Rose Gold", + "price" : "911", + "sku" : "Apple-iPhone-7-Plus-Smart-Phone-32-GB,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-7-Plus-Smart-Phone-32-GB-Rose-Gold-491282729-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NjAzNnxpbWFnZS9qcGVnfGltYWdlcy9oNzEvaGFkLzg4OTAyMTE4Mjc3NDIuanBnfDIyODJjZjAxMTg5ODZhNzg0ODk3ZTU2MGFiMTI5ZDgyYWJmMDYxMTUwMWMzMDA0MzQzNmM1OTExNWZiYTViMzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "7 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 10" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet use: Up to 13 hours on 3G" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 16 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 21 hours on 3G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz), TD-SCDMA 1900 (F), 2000 (A)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD-LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30), TD-LTE (Bands 38, 39, 40, 41)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A10 Fusion chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.82" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.79" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Siri" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Embedded M10 motion coprocessor
  • Multi-Touch display with IPS technology
  • Fingerprint-resistant oleophobic coating
  • Rated IP67 under IEC standard 60529
  • Quad-LED True Tone flash
  • Panorama (up to 63 megapixels)
  • Optical image stabilisation
  • Body and face detection
  • 4K video recording at 30 fps
  • Fingerprint sensor built into the new Home button
  • Assisted GPS and GLONASS
  • Siri
  • Backside illumination sensor
  • Sapphire crystal lens cover
  • Support for display of multiple languages and characters simultaneously
  • Dual-domain pixels for wide viewing angles
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to 3.5mm Headphone Jack Adapter
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e49"), + "name" : "Apple iPhone 6 Smart Phone 32 GB, Gold", + "description" : "Apple iPhone 6 Smart Phone 32 GB, Gold", + "price" : "463", + "sku" : "Apple-iPhone-6-Smart-Phone-32-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-6-MQ3E2HN-A-Mobile-Phones-491350940-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjg2NXxpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGY4Lzg5MjczOTQ3MjU5MTguanBnfDk2YjkxMThiYmZmM2QyYjUxMDEwNDYzODI3NWQzNDFmNTExOWJlMjExNWZhYjBmYmQyNWE1YjQyNDRiODk5NjM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "1.2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1334 x 750" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 8" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "250 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "14 hours (3G)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "850, 900, 1700/2100, 1900, 2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "1, 2, 3, 4, 5, 7, 8, 13, 17, 18, 19, 20, 25, 26, 28, 29" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning Cable" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A8 chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "129" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Barometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Camera" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multi -Touch display with IPS technology
  • Full sRGB standard
  • Dual-domain pixels for wider viewing angle
  • Fingerprint-resistant oleophobic coating on front
  • Display Zoom
  • Reachability
  • M8 motion coprocessor
  • Autofocus with Focus Pixels
  • Five-element lens
  • Sapphire crystal lens cover
  • Auto image stabilisation
  • Panorama (up to 43 megapixels)
  • Photo geotagging
  • Auto HDR for photos and videos
  • Fingerprint identity sensor built into the Home button
  • Charging via USB to computer system or power adapter
  • Video playback - Up to 11 hours" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "M-JPEG" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Apple EarPods with Remote and Mic
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4a"), + "name" : "Sony Xperia XZ1 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Sony Xperia XZ1 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "682", + "sku" : "Sony-Xperia-XZ1-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-XZ1-Smart-Phones-491351021-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTAyMXxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaDJmLzg4NzI1ODgwMTc2OTQuanBnfGZlMDI2ZGY4OTJjMGM0OWQxYWZjYTI2YzhmNTRiN2U3MDJlYWVhOGFhZGNmZWI2NTM5MWFhNjAxOGE1YzgyNjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZ1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM GPRS/EDGE" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS HSPA+" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE Cat16" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.74" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Quick Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4b"), + "name" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9+ Smart Phone 64 GB, 6 GB RAM, Lilac Purple", + "price" : "1015", + "sku" : "Samsung-Galaxy-S9+-Smart-Phone-64-GB,-6-GB-RAM,-Lilac-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Lilac-Purple-491379610-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjQ3fGltYWdlL2pwZWd8aW1hZ2VzL2hiMy9oZWQvODkyMTUwOTMzMDk3NC5qcGd8MTI5OWIzNzU2ZGI3ZmQwNjQwMjNjMDk3NzIxZjU3ZTQwYTMwMDZhNTM1MTkwNWU0ZmE4NDE1OGFjNDNlMjgwNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.74 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "189" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4c"), + "name" : "Samsung Galaxy J2 Smart Phone 8 GB, 1 GB RAM, White", + "description" : "Samsung Galaxy J2 Smart Phone 8 GB, 1 GB RAM, White", + "price" : "129", + "sku" : "Samsung-Galaxy-J2-Smart-Phone-8-GB,-1-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-Smart-Phones-491188236-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjQ3MnxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaGI2Lzg5MjExNjEyMDM3NDIuanBnfDE0ZDFhZGVjNDIzMmNmOTYyYjEwZGRiZmFlYzA3ZDY0NTQwMGFhYWE2NjdjNjhmMWIwZmRmYjg0ZGMyNDU0N2Q", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.93 cm (4.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Lollipop 5.1.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "DC-HSDPA 42/5.76 850/900/1900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE Cat.4 B20(800)/B5(850)/B8(900)/ B3(1800)/B1(2100)/B7(2600)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Exynos 3475 Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.65" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "130" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "AAC" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB, v2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4d"), + "name" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "description" : "Tecno Camon iAir2+ Smart Phone 32 GB, 2 GB RAM, Midnight Black", + "price" : "153", + "sku" : "Tecno-Camon-iAir2+-Smart-Phone-32-GB,-2-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-CAMON-I-AIR-2-Smart-Phone-491550702-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDE1fGltYWdlL2pwZWd8aW1hZ2VzL2gzMi9oN2MvOTA5NTkzNzg1MTQyMi5qcGd8OGQ3MWU1OWQzNTA5NGVhZDdjZjg3NWYyMDhiZTNlODhkZTAwMDM2MzgxNmVjNTY2YWY5YWRlZjgzMWUwNDQwOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "iAir2+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3750" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MediaTek Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4e"), + "name" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "description" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "price" : "87", + "sku" : "Itel-A45-Smart-Phone-8-GB,-1-GB-RAM,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A45-Smart-Phones-491420219-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTYwfGltYWdlL2pwZWd8aW1hZ2VzL2g2Zi9oZGQvOTA1NDkxNzI5NjE1OC5qcGd8YTY0ZWZhYWVkM2I1ZGZhNGY3MmQwYmEzNTIyMDcyZDI5MDBkZjQyYTEzYWJhYjIyOGMxOGEzYTc5NTQwOTUwNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A45" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 2100/1800/850 MHz B1/B3/B5
  • \n
  • TD-LTE: 2300/2500 MHz B40/B41rn
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.08" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e4f"), + "name" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Anthracite Grey", + "description" : "Itel A45 Smart Phone 8 GB, 1 GB RAM, Anthracite Grey", + "price" : "87", + "sku" : "Itel-A45-Smart-Phone-8-GB,-1-GB-RAM,-Anthracite-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A45-Smart-Phones-491420218-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTgyfGltYWdlL2pwZWd8aW1hZ2VzL2g3Mi9oYjAvOTA1NTA2NDkxNTk5OC5qcGd8OWYwYjA2ZmRjZThjNTI5OGFiMzQzYjU0MjEyNGRlNDRkYmIyYjc3OGMxNTdhMWQ2NTQyMzU1YjFjMWM0MmU3Yw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Anthracite Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "A45" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.84 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: 2100/1800/850 MHz B1/B3/B5
  • \n
  • TD-LTE: 2300/2500 MHz B40/B41rn
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.08" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e50"), + "name" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "description" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Midnight Black", + "price" : "131", + "sku" : "Tecno-Camon-iSky-2-IN1-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN1-Pro-Camon-I-Sky-2-Smartphones-491420272-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTI5NHxpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDFlLzkwMjU4OTc5NTUzNTguanBnfGVkY2VmNDBhYmFjYjJkNzUzYzZhMGM2NGZmMTc4ZjI1MDEwOTFlMTcxNjA0ZmQxZTZmNmMzNzI2ZGE0ZjUyMzI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN1 Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 1173 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1/B3/B5/B8
  • \n
  • TDD LTE B38 B40 B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.15" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e51"), + "name" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Champagne Gold", + "description" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Champagne Gold", + "price" : "131", + "sku" : "Tecno-Camon-iSky-2-IN1-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Champagne-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN1-Pro-Camon-I-Sky-2-Smartphones-491420273-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTU5NXxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDQ1LzkwMjU4OTgyODMwMzguanBnfGNiZGFmMDA2MGEzZmMyMDEzZmNjOTBhMThlZGY5OWJhOTM5ZDllYWI5NjQ4MTk3YmU4MDYyMmFhMmRjOTk5MjA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Champagne Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN1 Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 1173 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1/B3/B5/B8
  • \n
  • TDD LTE B38 B40 B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.15" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e52"), + "name" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Bordeaux Red", + "description" : "Tecno Camon iSky 2 IN1 Pro Smart Phone 16 GB, 2 GB RAM, Bordeaux Red", + "price" : "131", + "sku" : "Tecno-Camon-iSky-2-IN1-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Bordeaux-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN1-Pro-Camon-I-Sky-2-Smartphones-491420274-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDkzNnxpbWFnZS9qcGVnfGltYWdlcy9oYzMvaDZkLzkwMjU4OTc2Mjc2NzguanBnfDAyZGQ0YzIwM2RlMDliZTQ3NGE5MmUyZjIxMDZiZDZiZjk1YjlmNjkxZThjNjMzMGY3NTdiNmRjYWE4MTY3YmE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bordeaux Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN1 Pro" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky 2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo v8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 1173 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE B1/B3/B5/B8
  • \n
  • TDD LTE B38 B40 B41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 64" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Quad Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "SD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.81" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.15" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "148" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e53"), + "name" : "Apple iPhone XS Smart Phone 64 GB, Silver", + "description" : "Apple iPhone XS Smart Phone 64 GB, Silver", + "price" : "1448", + "sku" : "Apple-iPhone-XS-Smart-Phone-64-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-64GB-Silver-491420319-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzYzNHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDk2LzkwMjU5OTI2MjIxMTAuanBnfDVjMWE2ZGFhMTZmYTJiYjRjOGMzMmY0YWE5MDRkNzcwMmEzMGU5YTM5MWFiZTU3MDA3NjdlMzdkOWU3OTZiZTc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e54"), + "name" : "Motorola moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Fine Gold", + "description" : "Motorola moto E5 Plus Smart Phone 32 GB, 3 GB RAM, Fine Gold", + "price" : "189", + "sku" : "Motorola-moto-E5-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Fine-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Plus-Smart-Phones-491433187-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzYzNHxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGQ0LzkwNTM4NDc3NDg2MzguanBnfDAyM2UwOGU3MzU2NDEwYTM1OTdhODhjZTMzNjM3NmRmNmViYzBlNTRjM2JmYWQzNWI5MDhmNDFmNDY5NmY5MGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto E5 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TDD LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Qualcomm Snapdragon 430 Octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "197" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10 W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e55"), + "name" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Blue", + "description" : "Samsung Galaxy A6 Smart Phone 32 GB, 4 GB RAM, Blue", + "price" : "341", + "sku" : "Samsung-Galaxy-A6-Smart-Phone-32-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A6-Smart-Phone-Blue-491419851-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDY0N3xpbWFnZS9qcGVnfGltYWdlcy9oYTgvaDUyLzg5NjA2NzM3NzU2NDYuanBnfDk4NjZkMzgwYTU1MmMxOWEzNTBmY2E5NWM3M2UyNzU5NzY5NDExNGY0ZjI1ZGFhYjM0MDgwMDcyYTBhNjZjNjM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A6" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 10 hours
  • Internet Usage Time(LTE): Up to 12 hours
  • Internet Usage Time(Wi-Fi): Up to 13 hours
  • Video Playback Time: Up to 16 hours
  • Audio Playback Time: Up to 70 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • FDD LTE: B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B28(700), B66(AWS-3)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256 GB" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7 series Octa-Core processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.99" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e56"), + "name" : "Apple iPhone XS Smart Phone 512 GB, Silver", + "description" : "Apple iPhone XS Smart Phone 512 GB, Silver", + "price" : "1956", + "sku" : "Apple-iPhone-XS-Smart-Phone-512-GB,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-512GB-Silver-491488025-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzQ1M3xpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDRlLzkwMjU5OTg2NTE0MjIuanBnfDMyYWUxYzkzN2QyMDM3OTUxZDdiNjlkMTkzOTE1MDQ4YjkxNTQ0OTJjYjUxOTU0MmJhZDNlMmYxZWZkNTMyZmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 12 hours
  • \n
  • Video playback (wireless): Up to 14 hours
  • \n
  • Audio playback (wireless): Up to 60 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless: Up to 20 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "177" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e57"), + "name" : "Apple iPhone XS Max Smart Phone 512 GB, Space Grey", + "description" : "Apple iPhone XS Max Smart Phone 512 GB, Space Grey", + "price" : "2100", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-512-GB,-Space-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-512GB-Space-Grey-491488033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDEyNXxpbWFnZS9qcGVnfGltYWdlcy9oODgvaGY2LzkwMjU5ODIwNzA4MTQuanBnfDRhYzdjNDQ2ZDllMWRjYzBhYmViMTU3N2Y5ODNlMzk4M2I0ZWYxMDIxOWJhYzc0MmZlYmUzZjdiYmQ2OTEyMGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Space Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e58"), + "name" : "Apple iPhone XS Max Smart Phone 512 GB, Gold", + "description" : "Apple iPhone XS Max Smart Phone 512 GB, Gold", + "price" : "2100", + "sku" : "Apple-iPhone-XS-Max-Smart-Phone-512-GB,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-iPhone-XS-Max-512GB-Gold-491488035-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg4NnxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDZkLzkwMjU5ODMxMTkzOTAuanBnfDU2Y2UwY2EyMWE0Y2NmM2JhYjFkYzJmYjYyMWM3NGNiYjg1ZjYxOGRjYmFhNDNmMDQ4NTI0MGZjZDBhMTliNmU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XS Max" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "iPhone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "7" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.51 cm (6.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "iOS 12" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet use: Up to 13 hours
  • Video playback (wireless): Up to 15 hours
  • Audio playback (wireless): Up to 65 hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Wireless - Up to 25 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/DC-HSDPA (850, 900, 1700/2100, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD‑LTE (Bands 1, 2, 3, 4, 5, 7, 8, 12, 13, 14, 17, 18, 19, 20, 25, 26, 28, 29, 30, 32, 66)
  • \n
  • TD‑LTE (Bands 34, 38, 39, 40, 41, 46)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Lightning connector" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "512" + }, + { + "attributeName" : "Processor", + "attributeValue" : "A12 Bionic Chip" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.74" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.77" + }, + { + "attributeName" : "Weight", + "attributeValue" : "208" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "iOS" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Face ID enabled by TrueDepth camera for facial recognition
  • \n
  • FaceTime video calling over Wi‑Fi or cellular
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • EarPods with Lightning Connector
  • Lightning to USB Cable
  • USB Power Adapter
  • Documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Retina HD" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e59"), + "name" : "Google Pixel 2 Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 2 Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "885", + "sku" : "Google-Pixel-2-Smart-Phone-64-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-2-Smart-Phone-64-GB-Just-Black-491351068-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTU0N3xpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDlkLzg5MjcxNTc5NDQzNTAuanBnfGRlMjEyZDQyOTI5YWU3YmRmNWUyN2Y0ZWJlNDU0ZWRhOTM5YWQ3NDAzN2U2YTI4NDJiODA0ZmI2MGJjZjRkNDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "2" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0.0 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1*/2*/3*/4*/5/7*/8/12/13/17/20/25/26/28/29/30/32/66*
  • TD-LTE: Bands 38*/40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 + LE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 GHz + 1.9 GHz, 64 Bit Octa-Core Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.57" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.97" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB-C 18W charging plug
  • USB-C to USB-C cable
  • USB-C to 3.5mm headphone adapter
  • Quick start guide
  • Quick Switch Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C, v3.1 Gen 1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5a"), + "name" : "Google Pixel 2 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 2 XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "1058", + "sku" : "Google-Pixel-2-XL-Smart-Phone-64-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-Pixel-2-XL-Smart-Phone-64-GB-Just-Black-491351073-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTE0MHxpbWFnZS9qcGVnfGltYWdlcy9oYjAvaGE5Lzg5MjcxODIwNjE1OTguanBnfDZiYzVhMzhiMzJkNzBhOTA4YWJiMGEyMWMxN2NjZjI3OTVmYjU0YWQzMTYxNWRmYjM2ZDEzNjNkZmVmYTkxYjU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "2 XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.7 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3520" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8\nCDMA EVDO Rev A: BC0/BC1/BC10" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE : Bands 1*/2*/3*/4*/5/7*/8/12/13/17/20/25/26/28/29/30/32/66*
  • \n
  • TD-LTE: Bands 38*/40/41

  • \n(*Indicates the bands that support 4x4 MIMO)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0 + LE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.35 Ghz + 1.9 Ghz 64 Bit Octa-Core Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.67" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB-C 18W charging plug
  • USB-C to USB-C cable
  • USB-C to 3.5mm headphone adapter
  • Quick start guide
  • Quick Switch Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "P-OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C, v3.1 Gen 1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5b"), + "name" : "Gionee A1 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Gionee A1 Plus Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "421", + "sku" : "Gionee-A1-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Plus-Smart-Phones-491350914-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTkyMnxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDBjLzg5MjExODM5NDQ3MzQuanBnfDg5MmFiNDM0ZTRiMzdhZTVjMmJjOWYwYzVmZjM4YmI2ZTdlZDY1MmI2ZmZkOTVhNzU1OTEzMWRmYmE5YTQ5ZGU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4550" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 510 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Up to 2.6 GHz Octa Core HelioP25" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.64" + }, + { + "attributeName" : "Width", + "attributeValue" : "8.33" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5c"), + "name" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "description" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "price" : "247", + "sku" : "Motorola-moto-G5S-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Lunar-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Plus-Smart-Phones-491351089-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDIwMnxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaDczLzg5MjEyNDcyNTI1MTAuanBnfGEyMWU1MzE2NjU4MmQ5ODJlMDFkNDlkMDQzZDJhOGI2NWVmZmE4ZWZjZWQxN2RjZjY3MjBlMjk4ZTg1MTA3MTg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lunar Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+ (850, 900, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE (B1, 3, 5, 8, 28, 40)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core Qualcomm Snapdragon 625 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "15 W Turbo Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5d"), + "name" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Blush Gold", + "description" : "Motorola moto G5S Plus Smart Phone 64 GB, 4 GB RAM, Blush Gold", + "price" : "247", + "sku" : "Motorola-moto-G5S-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Blush-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G5S-Plus-Smart-Phones-491351093-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTA2N3xpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDZiLzg5MjEyNDc1ODAxOTAuanBnfDNhYzgwYTJhMTEyOTlkMGY2NjQ4MWRhMGNlMDk5ZDI0OTUyNTg0YjM2Y2JmNzZlZjUzMWVkMzc3MWRmZGYwMDI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blush Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G5S Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+ (850, 900, 1900, 2100 MHz)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE (B1, 3, 5, 8, 28, 40)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa-Core Qualcomm Snapdragon 625 Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.35" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "15 W Turbo Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5e"), + "name" : "Gionee M7 Power Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Gionee M7 Power Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "265", + "sku" : "Gionee-M7-Power-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-M7-Power-Smart-Phones-491351163-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODgyMnxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGFiLzg5MjExOTY3MjQyNTQuanBnfDkyYWY1Yzc4Mjk3YjExMzZlNjRmNzY5NTViMTE4Y2YzMTI0YjVkZmU0NmU5ZDcwMzllMDJhNTZmMjE4YmIyY2E", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "M7 Power" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat (Amigo 5.0)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "625 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "56 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/B3/B5/B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B2/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38/B39/B40/B41
  • FDD: B1/B2/B3/B5/B7/B8
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Octa core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.63" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.56" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.86" + }, + { + "attributeName" : "Weight", + "attributeValue" : "199" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e5f"), + "name" : "Blackberry Keyone Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Blackberry Keyone Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "624", + "sku" : "Blackberry-Keyone-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Blackberry-Keyone-Mobile-Phones-491351185-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjE1MnxpbWFnZS9qcGVnfGltYWdlcy9oMmYvaDYyLzg4OTcyMzU4Nzc5MTguanBnfGYzMmZhNzY0OTVjMDhiMzI0N2NiMmQ3NmQ2YTgxYWY4YjQ0OGM3Njc4M2JiNzAyNTdjYWM5YmI3ZWMxZWY3OWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Keyone" + }, + { + "attributeName" : "Brand", + "attributeValue" : "BlackBerry" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3505" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "515 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "29 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "HSPA+: (B1, B2, B4, B5, B6, B8)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TD-LTE: (B38, B39, B40, B41)
  • \n
  • FD-LTE: (B1, B2, B3, B4, B5, B7, B8, B12, B13, B17, B19, B20, B28, B29, B30)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + LTE" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz 64 Bit Qualcomm Snapdragon 625 octa core processor" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "181" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Up to 52 customizable shortcuts
  • \n
  • Convenience key" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 4" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Blackberry", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e60"), + "name" : "Sony Xperia R1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Sony Xperia R1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "232", + "sku" : "Sony-Xperia-R1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-R1-Plus-Mobile-Phones-491351088-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjI4NHxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDc0Lzg5MjE5MTQ4Njc3NDIuanBnfDc5YzJiYmE2MTY5ZTNjN2FlMjkwNDBmMzEwZGUzYzE2YmQ0MWVlZmJlMzVlOGRlYjM0OTZkN2Q4Zjk2MjU4OWE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "R1 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0 (Oreo)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2620" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS + GLONASS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430 Mobile Platform" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.88" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e61"), + "name" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "description" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Gold", + "price" : "319", + "sku" : "Sony-Xperia-XA1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-XA1-Plus-Smart-Phones-491351033-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTkzNXxpbWFnZS9qcGVnfGltYWdlcy9oNTgvaGNkLzg5OTM0NTQ3MTkwMDYuanBnfGQ4ODc1MmY3M2Q3YjkxMmYxYWJmMjYyZjlhYWE3ODQzMDQyYjIwYzg2M2I2ZjE4YTkxNTk0MTdkM2ExM2RkYjY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Music" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e62"), + "name" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Sony Xperia XA1 Plus Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "319", + "sku" : "Sony-Xperia-XA1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-XA1-Plus-Smart-Phones-491351023-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTIyMXxpbWFnZS9qcGVnfGltYWdlcy9oODkvaGVhLzg5OTI3MDE1NzkyOTQuanBnfGU3Y2E5YjIzM2M4MjdkMzYzNDFhMWI2ZmI0NDUxZDFmN2Q0NGExYzMzMjAyOThkZjUyZTAzMGNjN2ZkN2Q4Mjg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Plus" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3430" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSDXC Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.87" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Music" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e63"), + "name" : "Motorola moto Z2 Play Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "description" : "Motorola moto Z2 Play Smart Phone 64 GB, 4 GB RAM, Lunar Grey", + "price" : "435", + "sku" : "Motorola-moto-Z2-Play-Smart-Phone-64-GB,-4-GB-RAM,-Lunar-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-Z2-Play-Smart-Phones-491297739-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzgzM3xpbWFnZS9qcGVnfGltYWdlcy9oYTcvaDZiLzg5MjEyMjkwMzM1MDIuanBnfGU2NTljYjA2NzAxMWEzZGUwZDc4MTM0MTM3OGZiZGNkNWQ0OThmNDAyZjE3OWY3NWRhMmIxNDIwZTM2M2M2MzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lunar Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto Z2 Play" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.1 Nougat" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/GPRS/EDGE (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • CDMA (850, 1900 MHz)
  • \n
  • UMTS/HSPA+ (850, 900, 1700, 1900, 2100 MHz)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE (B1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 20, 25, 26, 28, 29, 30, 38, 41, 66)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + CDMA + HSPA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz Octa-Core Qualcomm Snapdragon 626 Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.62" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.62" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.59" + }, + { + "attributeName" : "Weight", + "attributeValue" : "145" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "15 W Turbo Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e64"), + "name" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Cloud Silver", + "description" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Cloud Silver", + "price" : "870", + "sku" : "LG-V30+-Smart-Phone-128-GB,-4-GB-RAM,-Cloud-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-V30-Smart-Phones-491379503-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTE3MXxpbWFnZS9qcGVnfGltYWdlcy9oNDcvaDM0Lzg5OTM0MzI3NjQ0NDYuanBnfDA5MmM3YzQ1NjMwMzFjOGJiY2Y5ODJmNmVjMzExYzZlMDVlZjA4N2VkNzllZmQ5M2U1NWZhYWFjOTRmNGJjN2M", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "V30+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.2 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B2/B5" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B7/B8/B20/B28/B38/B39/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Media Sync: Allow nearby devices to access content via DLNA
  • \n
  • SmartShare Beam: Wirelessly receive multimedia content
  • \n
  • Screen Sharing (Miracast ): Wirelessly mirror device screen on a compatible display
  • \n
  • A-GPS for Enhanced Location Accuracy
  • \n
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835 2.45 GHz x 4 + 1.9 GHz x 4 Octa-Core MSM8998" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium Aluminum Metal Sides
  • \n
  • IP68 Dust and Water Resistant
  • \n
  • Shock Resistant with MIL-STD-810G Testing
  • \n
  • Voice Recognition
  • \n
  • Power Saving Mode/Battery Saver
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e65"), + "name" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Aurora Black", + "description" : "LG V30+ Smart Phone 128 GB, 4 GB RAM, Aurora Black", + "price" : "870", + "sku" : "LG-V30+-Smart-Phone-128-GB,-4-GB-RAM,-Aurora-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-V30-Smart-Phones-491379502-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTE3NHxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaGRkLzg5OTM0MzUwNTgyMDYuanBnfGQ5NTIwNTEyZjNjNTI4NjEwMzU0Nzc4ZGVlMjA3MmExM2Y3ODBiZjQ3YjkwNDQxM2Q1YjI5OTdiMzg5MjdmOTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "V30+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2880 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.1.2 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B2/B5" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B7/B8/B20/B28/B38/B39/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • Media Sync: Allow nearby devices to access content via DLNA
  • \n
  • SmartShare Beam: Wirelessly receive multimedia content
  • \n
  • Screen Sharing (Miracast ): Wirelessly mirror device screen on a compatible display
  • \n
  • A-GPS for Enhanced Location Accuracy
  • \n
  • Wi-Fi Direct
  • " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835 2.45 GHz x 4 + 1.9 GHz x 4 Octa-Core MSM8998" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.54" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.73" + }, + { + "attributeName" : "Weight", + "attributeValue" : "158" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium Aluminum Metal Sides
  • \n
  • IP68 Dust and Water Resistant
  • \n
  • Shock Resistant with MIL-STD-810G Testing
  • \n
  • Voice Recognition
  • \n
  • Power Saving Mode/Battery Saver
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "OLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e66"), + "name" : "LG Q7+ Smart Phone 64 GB, 4 GB RAM, Aurora Black", + "description" : "LG Q7+ Smart Phone 64 GB, 4 GB RAM, Aurora Black", + "price" : "276", + "sku" : "LG-Q7+-Smart-Phone-64-GB,-4-GB-RAM,-Aurora-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMQ610YB-Smartphones-491538849-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzE0fGltYWdlL2pwZWd8aW1hZ2VzL2g5Yy9oNmMvOTA5Mzg3MTczMDcxOC5qcGd8YzA1ZTBiZTE2NTM2OTgzMDJhMzUxZjI3ODUxOWRkZmZhZDVhOTE5MWEwNjdlMzkyYmUwYmI3MGNhOWRkZDAyNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Q7+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: 850/900/1900/2100
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B40/B7/B8/B38/B28/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5GHz MT6750S Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.38" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.93" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "145" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e67"), + "name" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss White", + "description" : "Nokia 6.1 Plus Smart Phone 64 GB, 4 GB RAM, Gloss White", + "price" : "256", + "sku" : "Nokia-6.1-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Gloss-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-6-1-PLUS-Smartphones-491503534-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NjgyfGltYWdlL2pwZWd8aW1hZ2VzL2g2Mi9oYWYvOTA5Mzg4MTIzMzQzOC5qcGd8NTA2M2FiOWQwYmE1Y2Y1YTM0YThjMTlmNjkzN2RmZmIyZDBiYjBhMDAyYzQ0MjQxMjgxYmUxMDU2MDVjNDNkNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss White" + }, + { + "attributeName" : "Model", + "attributeValue" : "6.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Music playback time: Up to 9.5 hours
  • \n
  • Video playback time: Up to 9 hours
  • " + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Upto 14.5 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Upto 20.5 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B850/900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: 1/3/5/8
  • \n
  • TDD: 40/41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 636 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.72" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.09" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e68"), + "name" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss White", + "description" : "Nokia 5.1 Plus Smart Phone 32 GB, 3 GB RAM, Gloss White", + "price" : "192", + "sku" : "Nokia-5.1-Plus-Smart-Phone-32-GB,-3-GB-RAM,-Gloss-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-5-1-PLUS-Smartphones-491503531-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTU4OHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDgxLzkwOTM4Nzg5Mzk2NzguanBnfGYzNTU0NzNlYjJlYjBiMDI1ZTkyMmQ3MjZlOTg4N2FlZjA4MDNjOGY2YTRiMmZlNDZjODExY2I1OTg1YjBiNWY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gloss White" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "TDD: B40/41" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "151" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes - Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e69"), + "name" : "Motorola moto G7 Power Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "description" : "Motorola moto G7 Power Smart Phone 64 GB, 4 GB RAM, Ceramic Black", + "price" : "232", + "sku" : "Motorola-moto-G7-Power-Smart-Phone-64-GB,-4-GB-RAM,-Ceramic-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G7-POWER-Smart-Phones-491550766-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2Mzg5fGltYWdlL2pwZWd8aW1hZ2VzL2g3Ni9oNTEvOTExMTUyNjg5OTc0Mi5qcGd8NWI5OTM4YThjZGQxNTA5ZGFlMDcyZjMyMjg1NDI5ZmFjMWQ1MWYzOTVkYzFlMGFkM2FjZGUyNWNhYWQ2MmNhYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G7 Power" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.75 cm (6.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "5000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "60 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/2/5/8/19" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE B1/2/3/4/5/7/8//19/20/28/ 38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 632 octa-core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.94" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "193" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "TurboPower charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6a"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 4 GB RAM, Midnight Gloss Blue", + "price" : "232", + "sku" : "Nokia-5.1-Plus-Smart-Phone-64-GB,-4-GB-RAM,-Midnight-Gloss-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550761-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Nzc4fGltYWdlL2pwZWd8aW1hZ2VzL2hiOS9oZGQvOTExMTUxODMxNDUyNi5qcGd8YjZiYWE1NDZhZGYyZTI4OTE0NTcyMGY0OTQ5N2ZlNTAyMGMwOTBiZTdhY2U0MzFkNmYwZGZkYTFhMzg3MjYyZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6b"), + "name" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "description" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Sapphire Blue", + "price" : "181", + "sku" : "Honor-9-Lite-Smart-Phone-64-GB,-4-GB-RAM,-Sapphire-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LLD-AL10-Mobile-Phones-491503331-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODgxfGltYWdlL2pwZWd8aW1hZ2VzL2gzOS9oZWMvOTA3ODM0MDYxNjIyMi5qcGd8NmNiZjA1M2Q3YjhiMmM3ZGQ2YWFjNTk1N2U2NWE1ZDhkMDZjZGY0MmEyNjdiNzQ1NzRiZjhhMTlmZTZlYzAzZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sapphire Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "9 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1, B3, B5
  • \n
  • LTE TDD: B40, B41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.36 GHz Octa Core Kirin 659" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.76" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6c"), + "name" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "description" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Midnight Black", + "price" : "181", + "sku" : "Honor-9-Lite-Smart-Phone-64-GB,-4-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LLD-AL10-Mobile-Phones-491503333-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODI0fGltYWdlL2pwZWd8aW1hZ2VzL2g1MS9oNDcvOTA3ODM0MjI1NDYyMi5qcGd8NTYyZDRhNzdhMmI5ZWM1ZmM5ZTdiMGE3N2YxMDVkODQ0MWNkNzg0ZTQ4ZjIxZjE3NjIxNDUxNDkxZjdjMTFlMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "9 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1, B3, B5
  • \n
  • LTE TDD: B40, B41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.36 GHz Octa Core Kirin 659" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.76" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6d"), + "name" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Blue", + "description" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Blue", + "price" : "172", + "sku" : "Honor-7C-Smart-Phone-64-GB,-4-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LND-AL30-Mobile-Phones-491503336-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzYxfGltYWdlL2pwZWd8aW1hZ2VzL2hkOS9oOWEvOTA3ODM1MDc3NDMwMi5qcGd8MTI1ZTM5M2Q5M2EyMTc5MDg3ZTJjNTNiOGQ0OTQxN2JhMDYyOGZmM2Y3NmIyMGIwMjc2NDAzN2RkOWU0ZjMxNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "7C" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (5.99 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "349 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2,B3,B5,B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1,B5,B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE TD: 38,39,40,41
  • \n
  • FDD: 1,3,5,8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm SDM450 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6e"), + "name" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Honor 7C Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "172", + "sku" : "Honor-7C-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LND-AL30-Mobile-Phones-491503335-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Njg2fGltYWdlL2pwZWd8aW1hZ2VzL2g2OS9oNDkvOTA3ODM0MDI4ODU0Mi5qcGd8MTU0NjliYjJlMjY0YzM3ZTJhYWQ5YWE1YzUxYTFhMTI3ZWUwOWViMmQ0NWZjYzIyYzI4MGY4MTNmNzgwNjdhZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "7C" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.21 cm (5.99 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "349 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2,B3,B5,B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1,B5,B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE TD: 38,39,40,41
  • \n
  • FDD: 1,3,5,8
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm SDM450 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e6f"), + "name" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Glacier Grey", + "description" : "Honor 9 Lite Smart Phone 64 GB, 4 GB RAM, Glacier Grey", + "price" : "181", + "sku" : "Honor-9-Lite-Smart-Phone-64-GB,-4-GB-RAM,-Glacier-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Honor-LLD-AL10-Mobile-Phones-491503332-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDk3fGltYWdlL2pwZWd8aW1hZ2VzL2hhYi9oYzYvOTA3ODM0MjkwOTk4Mi5qcGd8YzNhMDI1MTdjNDgzOGJmZWZhMmI3MDIyNDExZGYyNzg0OWVlMTkwNzcyOTcyNjZiZDBiMWEzNDg3NzI0NmJhYg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glacier Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "9 Lite" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Honor" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 900/2100" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: B1, B3, B5
  • \n
  • LTE TDD: B40, B41
  • " + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.36 GHz Octa Core Kirin 659" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.76" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Honor", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e70"), + "name" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Platinum Grey", + "description" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Platinum Grey", + "price" : "870", + "sku" : "LG-V40-ThinQ-Smart-Phone-128-GB,-6-GB-RAM,-New-Platinum-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMV405EBW-AINDPM-Smartphones-491550723-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NTU4fGltYWdlL2pwZWd8aW1hZ2VzL2g5MC9oOGQvOTEwNTA0Nzk0NTI0Ni5qcGd8YjFjNzQ3ZmMyNTdkMGRlMTZiMGRmNWFiNTE0YzYyZjhkYTAxNGZjYWY0ZDgzOGJlMmI0MGRiNGY0OGYxMWYzYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "New Platinum Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "V40 ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "3120 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.2 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • HSDPA (42.2Mbps)/HSUPA (5.76Mbps)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE VoLTE: 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 20, 28, 32, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "MirrorLink" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 845 up to 2.8 GHz x 4 + 1.7 GHz x 4 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IP68 Dust and Water Resistant and Shock Resistant
  • \n
  • DTS: X Virtual Surround
  • \n
  • 16.2cm (6.4) QHD+ OLED Display
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e71"), + "name" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Moroccan Blue", + "description" : "LG V40 ThinQ Smart Phone 128 GB, 6 GB RAM, New Moroccan Blue", + "price" : "870", + "sku" : "LG-V40-ThinQ-Smart-Phone-128-GB,-6-GB-RAM,-New-Moroccan-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-LMV405EBW-AINDWU-Smartphones-491550724-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDI4fGltYWdlL2pwZWd8aW1hZ2VzL2hmOC9oYmMvOTEwNTA0NTE5MjczNC5qcGd8ZWI5NGI0OTM3MmQ0OGVjZTYzMzYzYmFiNmUxNWE3ODQyNWVmNmU0OGQ5ZWNiNWNkZWRiN2NkM2E4ZDlmODdmMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "New Moroccan Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "V40 ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "3120 x 1440" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.2 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • HSDPA (42.2Mbps)/HSUPA (5.76Mbps)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE VoLTE: 1, 2, 3, 4, 5, 7, 8, 12, 13, 17, 20, 28, 32, 38, 39, 40, 41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "MirrorLink" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 845 up to 2.8 GHz x 4 + 1.7 GHz x 4 Octa-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IP68 Dust and Water Resistant and Shock Resistant
  • \n
  • DTS: X Virtual Surround
  • \n
  • 16.2cm (6.4) QHD+ OLED Display
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e72"), + "name" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, White", + "description" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, White", + "price" : "363", + "sku" : "Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB,-4-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB-White-491297666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjIyMXxpbWFnZS9qcGVnfGltYWdlcy9oMzcvaGU3Lzg5Mjc1MDczMTY3NjYuanBnfGEwMDhjOWM2N2YxZDUxOTU0YmUzMzcwZTQ0N2EzOWQ1MjI4NzcwNjgwOTg1Mjg5M2M0ZDc1MjQ1YTZjNjVmMjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Ultra" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e73"), + "name" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "312", + "sku" : "Gionee-A1-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Smart-Phone-Black-491297544-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzA3MHxpbWFnZS9qcGVnfGltYWdlcy9oZjMvaGYxLzg5MjY4Mzg0NTYzNTAuanBnfDNiODA4NDcxZmIxN2RkNTllNGNlMDI2YThmZGY5MDE5MWQxYzk4ZjE5YjViMjViZmJkMGMzOTY2ZTEyMGViOTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4010" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa Core MT6755" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e74"), + "name" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Grey", + "description" : "Gionee F103 Pro Smart Phone 16 GB, 3 GB RAM, Grey", + "price" : "176", + "sku" : "Gionee-F103-Pro-Smart-Phone-16-GB,-3-GB-RAM,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-F103-Pro-Smart-Phone-Grey-491282630-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjM5OXxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaGExLzg5MjczMzU2Nzc5ODIuanBnfDA2ODRhYTA3MDkwZWE1YTg5NTc0ZTVjZTk5MDhhMzYyZGIxODE0YjdmMzJmZGE0ZGNlZTFmNGI4ZDdlZWZmMmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "F103 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android OS" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "369 Hrs (2G) " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "28.57 Hrs (2G)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "900MHz/1800MHz/1900MHz/850MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "900MHz/1900MHz/2100MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE(FDD): B3/B5, TDD:B40" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "V4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad Core 1.3 GHz" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Whatsapp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart Gesture (Pause Alarm)
  • Smart Vibration Reminder
  • Mood Wallpaper
  • Eco Mode
  • Child Mode
  • Child Mode
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Transceiver
  • Earphone
  • Travel Charger (2A)
  • Data Cable
  • User Manual
  • Warranty Card
  • Protective Film
  • Transparent Cover
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e75"), + "name" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "363", + "sku" : "Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB-Black-491297665-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzA5M3xpbWFnZS9qcGVnfGltYWdlcy9oODAvaGE2Lzg5Mjc1MjA3NTE2NDYuanBnfDNkYzQzOGUzOTZmNjY0YTQyNmZjNTdlMjcwNzIzZmU5MjkyZTU4NmQ0YmQ3ODJiMzRiNzhhN2ViMTczYzRiNzg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Ultra" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e76"), + "name" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Gold", + "description" : "Sony Xperia XA1 Ultra Smart Phone 64 GB, 4 GB RAM, Gold", + "price" : "363", + "sku" : "Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Ultra-Smart-Phone-64-GB-Gold-491297667-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Njc1N3xpbWFnZS9qcGVnfGltYWdlcy9oYjIvaGY4Lzg4OTA2MTU0MzExOTguanBnfDM1MDBhNzhjYmViYjZlZTA3OWMyMmZhY2RjMzk3MWQyODBlYTM0MjJiZTNmZGFlNjFlZjY1YzdlZDYzYWM0NmQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1 Ultra" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2700" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad Core 2.3GHz + Quad Core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.9" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "188" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e77"), + "name" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Luminous Chrome", + "description" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Luminous Chrome", + "price" : "754", + "sku" : "Sony-Xperia-XZ-Premium-Smart-Phone-64-GB,-4-GB-RAM,-Luminous-Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZ-Premium-Smart-Phone-Luminous-Chrome-491297664-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDQzOXxpbWFnZS9qcGVnfGltYWdlcy9oODkvaDg2Lzg4OTA1OTcxNDY2NTQuanBnfDIwYWZmYThlMzE5ZGIwZmIyMjQ3YjgyZmM1MDM1MmJiZTlhYmFhMjk2YjQxMjAwOGQ1NGE1ZmEyZTk0MWNjOTM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Luminous Chrome" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZ Premium" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android v7.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3230" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4K HDR Display
  • TRILUMINOS Display for mobile
  • Dynamic Contrast Enhancer
  • Qnovo Adaptive Charging
  • Predictive Hybrid Autofocus
  • 960 fps Super slow motion videos
  • SteadyShot with Intelligent Active Mode (5-axis stablization)
  • 4K recording
  • Digital Noise Cancelling
  • Clear Audio+
  • Stereo speaker with S-Force Front Surround
  • Stereo Recording
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e78"), + "name" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Deepsea Black", + "description" : "Sony Xperia XZ Premium Smart Phone 64 GB, 4 GB RAM, Deepsea Black", + "price" : "754", + "sku" : "Sony-Xperia-XZ-Premium-Smart-Phone-64-GB,-4-GB-RAM,-Deepsea-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZ-Premium-Smart-Phone-Deepsea-Black-491297663-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjg0MHxpbWFnZS9qcGVnfGltYWdlcy9oOTAvaDQ0Lzg4OTA1Nzg5Mjc2NDYuanBnfDM3MDNmMTlhNTQyN2I0NDUyNmRkMDVkN2MyMzE5ZjU2MGU5MjIzNmE5YzRiOTI2MGViZDgyNjUxYzE3MzQxOGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Deepsea Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZ Premium" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android v7.1 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3230" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 835" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "191" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4K HDR Display
  • TRILUMINOS Display for mobile
  • Dynamic Contrast Enhancer
  • Qnovo Adaptive Charging
  • Predictive Hybrid Autofocus
  • 960 fps Super slow motion videos
  • SteadyShot with Intelligent Active Mode (5-axis stablization)
  • 4K recording
  • Digital Noise Cancelling
  • Clear Audio+
  • Stereo speaker with S-Force Front Surround
  • Stereo Recording
  • " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v3.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e79"), + "name" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Black", + "description" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Black", + "price" : "305", + "sku" : "Sony-Xperia-XA1-Smart-Phone-32-GB,-3-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Smart-Phone-Black-491297600-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTUxN3xpbWFnZS9qcGVnfGltYWdlcy9oOWIvaDkwLzg5MjY5NTY5NDU0MzguanBnfDZlNmZmYzc5NTg2MTE3YWE1YjE2Y2VjZWMwN2UxNWRlNjc4MTVlYmNmNThiZDQyZmE4MDNkZmI4ODExOWYzMjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad core 2.3GHz + Quad core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7a"), + "name" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "609", + "sku" : "Sony-Xperia-XZs-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZs-Smart-Phone-Black-491297584-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDU5N3xpbWFnZS9qcGVnfGltYWdlcy9oNzkvaGVjLzg5MjY4ODYzNjMxNjYuanBnfGY2MjU1NjQ3M2M2ZjgzOTE2YTZhYmU1NTA0ODM0NDg4ZGNmMjQ0MTM1YTEzYjdiNTM0YmY1NzU4Nzk0ZDJkZWI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZs" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Google Cast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 820 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7b"), + "name" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Ice Blue", + "description" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Ice Blue", + "price" : "609", + "sku" : "Sony-Xperia-XZs-Smart-Phone-64-GB,-4-GB-RAM,-Ice-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZs-Smart-Phone-Ice-Blue-491297583-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzUwOHxpbWFnZS9qcGVnfGltYWdlcy9oMTkvaDI2Lzg5NjM2MTcyMjY3ODIuanBnfGE5ZGM2MGJlN2JlMTg5YTJiNmNkOTgzY2I0MjVkNDk1NTgzNjFiOTEzNTBkOGY3MTc1YmUxYzViNDJmZDNlNjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ice Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZs" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Google Cast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 820 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG20
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Hi-res headset MDR-NC750
  • Bluetooth(R) Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7c"), + "name" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Warm Silver", + "description" : "Sony Xperia XZs Smart Phone 64 GB, 4 GB RAM, Warm Silver", + "price" : "609", + "sku" : "Sony-Xperia-XZs-Smart-Phone-64-GB,-4-GB-RAM,-Warm-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XZs-Smart-Phone-Warm-Silver-491297582-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTQzOXxpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDNjLzg5MjY4NzU3NDYzMzQuanBnfDAzMjk3MDI2ZDJkYTEwZDI1ZmFkYzE3ZGViOTAxYTNhOTI4NTA1MGI2YmFhN2RmMmNhOTM1ZTEwOWZmYmU3Njg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Warm Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "XZs" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.2 cm (5.2 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "19" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2900" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Google Cast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 820 processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.6" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.81" + }, + { + "attributeName" : "Weight", + "attributeValue" : "161" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "LPCM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG20
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Hi-res headset MDR-NC750
  • Bluetooth(R) Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Full HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7d"), + "name" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gray", + "description" : "Gionee A1 Smart Phone 64 GB, 4 GB RAM, Gray", + "price" : "312", + "sku" : "Gionee-A1-Smart-Phone-64-GB,-4-GB-RAM,-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Gionee-A1-Smart-Phone-Gray-491297545-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzU2N3xpbWFnZS9qcGVnfGltYWdlcy9oZDYvaGEwLzg5MjY4MDE5NTI3OTguanBnfDUxYzk4YjU3ODg4NTNlYzIzN2U4MDM1MGRjNjdlOThkYTVkZTBhYzE2OTk5ZjA0NGRmZDZkYzg0OTE5NWJiNjI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Gionee" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1920 x 1080 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android v7.0 (Nougat)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4010" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz Octa Core MT6755" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Gionee", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7e"), + "name" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Graphite Black", + "description" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Graphite Black", + "price" : "232", + "sku" : "Sony-Xperia-XA-Smart-Phone-16-GB,-2-GB-RAM,-Graphite-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-Xperia-XA-Black-491188346-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDIwfGltYWdlL2pwZWd8aW1hZ2VzL2hhNy9oNzAvOTA2Njk4MzYyMDYzOC5qcGd8NjAxOTU5Zjc1MDc1MjY5YmFjNDZjYTM5MzYyOTJjZjRhY2NmYTllZDdjNGI5MmRmYTZlYmYxOTEzYjA1MWZiMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Graphite Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "Up to 16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64 bit Octa Core MediaTek helio P10" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "137.4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e7f"), + "name" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Lime Gold", + "description" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, Lime Gold", + "price" : "232", + "sku" : "Sony-Xperia-XA-Smart-Phone-16-GB,-2-GB-RAM,-Lime-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-Xperia-XA-Lime-Gold-491188347-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTM5fGltYWdlL2pwZWd8aW1hZ2VzL2gyZS9oNDIvOTA2Njk4NDI3NTk5OC5qcGd8NjE2OWZlZWJhOWQzZmM5MTYzOWZiZGQwNzFjYTFkZjFkM2EzZDQ3MWU4MTM5MjU2NDcyNzM5NWJiZmZlY2UyNA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "Up to 16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64 bit Octa Core MediaTek helio P10" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "137.4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e80"), + "name" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, White", + "description" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, White", + "price" : "305", + "sku" : "Sony-Xperia-XA1-Smart-Phone-32-GB,-3-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Dual-White-491297599-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjc2OXxpbWFnZS9qcGVnfGltYWdlcy9oNmEvaGM3Lzg5MjY5NDIzMzA5MTAuanBnfGUwYmYyYjNiMjEyMDRkNTUyYTM3NDZhMTBlY2U0MGY1M2RmYTFjZDQ2NDExZDNmNTRmYjViNjYxYTBmY2E0MzY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad core 2.3GHz + Quad core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG30
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Bluetooth Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e81"), + "name" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, White", + "description" : "Sony Xperia XA Smart Phone 16 GB, 2 GB RAM, White", + "price" : "232", + "sku" : "Sony-Xperia-XA-Smart-Phone-16-GB,-2-GB-RAM,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-Xperia-XA-White-491188345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzUxfGltYWdlL2pwZWd8aW1hZ2VzL2hjYi9oM2IvOTA2Njk4MDY3MTUxOC5qcGd8NTYzODE4ZDk1ZTUxNjNlYzM2MWM3MmE5MWE4NTc5ZDgyMmE0YmY1ZTcwMDQ1MjJjZjEyM2YxNzQ4Mjg5Yzg3OA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 200" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "Up to 16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "64 bit Octa Core MediaTek helio P10" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.68" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "137.4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e82"), + "name" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Pink", + "description" : "Sony Xperia XA1 Smart Phone 32 GB, 3 GB RAM, Pink", + "price" : "305", + "sku" : "Sony-Xperia-XA1-Smart-Phone-32-GB,-3-GB-RAM,-Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Xperia-XA1-Dual-Pink-491297601-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI2OHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDk3Lzg5MjcwMTkzMzU3MTAuanBnfDFjNjg1OWM3N2YxZjBiMDBhOWMzYTMyYjY1MmE4NTVmNGI5NDg3YzVjYmNmMTVkNjc4ZDAwYzY2OGIxMjUyNTQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "XA1" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Xperia" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "23" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Google Android N" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2300" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "A-GNSS (GPS + GLONASS)" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P20 Octa Core 64bit (Quad core 2.3GHz + Quad core 1.6GHz)" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "143" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Style Cover Stand SCSG30
  • Quick Charger UCH12W
  • Charging Dock DK60
  • Bluetooth Headset with Speaker SBH56
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e83"), + "name" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Gold", + "description" : "Vivo Y71 Smart Phone 32 GB, 4 GB RAM, Gold", + "price" : "203", + "sku" : "Vivo-Y71-Smart-Phone-32-GB,-4-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Vivo-Y71-Smart-Phones-491419864-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDM1MHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaDMwLzg5OTM0NTY2ODUwODYuanBnfDZkNTQzYzRhMDI2MmIxNmNlNDk1NTdiZTRkNjM0NzU3NzM4Y2YxNGU3MjczMjE0ZjUzOGY5M2ZmODA5YjMzYjc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "Y71" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.0 (based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3360" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • TDD: B38/40/41
  • FDD: B1/3/5/8
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.58" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "150" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "WhatsApp" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e84"), + "name" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Starry Night", + "description" : "Vivo V11 Pro Smart Phone 64 GB, 6 GB RAM, Starry Night", + "price" : "392", + "sku" : "Vivo-V11-Pro-Smart-Phone-64-GB,-6-GB-RAM,-Starry-Night", + "imageUrl" : "https://www.reliancedigital.in/medias/vivo-v11-pro-Blk-Smartphones-491420225-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzM4N3xpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGM5LzkwMjY3OTkxNzM2NjIuanBnfDkyYWJlODgyNGY2ZWMzYzQ2MjUxNDIyYjMzYzI1YTBhNWYxZDA3NThmNzQwOTYxYTc5NGRmN2IwNDQwODcxMmY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Night" + }, + { + "attributeName" : "Model", + "attributeValue" : "V11 pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "VIVO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.28 cm (6.41 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Funtouch OS 4.5 (based on Android Oreo 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3400" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/3/5/7/8
  • \n
  • TDD-LTE: B38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 660AIE Octa-core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.79" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "156" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "Facebook" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "WAV" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earphone" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Vivo", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e85"), + "name" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Tecno Camon iSky IN2 Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "124", + "sku" : "Tecno-Camon-iSky-IN2-Smart-Phone-16-GB,-2-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-Tecno-Camon-i-Sky-IN3-Smart-Phones-491419898-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzcxMnxpbWFnZS9qcGVnfGltYWdlcy9oZjIvaDY4LzkwNDM5MzkwMzMxMTguanBnfDcxZTRjNzBiZDJjZmY2MjNkYTg0NGU3MjQ3Y2Q3YjQ3Mjg2ZDRiNTdjOWYzOWViMzMwYThkMDkwZmQ1YWIxZDg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN2" + }, + { + "attributeName" : "Series", + "attributeValue" : "iSky" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: B1/B5/B8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: B1/B3/B5/B8
  • \n
  • TDD: B40/B41
  • " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Quad-core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.75" + }, + { + "attributeName" : "Width", + "attributeValue" : "7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.83" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e86"), + "name" : "OPPO F9 Pro Smart Phone 128 GB, 6 GB RAM, Starry Purple", + "description" : "OPPO F9 Pro Smart Phone 128 GB, 6 GB RAM, Starry Purple", + "price" : "406", + "sku" : "OPPO-F9-Pro-Smart-Phone-128-GB,-6-GB-RAM,-Starry-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-CPH1823-Smart-Phones-491488502-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzUyNHxpbWFnZS9qcGVnfGltYWdlcy9oY2YvaGViLzkxMzgzOTc5Mzc2OTQuanBnfDE2YjQ4NWNmN2EzMDY4MzRiNzgwMWQ4MzhmNjA1MzZlZTVhOTc2NGYwZmI3OTliMWY5MTkxMDQ1ZWUxYTYwNTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2340 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "25" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.0 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Starry Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "F9 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 5.2 (Based on Android 8.1)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 2 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD-LTE: B1/B3/B5/B8
  • \n
  • TD-LTE: B38/B40/B41 (2535 - 2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v2.1(+EDR)/v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/A-GPS/GLONASS/Beidou" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE + HSPA+" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz MTK P60 octa-core processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.67" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "169" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multi-touch" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e87"), + "name" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Red", + "description" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Red", + "price" : "95", + "sku" : "Itel-A22-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A22-PRO-Smart-Phones-491538902-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTY2fGltYWdlL2pwZWd8aW1hZ2VzL2hmNC9oNGUvOTE0MTU2MzkxNjMxOC5qcGd8NjllYTU2NGI4MGEwZjM5NDgxNmMwZDZhMDAwOTk3NjE2YjM1ZWQ0M2FhYjBhYmU1ZWI5OTk1ZmVkYzc2NjU2ZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 480" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "A22 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz 64 bit Snapdragon Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Perfect with 5MP AF Rear Camera with Flash
  • \n
  • 4G Volte/Vilte support with Snapdragon chipset
  • \n
  • ViLTE enhances the Audio & Video quality
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e88"), + "name" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "description" : "Itel A22 Pro Smart Phone 16 GB, 2 GB RAM, Gold", + "price" : "95", + "sku" : "Itel-A22-Pro-Smart-Phone-16-GB,-2-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A22-PRO-Smart-Phones-491538903-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDU5fGltYWdlL2pwZWd8aW1hZ2VzL2hjNC9oZjEvOTE0MTU2MzU4ODYzOC5qcGd8MWVkOTVjOTc2MzhhYjI3YzhjYWNiMDhjZGZhNjI3MmE0MGI3OGIzY2VmMTRiNmQ2MWZhNmI3NGNiZDk2M2Q1Ng", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 480" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A22 Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz 64 bit Snapdragon Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Perfect with 5MP AF Rear Camera with Flash
  • \n
  • 4G Volte/Vilte support with Snapdragon chipset
  • \n
  • ViLTE enhances the Audio & Video quality
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e89"), + "name" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Aurora Black", + "description" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Aurora Black", + "price" : "798", + "sku" : "LG-ThinQ-G7-Plus-Smart-Phone-128-GB,-6-GB-RAM,-Aurora-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-G7-Plus-Black-Mobile-Phone-491420118-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDQ3OXxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDI5Lzg5OTY4MjUwNzE2NDYuanBnfGRlNmEzMDI5NjM4NDkyODFmMjUxYjQxYjcyYjUwMzIzNDIyYzE1ZmM1NGIyY2UyNGRlZTI5NjU2YjA4NjdhNTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aurora Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "G7 Plus" + }, + { + "attributeName" : "Series", + "attributeValue" : "ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE6 VoLTE : B1, B2, B3, B4, B5, B7, B8, B12, B13, B17, B20, B28, B38, B39, B40, B41, B46" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Miracast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.8GHz x 4 + 1.7GHz x 4 Octa-Core Qualcomm Snapdragon 845 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "LG Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Super Bright Display - 1000 nit brightness
  • Slow Motion - HD 240 FPS Slow Motion Video Recording
  • Time-Lapse Video - Record a video that plays back faster than normal
  • Super Far-Field Voice Recognition (FFVR)
  • Multi Window - Use two apps simultaneously on a split screen
  • Face Recognition
  • Voice Recognition
  • Google Smart Lock
  • Knock Code
  • Expandable Memory upto 2 TB
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • Quick Start Guide
  • Stereo Ear Microphone
  • USB Data Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8a"), + "name" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Platinum Gray", + "description" : "LG ThinQ G7 Plus Smart Phone 128 GB, 6 GB RAM, Platinum Gray", + "price" : "798", + "sku" : "LG-ThinQ-G7-Plus-Smart-Phone-128-GB,-6-GB-RAM,-Platinum-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/lg-G7-platinum-mobile-phone-491420119-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTIxN3xpbWFnZS9qcGVnfGltYWdlcy9oNmUvaGJkLzg5OTY4MTIxOTM4MjIuanBnfDkyMWJiYTUxMjQzYWY3M2Q0ZmFlZDExMDdkMDIxZTRkMTBmNjhkZDg1MzkxZjZlNzI2ZTk2YmVkNDI0OWFkYjk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Platinum Gray" + }, + { + "attributeName" : "Model", + "attributeValue" : "G7 Plus" + }, + { + "attributeName" : "Series", + "attributeValue" : "ThinQ" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.49 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: Quad Band (850/900/1800/1900)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "
  • UMTS: Tri Band (W850/W900/W1700/W1800/W1900/W2100)
  • " + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "4G LTE6 VoLTE : B1, B2, B3, B4, B5, B7, B8, B12, B13, B17, B20, B28, B38, B39, B40, B41, B46" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Miracast" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.8GHz x 4 + 1.7GHz x 4 Octa-Core Qualcomm Snapdragon 845 Processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.32" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Preloaded Apps", + "attributeValue" : "LG Health" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass 5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Super Bright Display - 1000 nit brightness
  • Slow Motion - HD 240 FPS Slow Motion Video Recording
  • Time-Lapse Video - Record a video that plays back faster than normal
  • Super Far-Field Voice Recognition (FFVR)
  • Multi Window - Use two apps simultaneously on a split screen
  • Face Recognition
  • Voice Recognition
  • Google Smart Lock
  • Knock Code
  • Expandable Memory upto 2 TB
  • " + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charger
  • Quick Start Guide
  • Stereo Ear Microphone
  • USB Data Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8b"), + "name" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Black", + "description" : "Samsung Galaxy J4 Smart Phone 16 GB, 2 GB RAM, Black", + "price" : "160", + "sku" : "Samsung-Galaxy-J4-Smart-Phone-16-GB,-2-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J4-Smart-Phones-491419876-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDg4OHxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGUyLzg5OTM0MjU1NTU0ODYuanBnfDVmN2E4ODBlNzc1YTY2MjFmMzc1ZjFiNDg3ZjhkNGVhMWRjYzg3MzQxNTIyMmE0ZjVjYzA0NzFiNWEyNWY5MzM", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J4" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "Wi-Fi Direct" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.17" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.72" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8c"), + "name" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Blue", + "description" : "Samsung Galaxy A2 Core Smart Phone 16 GB, 1 GB RAM, Blue", + "price" : "86", + "sku" : "Samsung-Galaxy-A2-Core-Smart-Phone-16-GB,-1-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-GALAXY-A2-CORE-Mobile-Phones-491551070-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5ODI5fGltYWdlL2pwZWd8aW1hZ2VzL2hhMi9oMDkvOTEzMjQ1MTQ5NTk2Ni5qcGd8YTY3YmQwMjBlNTFhZjgzMWYwMjQyYzA1N2ZiOTdlN2RkNDA4ZWQ2NWMxNzU5YWUyYjQ4YTIwMDkwNTNkNjkxNQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.64 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo (Go Edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 15 Hours
  • \n
  • Internet Usage Time(LTE): Up to 18 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "(3G WCDMA): Up to 16 Hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900)
  • \n
  • TDD LTE: B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.6 GHz Exynos 7870 Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.16" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.1" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.91" + }, + { + "attributeName" : "Weight", + "attributeValue" : "142" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "TFT LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8d"), + "name" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "653", + "sku" : "Google-Pixel-3a-XL-Smart-Phone-64-GB,-4-GB-RAM,-Clearly-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-XL-Smart-Phones-491570791-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MTQzfGltYWdlL2pwZWd8aW1hZ2VzL2hmYi9oOTEvOTE0MjMzNjE1OTc3NC5qcGd8ZjA5ZDEyNTJlOGI3NmJjNzdlYjkwOWVhMmVkNTVkZjRlNTg0NGFlNTQ2NzRiNWIyY2Y4MjZhZjYwMGU1MmY0ZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2160 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.01" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "167" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8e"), + "name" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Clearly White", + "description" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Clearly White", + "price" : "580", + "sku" : "Google-Pixel-3a-Smart-Phone-64-GB,-4-GB-RAM,-Clearly-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-Smart-Phones-491570789-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDgyfGltYWdlL2pwZWd8aW1hZ2VzL2g3OS9oZGYvOTE0MjMzODQ1MzUzNC5qcGd8NjhmY2FkZmM1NWIxNmY0YzIzNmUwZDFlNmZhNDQyNzQ3ZTZjNDRlMDMwZDI1Nzc2YTRmNzgzOWRiOGJiYTQ5Mg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2220 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Clearly White" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.01" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "147" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e8f"), + "name" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3a Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "580", + "sku" : "Google-Pixel-3a-Smart-Phone-64-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-Smart-Phones-491570788-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MzA0fGltYWdlL2pwZWd8aW1hZ2VzL2hkZi9oNDcvOTE0MjM0MDc0NzI5NC5qcGd8ZjVkMWQ2NmQ3NjI0OTY5N2E5ZDdhNjMwZjJiMDE5YzBmYjdkOTZlMDMyNjM2OWNmNmM2YzEyMTg2N2Y5ZjkwYQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2220 x 1080" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.22 cm (5.6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.13" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.01" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "147" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e90"), + "name" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "description" : "Google Pixel 3a XL Smart Phone 64 GB, 4 GB RAM, Just Black", + "price" : "653", + "sku" : "Google-Pixel-3a-XL-Smart-Phone-64-GB,-4-GB-RAM,-Just-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Google-PIXEL-3A-XL-Smart-Phones-491570790-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Mjc3fGltYWdlL2pwZWd8aW1hZ2VzL2hkNC9oMzAvOTE0MjMzMzg2NjAxNC5qcGd8ZDc0OTFmZTk0OTE5NWJlMzRiYjI2MmQxNzNjZjljMDBlYjhmMmMzNmVlMmE1MDhmYzRiZjM1YTBiMmQ4ZWIxYw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2160 x 1080 - FHD+" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.24 cm (6 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Just Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "3a XL" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Pixel" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Google" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9.0 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3700" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM/EDGE: Quad-band (850, 900, 1800, 1900 MHz)" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+/HSDPA: Bands 1/2/4/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: Bands 1/2/3/4/5/7/8/12/13/17/20/25/26/28/32/38/40/41/66" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + UMTS + DC-HSDPA + LTE + HSPA + HSPA+" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.0 GHz + 1.7 GHz 64-bit Qualcomm Snapdragon 670 Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.01" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.61" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Weight", + "attributeValue" : "167" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Full 24-bit Depth or 16 million Colours Display
  • \n
  • 76 degree Field of View primary camera
  • \n
  • 84 degree Field of view selfie camera" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "18 W USB-C Power Adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Google", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e91"), + "name" : "Samsung Galaxy S10+ Smart Phone 1 TB, 12 GB RAM, Ceramic White", + "description" : "Samsung Galaxy S10+ Smart Phone 1 TB, 12 GB RAM, Ceramic White", + "price" : "2072", + "sku" : "Samsung-Galaxy-S10+-Smart-Phone-1-TB,-12-GB-RAM,-Ceramic-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-S10-WHT-C-1TB-6-4-Smart-Phone-491550810-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzI4fGltYWdlL2pwZWd8aW1hZ2VzL2gzZS9oNmQvOTEwNDU2NDc4MTA4Ni5qcGd8ZThiZjQ5ZjU2OTE3OTdlYzg2ZTAyM2M1YWYxN2EzMGQwOTIwNTBhN2Y3MzZlZjAwMmJhMDQ3OTZlNmMxZGI2OQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ceramic White" + }, + { + "attributeName" : "Model", + "attributeValue" : "S10+" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "10" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16.35 cm (6.4 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4100" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Exynos" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Data Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "12 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e92"), + "name" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, Black", + "description" : "Motorola Android One Smart Phone 64 GB, 4 GB RAM, Black", + "price" : "232", + "sku" : "Motorola-Android-One-Smart-Phone-64-GB,-4-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Moto-Android-One-Black-OC-4-64-6.2-SmartPhone-491550769-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYzNHxpbWFnZS9qcGVnfGltYWdlcy9oZjAvaGNlLzkxMjAyNTQyOTYwOTQuanBnfDExNWQ1OTRmZmE3YzllY2QxYTE5NDM0YWM2MTZiOTAyODI0MTVmNTA4NThmNzM2ZGUwMGFmMWNhODY3Njc0YTY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "Android One" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1520 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15 cm (5.9 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: 1/3/5/7/8/20/38/40/41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon Octa-Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "162" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice control: Google Assistant
  • Bottom-ported speaker
  • Splash-resistant P2i
  • " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e93"), + "name" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Black", + "description" : "OPPO A1K Smart Phone 32 GB, 2 GB RAM, Black", + "price" : "160", + "sku" : "OPPO-A1K-Smart-Phone-32-GB,-2-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/OPPO-A1K-Smart-Phones-491570665-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjA5fGltYWdlL2pwZWd8aW1hZ2VzL2g3OC9oN2UvOTEzNzIzNjcwNTMxMC5qcGd8MDU1NDUwNTNhYThlYTY5Njk0MDY2MjQyNjVhNzA5ODJkMzU0OTUyYWQ2MjYzYmQwNTg4MzQwN2FiMTVkMDdjZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A1K" + }, + { + "attributeName" : "Brand", + "attributeValue" : "OPPO" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.5 cm (6.1 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "ColorOS 6" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 17 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: Bands 1/3/5/8
  • \n
  • LTE TDD: Bands 38/40/41(2535-2655 MHz)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MTK MT6762R" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.45" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.38" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.84" + }, + { + "attributeName" : "Weight", + "attributeValue" : "170" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "E-Compass" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • IMG GE8320 GPU" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Adapter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Corning Gorilla Glass" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "OPPO", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e94"), + "name" : "Motorola moto G6 Plus Smart Phone 64 GB, 6 GB RAM, Indigo Black", + "description" : "Motorola moto G6 Plus Smart Phone 64 GB, 6 GB RAM, Indigo Black", + "price" : "356", + "sku" : "Motorola-moto-G6-Plus-Smart-Phone-64-GB,-6-GB-RAM,-Indigo-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G6-PLUS-Smart-Phones-491420065-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MTg4fGltYWdlL2pwZWd8aW1hZ2VzL2hhNS9oNDEvOTA1NDkyMzUyMjA3OC5qcGd8N2JkNjVmNjA4MDQ3MTJhMGI2ODgwYTk2YWFlOWNhZmFmY2FkNDE1ZDQ0MmRjOWQ2YTM3OGFhMDBiYWZhMDcxOQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Indigo Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G6 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.98 cm (5.9 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3200" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850, 900, 1800, 1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS/HSPA+: B1, 2, 5, 8, 19" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: \tB1, 2, 3, 5, 7, 8, 18, 19, 26, 28, 38, 40, 41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz octa-core Qualcomm Snapdragon 630" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.55" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "168" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "TurboPower wall charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e95"), + "name" : "Tecno Camon i IN5 Smart Phone 32 GB, 3 GB RAM, Midnight Black", + "description" : "Tecno Camon i IN5 Smart Phone 32 GB, 3 GB RAM, Midnight Black", + "price" : "145", + "sku" : "Tecno-Camon-i-IN5-Smart-Phone-32-GB,-3-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Tecno-IN5-Smart-Phones-491419897-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzgwfGltYWdlL2pwZWd8aW1hZ2VzL2hiZS9oNjYvOTAzMTY4MTQ3NDU5MC5qcGd8NDRmZjQ3ZjZlY2VhY2Y0ZDQyZjQyNGQ0N2Q3MGVhZjBiODMwYjMzNzYwN2UzOTFhMGE3OTI0NDM1MzBiNTJjMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "IN5" + }, + { + "attributeName" : "Series", + "attributeValue" : "i" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Camon" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Tecno" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.35 cm (5.65 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Nougat 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3050" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 850/900/1800/1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • LTE FDD: 1/3/5/8
  • \n
  • LTETDD: 40
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "DLNA Compliant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3 GHz MediaTek MT6737 Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.5" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.7" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Tecno", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e96"), + "name" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Blue", + "description" : "LYF C459 Smart Phone 8 GB, 1 GB RAM, Blue", + "price" : "69", + "sku" : "LYF-C459-Smart-Phone-8-GB,-1-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/LYF-C459-Smart-Phones-581109212-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDUxN3xpbWFnZS9qcGVnfGltYWdlcy9oZGYvaDY0Lzg4NzI1Njk5OTUyOTQuanBnfGNmZWFiNjZhYzE1MTI0ZmJjYWMxOGZiMGExYzdlMDVjOGU5NTNjOTA1M2NjY2Q2YmE0OTJiYTRiMWQxZmFmZDk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "C459" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LYF" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Marshmallow 6.0.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Video Playback: Up to 5 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 160 hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 8 hours on 4G" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM : 900/1800/1900 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS WCDMA: BAND1 (2100)/ BAN00448(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD: BAND3(1800)/ BAND5(850)
  • TDD: BAND40(2300)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "OTG Support" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.3GHz Quad-Core Qualcomm Snapdragon 210 MSM8909" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.2" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.6" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "139" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Removable Battery" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LYF", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e97"), + "name" : "Samsung Galaxy J7 SM-J700F Smart Phone 16 GB, 1.5 GB RAM, Gold", + "description" : "Samsung Galaxy J7 SM-J700F Smart Phone 16 GB, 1.5 GB RAM, Gold", + "price" : "232", + "sku" : "Samsung-Galaxy-J7-SM-J700F-Smart-Phone-16-GB,-1.5-GB-RAM,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-J7-SM-J700F-Smart-Phone-Gold-491188279-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2ODM0N3xpbWFnZS9qcGVnfGltYWdlcy9oOWMvaGUxLzg5NjMzMzk2MTYyODYuanBnfDYyYmFiNTliNWZlNWE1NGY3OTc2ZjYyNWU4MDQ2MTNjNjQ0OWRiYzQwMGViMWJhYzhkMjZmMDgyOWU5OWI2MTE", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "J7 SM-J700F" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1280 x 720 - HD" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Internet Usage Time (3G): Up to 9 hrs" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 18 hrs (3G WCDMA)" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM 850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800), TDD LTE: B40(2300)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.5 GHz Octa-Core" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.24" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.86" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.75" + }, + { + "attributeName" : "Weight", + "attributeValue" : "171" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Location Technology - GPS" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1.5 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e98"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Lemonade Blue", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Lemonade Blue", + "price" : "566", + "sku" : "Samsung-Galaxy-A9-Smart-Phone-128-GB,-6-GB-RAM,-Lemonade-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-6-GB-RAM-Lemonade-Blue-491503310-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDA0MXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaDIxLzkwNzA0NDUzNjMyMzAuanBnfGY3MWU2MDU3NDA1MGMyZjkxMGM1Y2NkYWRiNmE0N2EzNTU2MTk5NDA0OGYwNTY5YjU0NTkyZjczZTE0M2Y4OGQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lemonade Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e99"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Caviar Black", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 6 GB RAM, Caviar Black", + "price" : "566", + "sku" : "Samsung-Galaxy-A9-Smart-Phone-128-GB,-6-GB-RAM,-Caviar-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-6-GB-RAM-Caviar-Black-491503312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTMyMnxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaDMwLzkwNzA0NDcwMDE2MzAuanBnfGFkMDE2MzFjYmRmZTJkYzE3Y2QxM2YwNDk4NWRmZDQ1OTU5MWI0ZWQ0NTcwYWI3MTQ1OGNmZjBkNmQwYTk1NTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Caviar Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9a"), + "name" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Lemonade Blue", + "description" : "Samsung Galaxy A9 Smart Phone 128 GB, 8 GB RAM, Lemonade Blue", + "price" : "609", + "sku" : "Samsung-Galaxy-A9-Smart-Phone-128-GB,-8-GB-RAM,-Lemonade-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-A9-Smart-Phone-128-GB-8-GB-RAM-Lemonade-Blue-491503313-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDA0MXxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaDkxLzkwNzA0NTA3MzcxODIuanBnfGMyZWU1MTJjZjIzYWY0NTg3ZjFhNjM3N2U3NzMzMjY3M2Y1MTVhM2U3YjE3MjY4OWFlYjIwZDQxYzE1MjI3MDQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lemonade Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "A9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "2280 x 1080 - FHD+" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "16 cm (6.3 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "24" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3800" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G) - Up to 13 Hours
  • \n
  • Internet Usage Time(LTE) - Up to 15 Hours
  • \n
  • Internet Usage Time(Wi-Fi) - Up to 15 Hours
  • \n
  • Video Playback Time - Up to 19 Hours
  • \n
  • Audio Playback Time - Up to 59 Hours
  • \n
  • Audio Playback Time (Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA - Up to 23 Hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800, PCS1900" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "B1(2100), B2(1900), B4(AWS), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE - B1(2100), B2(1900), B3(1800), B4(AWS), B5(850), B7(2600), B8(900), B12(700), B13(700), B17(700), B20(800), B26(850), B28(700), B66(AWS-3)
  • \n
  • TDD LTE - B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "
  • ANT+
  • \n
  • Location Technology - GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 512" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "2.2 GHz, 1.8 GHz Octa-Core Processor" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "16.25" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.78" + }, + { + "attributeName" : "Weight", + "attributeValue" : "183" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C (v2.0)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9b"), + "name" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "description" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Dark Blue", + "price" : "85", + "sku" : "Nokia-1-Smart-Phone-8-GB,-1-GB-RAM,-Dark-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-1-Smart-Phone-Dark-Blue-491379650-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzIxNXxpbWFnZS9wbmd8aW1hZ2VzL2hmZC9oZjYvODkzNDE4OTI2OTAyMi5wbmd8NDYzNjZhNTcyZWI0ZTMyNTJmOWZlNDk1ZmY4ZDU5MDM0ZDNkNDQ2ODk5YzNhYzEyMWUwNDI3NzMxNjBhY2E3Yg", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo (Go edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2150" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "MP3 playback time: Up to 53 hours " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 15 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.77" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "131" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headset
  • Charger
  • Charging/data cable
  • Quick Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9c"), + "name" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Warm Red", + "description" : "Nokia 1 Smart Phone 8 GB, 1 GB RAM, Warm Red", + "price" : "85", + "sku" : "Nokia-1-Smart-Phone-8-GB,-1-GB-RAM,-Warm-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-1-Smart-Phone-Warm-Red-491379651-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjY4NXxpbWFnZS9wbmd8aW1hZ2VzL2hlNy9oYWYvODkzNDE4NjQ1MDk3NC5wbmd8OWI5YzNiNTgzMTE0MWQ5NTg5NThjZmFkMzU2YTlmNWNhMWNkNmMwNDMxZmEzOGIwOGZkY2VlNjM5MmJkZWNjMw", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Warm Red" + }, + { + "attributeName" : "Model", + "attributeValue" : "1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "2" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "11.43 cm (4.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo (Go edition)" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2150" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "MP3 playback time: Up to 53 hours " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "Up to 15 days" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "Up to 9 hours" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core Processor" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "13.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.77" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.95" + }, + { + "attributeName" : "Weight", + "attributeValue" : "131" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Proximity" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "3GP" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headset
  • Charger
  • Charging/data cable
  • Quick Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, v2.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9d"), + "name" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Silver", + "description" : "Nokia 2.1 Smart Phone 8 GB, 1 GB RAM, Blue/Silver", + "price" : "112", + "sku" : "Nokia-2.1-Smart-Phone-8-GB,-1-GB-RAM,-Blue-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-2.1-Smart-Phones-491420143-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQ3MHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDE4LzkwMTg5Mjc3NzU3NzQuanBnfDQ5MzgxMzNlNjlhYjdjMzIwOGY2YjYwN2UyMjQxOTg1NTY0OTE0YzhkMjM1ODgzNzk3ZTE3MjUwNjI0NWQ3NTA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Silver" + }, + { + "attributeName" : "Model", + "attributeValue" : "2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.97 cm (5.5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.1" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS+GLONASS+Beidou" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.36" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.7" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.96" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9e"), + "name" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Midnight Gloss Blue", + "description" : "Nokia 5.1 Plus Smart Phone 64 GB, 6 GB RAM, Midnight Gloss Blue", + "price" : "269", + "sku" : "Nokia-5.1-Plus-Smart-Phone-64-GB,-6-GB-RAM,-Midnight-Gloss-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-5.1-PLUS-Smart-Phones-491550763-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODA5fGltYWdlL2pwZWd8aW1hZ2VzL2hkZC9oMjYvOTExMTUxNzk4Njg0Ni5qcGd8YzY5OWZhYmFlMTk4MjE4MmM5MDYzMzNmMDEyZjc0MWFjNmU5ZTljMTRlODNhNWUxYjFkNTAzOWI3ZDA2N2M3YQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Gloss Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "5.1 Plus" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 9 Pie" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3060" + }, + { + "attributeName" : "Battery Voltage", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS/GLONASS/BDS/Galileo" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "MediaTek Helio P60 Octa Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.95" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.19" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "5V/2A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637e9f"), + "name" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Iron/Steel", + "description" : "Nokia 8.1 Smart Phone 128 GB, 6 GB RAM, Iron/Steel", + "price" : "464", + "sku" : "Nokia-8.1-Smart-Phone-128-GB,-6-GB-RAM,-Iron-Steel", + "imageUrl" : "https://www.reliancedigital.in/medias/Nokia-NOKIA-8.1-Smart-Phones-491550751-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4MDcyfGltYWdlL2pwZWd8aW1hZ2VzL2hkNS9oZTgvOTExNzAyMTMzOTY3OC5qcGd8MTE0ZDI5MDQ0Mjk4ZjRjMzgzZDM2ODFkOTFlYjM4NWY4OGQ1OWJlZDg4MjcwNTkyMzA2NjkyMTI4NmMwOTYxZQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Iron/Steel" + }, + { + "attributeName" : "Model", + "attributeValue" : "8.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "20" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "15.69 cm (6.18 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Pie 9" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3500" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 710" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.48" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.57" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.79" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Metal Frame", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Ambient Light" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Nokia OZO Surround Sound Capture Recording
  • \n
  • 18W Fast Charging Charger
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Nokia USB-C 9 V/2 A charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "FHD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "6 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - VoLTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type-C" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea0"), + "name" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Black", + "description" : "Samsung Galaxy J2 Core Smart Phone 8 GB, 1 GB RAM, Black", + "price" : "102", + "sku" : "Samsung-Galaxy-J2-Core-Smart-Phone-8-GB,-1-GB-RAM,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-J2-Core-Smart-Phones-491420211-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM5MXxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGFjLzkwMTg5NTUzNjY0MzAuanBnfDQ1OTJjOTA0MWRlN2Y1NDhmOGVkMGE4MGI1MWFmM2M0ZTgxMjcxNzNlYWY0Njk1ODdkYTBkOTVmMjVjZDc1ZDY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "J2 Core" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "960 x 540" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "12.7 cm (5 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.1 Oreo" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2600" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "
  • Internet Usage Time(3G): Up to 14 Hours
  • \n
  • Video Playback Time: Up to 18 Hours
  • \n
  • Audio Playback Time: Up to 75 Hours
  • \n
  • Internet Usage Time (LTE): Up to 17 Hours
  • \n
  • Internet Usage Time(Wi-Fi): Up to 18 Hours
  • " + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "3G WCDMA: Up to 18 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM850, GSM900, DCS1800" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UTMS: B1(2100), B5(850), B8(900)" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: B1(2100), B3(1800), B5(850), B7(2600), B8(900), B20(800)
  • \n
  • TDD LTE: B38(2600), B40(2300), B41(2500)
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 GHz Quad-Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.3" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "154" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Audio Formats", + "attributeValue" : "MP3" + }, + { + "attributeName" : "Video Formats", + "attributeValue" : "MP4" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "QHD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea1"), + "name" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9 Smart Phone 64 GB, 4 GB RAM, Lilac Purple", + "price" : "906", + "sku" : "Samsung-Galaxy-S9-Smart-Phone-64-GB,-4-GB-RAM,-Lilac-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-64-GB-Lilac-Purple-491379606-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDg1fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oMDkvODkyMTUwODAyMDI1NC5qcGd8NmViNmJlZTExN2ZjYTNiZjRiOTllZmY4ZjAzZjU5ZjE1MDI5ZmRkOTllNmQ0OTljYjU4YWU1M2E3Y2ZhMThhMQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm processor" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Single SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea2"), + "name" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Lilac Purple", + "description" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Lilac Purple", + "price" : "957", + "sku" : "Samsung-Galaxy-S9-Smart-Phone-128-GB,-4-GB-RAM,-Lilac-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Lilac-Purple-491379668-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIxMXxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaDAzLzg5MzQxNzY4MTcxODIuanBnfGQ0Yjk0YjRjZmFiNWQyNDNiMjAwYjNjODE4ZTJhN2FkNmI4ZTIwNjg2OTQ2ODU3ZjM3MTFjZDAxNmYyZmRkMDc", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lilac Purple" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea3"), + "name" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Midnight Black", + "description" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Midnight Black", + "price" : "957", + "sku" : "Samsung-Galaxy-S9-Smart-Phone-128-GB,-4-GB-RAM,-Midnight-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Midnight-Black-491379667-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDk3fGltYWdlL2pwZWd8aW1hZ2VzL2gzYy9oMDkvODkzNDE3NzQ3MjU0Mi5qcGd8ZDk3YzMyZTBhMThlYzg0OGJhZGFlZDZhODJhYjNmNmRhNDRjZGYyY2RlYThlZTNjMDU5NWMyMmY0NDljOWRhZA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea4"), + "name" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Coral Blue", + "description" : "Samsung Galaxy S9 Smart Phone 128 GB, 4 GB RAM, Coral Blue", + "price" : "957", + "sku" : "Samsung-Galaxy-S9-Smart-Phone-128-GB,-4-GB-RAM,-Coral-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Galaxy-S9-Smart-Phone-128-GB-Coral-Blue-491379666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTI0M3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDdkLzg5MzU3MDY3MjIzMzQuanBnfDUyNmQwMWY5ZTlkNGI0MDJmN2E5YTUxZGE2OTI3ZDUxMWE2NWIyMWUyMjRlMGNmMThlYjRkOGVhNzI0YzhhMTU", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Coral Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "S9" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Galaxy" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.73 cm (5.8 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Hybrid SIM Slot", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "ANT+" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 400" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "128" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Octa-core, 10 nm process" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.77" + }, + { + "attributeName" : "Width", + "attributeValue" : "6.87" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.85" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Accelerometer" + }, + { + "attributeName" : "Display Type", + "attributeValue" : "Super AMOLED" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Type C" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea5"), + "name" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "description" : "Itel A44 Smart Phone 8 GB, 1 GB RAM, Rose Gold", + "price" : "85", + "sku" : "Itel-A44-Smart-Phone-8-GB,-1-GB-RAM,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Itel-A44-Smart-Phone-Rose-Gold-491419889-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTEyfGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oOWIvODk5NzM0MDg3MjczNC5qcGd8MzhhZTU2ZjE3YWQ5ZWRlNzRhMzM0NzUyZDIwMjE1ZmQxNmViY2Y0OWMyZGJiOTliMGUwN2I3MWNhZDIwODExMA", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "A44" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Itel" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "13.9 cm (5.45 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 7.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "2400" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "240 Hours" + }, + { + "attributeName" : "Talk Time", + "attributeValue" : "17 hours" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 900/1800 MHz" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 850/900/2100 MHz" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1/B3/B5/B40/B41" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS/AGPS " + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Upto 32" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "8" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.1 GHz Quad Core" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "14.8" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.05" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.82" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "1 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itel", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea6"), + "name" : "Motorola moto G6 Play Smart Phone 32 GB, 3 GB RAM, Blue", + "description" : "Motorola moto G6 Play Smart Phone 32 GB, 3 GB RAM, Blue", + "price" : "189", + "sku" : "Motorola-moto-G6-Play-Smart-Phone-32-GB,-3-GB-RAM,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-moto-G6-Play-Smart-Phone-Blue-Mobile-Phones-491392291-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTg2N3xpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGQwLzkwMDI4NzgxNzMyMTQuanBnfDA4MmE2NTk3M2M3NmI3YmQ0YTNmNjNiZTYzNWZlOGRiMzU0Y2ZmMjRlOTAzODFkMTZhOTAxOWYxOTAwNmQ2MWQ", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G6 Play" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "8" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "Up to 32 hours" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2 EDR & BLE" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "GPRS", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "32" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 430 processor with a 1.4 GHz octa-core CPU and 450 MHz Adreno 505 GPU" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.22" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.9" + }, + { + "attributeName" : "Weight", + "attributeValue" : "175" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Voice control - Google Assistant
  • Device sync - Cross Share software compatible
  • Polymer Glass Body
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • TurboPower wall charger
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "3 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes, Micro-USB" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea7"), + "name" : "Moto E5 Smart Phone 16 GB, 2 GB RAM, Flash Grey", + "description" : "Moto E5 Smart Phone 16 GB, 2 GB RAM, Flash Grey", + "price" : "160", + "sku" : "Moto-E5-Smart-Phone-16-GB,-2-GB-RAM,-Flash-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Smartphones-491433184-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODA5M3xpbWFnZS9qcGVnfGltYWdlcy9oMzkvaDgwLzkwMDc2NTQ4OTU2NDYuanBnfGMzYzJjZjkwNDUyNzFkOGY3YzE0ZjhhN2EzMmMwZjBiYWU5MzY5MGI1YmFhZjg4Nzg2ZWMxYTcyMjFjODM3YTk", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Flash Grey" + }, + { + "attributeName" : "Model", + "attributeValue" : "E5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Battery Run Time", + "attributeValue" : "14 hours" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM band 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA band 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "FDD LTE band- 1/3/5/8 TDD LTE band-38/40/41 (2535–2655MHz)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "Qualcomm Snapdragon 425" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.44" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.22" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Expandable Storage
  • \n
  • Resolution: HD+ (1440 × 720)
  • \n
  • NFC
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "IPS LCD" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Moto", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea8"), + "name" : "Motorola moto G6 Smart Phone 64 GB, 4 GB RAM, Indigo Black", + "description" : "Motorola moto G6 Smart Phone 64 GB, 4 GB RAM, Indigo Black", + "price" : "261", + "sku" : "Motorola-moto-G6-Smart-Phone-64-GB,-4-GB-RAM,-Indigo-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-G6-Smart-Phones-491392293-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTU1MXxpbWFnZS9qcGVnfGltYWdlcy9oNGQvaDU0LzkwNTM4NTAzNzAwNzguanBnfDdjNDgyMTc2ZjA4ZGU1NzdjNGExODYwZmE0OWNhYmJjZDJkNzcyM2NhMGJmM2FhMTkyOGI2ZjdiYjc1OGM4OGY", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Indigo Black" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto G6" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "16" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "12" + }, + { + "attributeName" : "Dual Camera (rear)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "3000" + }, + { + "attributeName" : "Quick Charge", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: B2, B3, B5, B8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "UMTS: B1, B2, B5, B8, B19" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "LTE: B1 (2100) B2 (1900) B3 (1800) B5 (850) B7 (2600) B8 (900) B26 (850+) B28 (700 APT) B38 (TD2600) B40 (TD2300) B41 (2535M to 2655M)" + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 256" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "64" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.8 GHz Qualcomm Snapdragon 450 Octa Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "167" + }, + { + "attributeName" : "Water Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "TurboPower wall charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Glass Type", + "attributeValue" : "Gorilla Glass 3" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "4 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ea9"), + "name" : "Motorola moto E5 Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "description" : "Motorola moto E5 Smart Phone 16 GB, 2 GB RAM, Fine Gold", + "price" : "160", + "sku" : "Motorola-moto-E5-Smart-Phone-16-GB,-2-GB-RAM,-Fine-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-E5-Smart-Phones-491433185-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDQ5OXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDZmLzkwNTM4NDc0MjA5NTguanBnfGRlZjQ1NjE4Y2IxNTY3NGNjOTQ3YTRkOTJmOGVjNGZiMGZhYTA2OWQ2NDNhN2ZjMzYwZTVhYzkwZDdlNDE1NmI", + "category" : { + "_id" : NumberLong(123456), + "name" : "Mobile Phones", + "possibleFacets" : [ + "Brand", + "4G", + "Fingerprint Recognition", + "Battery Capacity", + "Battery Type", + "Glass Type", + "Hybrid SIM Slot", + "Internal Storage", + "Memory(RAM)", + "Operating System", + "SIM Type", + "Primary Camera", + "Screen Size (Diagonal)", + "Selfie Camera" + ] + }, + "productAttributeList" : [ + { + "attributeName" : "Mobile Type", + "attributeValue" : "Smart Phone" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fine Gold" + }, + { + "attributeName" : "Model", + "attributeValue" : "moto E5" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Touch Screen", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Selfie Camera", + "attributeValue" : "5" + }, + { + "attributeName" : "Screen Resolution", + "attributeValue" : "1440 x 720" + }, + { + "attributeName" : "Screen Size (Diagonal)", + "attributeValue" : "14.47 cm (5.7 inch)" + }, + { + "attributeName" : "Primary Camera", + "attributeValue" : "13" + }, + { + "attributeName" : "Operating System", + "attributeValue" : "Android Oreo 8.0" + }, + { + "attributeName" : "Battery Capacity", + "attributeValue" : "4000" + }, + { + "attributeName" : "Microphone", + "attributeValue" : "Yes" + }, + { + "attributeName" : "2G Bands", + "attributeValue" : "GSM: 2/3/5/8" + }, + { + "attributeName" : "3G Bands", + "attributeValue" : "WCDMA: 1/2/5/8" + }, + { + "attributeName" : "4G Bands", + "attributeValue" : "
  • FDD LTE: 1/3/5/8
  • \n
  • TDD LTE: 38/40/41
  • " + }, + { + "attributeName" : "Bluetooth Version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Audio Jack", + "attributeValue" : "3.5 mm" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "EDGE", + "attributeValue" : "Yes" + }, + { + "attributeName" : "NFC", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Additional Connectivity", + "attributeValue" : "GPS" + }, + { + "attributeName" : "3G", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Cellular Technology", + "attributeValue" : "GSM + WCDMA + LTE" + }, + { + "attributeName" : "Expandable Memory", + "attributeValue" : "Up to 128" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "16" + }, + { + "attributeName" : "Processor", + "attributeValue" : "1.4 Qualcomm Snapdragon 425 GHz Quad Core" + }, + { + "attributeName" : "FM Radio", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Storage Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Speaker", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Height", + "attributeValue" : "15.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Thickness", + "attributeValue" : "0.89" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Fingerprint Recognition", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Fingerprint Sensor" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "10 W Rapid Charger" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Display Type", + "attributeValue" : "HD+" + }, + { + "attributeName" : "Operating System Type", + "attributeValue" : "Android" + }, + { + "attributeName" : "SIM Type", + "attributeValue" : "Dual SIM" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "2 GB" + }, + { + "attributeName" : "4G", + "attributeValue" : "Yes - LTE" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eaa"), + "name" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Lime Green", + "description" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Lime Green", + "price" : "29", + "sku" : "Reconnect-ProBuds2-BT-535-Wireless-Earphone,-Lime-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-ProBuds2-BT-535-Wireless-Earphone-Lime-Green-491362738-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NTg2fGltYWdlL2pwZWd8aW1hZ2VzL2g2Yy9oODkvODkwMzA3MDEyMjAxNC5qcGd8YzFjZmRmZWUxZDRkOTk3OWJhNTc5NzQ3MGJiOTJhMmY1YWM0MzU4ZGNkZjVkMDNhODUyZDQ5OWE4Y2Q0MGRkNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging Cable
  • User Manual
  • Warranty Card
  • Carry Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "ProBuds2" + }, + { + "attributeName" : "Model", + "attributeValue" : "BT-535" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Green" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eab"), + "name" : "JBL T110BT Wireless Earphone, Black", + "description" : "JBL T110BT Wireless Earphone, Black", + "price" : "37", + "sku" : "JBL-T110BT-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110BT-Headphones-and-Headsets-491377967-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDkwN3xpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDdiLzg5MzY4MjQ3MDA5NTguanBnfDkxOTc1YmI0MWVhYzhiOWNmNDZhOWNhODVlYmEzMjFiODYyYjQ5NWFlMGRkZDliM2RjOGNlZGVjNjBhYWFhMTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.2" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "96" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eac"), + "name" : "Sony WI-C300 Wireless Earphone, Blue", + "description" : "Sony WI-C300 Wireless Earphone, Blue", + "price" : "50", + "sku" : "Sony-WI-C300-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WI-C300-Headphones-and-Headsets-491378322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzQ1OXxpbWFnZS9qcGVnfGltYWdlcy9oNjMvaGVmLzg5MzY4NjIzNTEzOTAuanBnfGE2ZGU0MWM5NzMzNTY1ZGJiNGQ5YTVkZWM0MTFlNWIzOTNjZGViM2QxYTcyMWY3MGFkOGEzNGVjMGJlMDc0N2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Micro-USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm neodymium drivers for dynamic sound
  • \n
  • Comfortable behind-the-neck style
  • \n
  • Smartphone compatible with hands-free calling
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ead"), + "name" : "Reconnect Collar Buddy RAWEB1002 Wireless Earphone, Black", + "description" : "Reconnect Collar Buddy RAWEB1002 Wireless Earphone, Black", + "price" : "44", + "sku" : "Reconnect-Collar-Buddy-RAWEB1002-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Wireless-Earphone-RAWEB1002-491430965-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjM5fGltYWdlL2pwZWd8aW1hZ2VzL2hhMy9oNTMvOTA4ODM1MzYzMjI4Ni5qcGd8YTZlMWVmODc5MmI5OWFmNTZmZjExZTlmMWE0YjQ3NDE5ODZmNDUxYzg4OWZjZDA5YzE2OTBjZjAzOGY1N2Y4NA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "Up to 1.5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "320" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "Model", + "attributeValue" : "RAWEB1002" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "10" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eae"), + "name" : "Sony WH-1000XM3 Wireless Headphone, Black", + "description" : "Sony WH-1000XM3 Wireless Headphone, Black", + "price" : "435", + "sku" : "Sony-WH-1000XM3-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-92480181-Headphones-And-Headsets-491431107-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY1fGltYWdlL2pwZWd8aW1hZ2VzL2hiYi9oZDAvOTA2OTkyMzAwODU0Mi5qcGd8Mjg2OGFlYTRlYjBkZjljOWQyOGQ1YmFmNDU5NzZmODRjZjk1NTMwNmUxOGNmZDkzMDIxMDZlNTRhZGJmMThkZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-1000XM3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Carrying case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless freedom" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "47" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "101" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "104.5" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "225" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "30" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eaf"), + "name" : "Sony WF-SP700N Wireless Earphone, Black", + "description" : "Sony WF-SP700N Wireless Earphone, Black", + "price" : "189", + "sku" : "Sony-WF-SP700N-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WF-SP700N-Headphone-Headset-491430855-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTg4MXxpbWFnZS9qcGVnfGltYWdlcy9oMjgvaGIzLzg5OTk0Njk4NDI0NjIuanBnfGNhMjI5OWFkNDA4MDQ2MjhlYzVhZjY4ODYyNjNjZjcyMjI0ZjJhODFjZGVjYzQwMWZiN2U3NDQxNWQ1MWY3Y2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • 8 hours (Waiting Time)
  • 3 hours (Continuous Music play Back Time)
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WF-SP700N" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Easy Hands-Free Calls At The Click Of A Button
  • \n
  • NFC
  • \n
  • 9 Hours Of Music Playback
  • " + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "7.65" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6.09" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "9" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb0"), + "name" : "itek HD BTHP001 Wireless Headphone, Black", + "description" : "itek HD BTHP001 Wireless Headphone, Black", + "price" : "29", + "sku" : "itek-HD-BTHP001-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/iTek-BTHP001-Headphones-and-Headsets-491229646-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTk1NXxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGRmLzg5MzY4NTg0MTkyMzAuanBnfDkzYzllOTM3NDZmNWQ5ZDVjOWViNjQ4NTQzMDZjM2Y0OTg3Mzc2MTExYTliZmQ0OWY3MGYwNDY2YjllZTlkNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTHP001_BK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "3" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "itek", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb1"), + "name" : "Samsung EHS64AVFBECINU Wired Headphone, Black", + "description" : "Samsung EHS64AVFBECINU Wired Headphone, Black", + "price" : "7", + "sku" : "Samsung-EHS64AVFBECINU-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EHS64AVFBECINU-Headphone-Headset-491430862-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODU3OHxpbWFnZS9qcGVnfGltYWdlcy9oOTEvaDUyLzg5OTk0Njg4NTk0MjIuanBnfDMxYWMxODRhNmE5Njk1NzNmZTE1MzFhZWMyY2YzZTFkY2U2ODE0NWQ2NjJmOTNjZWVjNTgxZDI4NDM3NDRhN2U", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EHS64AVFBECINU" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "116" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "18 Hz -20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "59" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb2"), + "name" : "JBL T110 Wired Earphone, Black", + "description" : "JBL T110 Wired Earphone, Black", + "price" : "19", + "sku" : "JBL-T110-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphones-Headsets-491377941-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjAyOXxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDNlLzg4Nzk3MDcwOTUwNzAuanBnfGRlNTRiZjFmNTIyMzVlN2I3ZDU0OWIyNWE2NDk3ODAwNjY1ZDdiMTJjNmEzZGY4Zjk5YWY4MmJjZThhMGJlMTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb3"), + "name" : "Sony MDR-XB55AP Wired Earphone, White", + "description" : "Sony MDR-XB55AP Wired Earphone, White", + "price" : "37", + "sku" : "Sony-MDR-XB55AP-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB55AP-Headphones-and-Headstes-491336251-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjk4OHxpbWFnZS9qcGVnfGltYWdlcy9oNmYvaDY0Lzg5NDY3ODMwOTI3NjYuanBnfDUzZmU4YTk2Yjg0ZmZlOWY5ZjUwNjRiMzFlZTkzNmU0MmQzOGEwYmY1ZDk4MDNmYzdmN2NkOTA5NTViMGVjMzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB55AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Carrying Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • Approx. 1.2 m cord length
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb4"), + "name" : "Reconnect REVERB RAWHB1001 Wireless Headphone, Black/Silver", + "description" : "Reconnect REVERB RAWHB1001 Wireless Headphone, Black/Silver", + "price" : "29", + "sku" : "Reconnect-REVERB-RAWHB1001-Wireless-Headphone,-Black-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-RAWHB1001-Headphone-Headsets-491336259-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDUyN3xpbWFnZS9qcGVnfGltYWdlcy9oOTgvaDcwLzkwNDY5Mzg2NDg2MDYuanBnfDU2NDgyMWM2NjQ2ZGY2MzBhMzM5YmZiODJhYWUzODY1YTAwNTQ4Mzk5MTc2ODgxYzIzZTgxZTczYWU2MTFlYjg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "REVERB" + }, + { + "attributeName" : "Model", + "attributeValue" : "RAWHB1001" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Curvy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Silver" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb5"), + "name" : "Philips SHE1505 Wired Earphone, Black", + "description" : "Philips SHE1505 Wired Earphone, Black", + "price" : "6", + "sku" : "Philips-SHE1505-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE1505-Headphones-and-Headstes-491378220-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI5MHxpbWFnZS9qcGVnfGltYWdlcy9oNTEvaGQ2Lzg5MTMwMTE2MzgzMDIuanBnfDFlNGI2NzgwNTk0MjE1MTVlNTFiZjg3NDI1ZTk3MjAwOTAxN2E5YzcxNDQxNzQxY2M2N2M5ZjQzYTk5YjQ3OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHE1505" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "10 x 3 x 2 cms" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb6"), + "name" : "Sony MDR-AS210 Wired Earphone, Blue", + "description" : "Sony MDR-AS210 Wired Earphone, Blue", + "price" : "12", + "sku" : "Sony-MDR-AS210-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-AS210-Wired-Earphone-Blue-491277336-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDM2MnxpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDE4Lzg4NzcxOTEyMzM1NjYuanBnfGFjYjUxMGJkNWY0ZDRhYjE4YjVjNWUxNjE1YWU4YjliNDdlMTU1ZTE0MjAyODZlYWE1OWZhYzVlMTJiNGYyODA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13.5" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb7"), + "name" : "Sony MDR-XB550AP Wired Headphone, Red", + "description" : "Sony MDR-XB550AP Wired Headphone, Red", + "price" : "44", + "sku" : "Sony-MDR-XB550AP-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Headphones-Headsets-491320705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjAxOHxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaGM3Lzg5MjExMDE2OTcwNTQuanBnfGM0MmNiYmVhMGVlMzQ2MTlhMzJmMTg5ZDVmMzcwNGY2YWNhN2Q1ZTM3YWMzM2Y1ODg3YzBjMDc4MzkxNmVmNGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb8"), + "name" : "Sony MDR-EX255AP Wired Earphone, Red", + "description" : "Sony MDR-EX255AP Wired Earphone, Red", + "price" : "29", + "sku" : "Sony-MDR-EX255AP-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Headphones-and-Headstes-491336247-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjM4OXxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaGFlLzg5NDY3ODI3NjUwODYuanBnfDljY2VmNTE4NTIyY2M2Nzc1ODc0ZjUyZTA0YzQ3NzE4NGIzZDNhOWQyMzM3YjYxYTk5ZWFhMGQyYWFmODY0ZWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 25000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • \n
  • Approx. 1.2 m cord length
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eb9"), + "name" : "Skullcandy JIB S2DUFZ-385 Wired Earphone, Lime & Gray", + "description" : "Skullcandy JIB S2DUFZ-385 Wired Earphone, Lime & Gray", + "price" : "11", + "sku" : "Skullcandy-JIB-S2DUFZ-385-Wired-Earphone,-Lime-&-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUFZ-385-Headphones-and-Headsets-491167097-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTQ2NnxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDhjLzg5MjIzNTE3NjM0ODYuanBnfDc0ZWY4NWU3MmU3Y2ZlMDcyOTg0OTMyOTY0NzM0MmNjNTdmYjNhZjFlZTgwMTBmM2ZkNTU5MjZjNjA4ODAzYWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime & Gray" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eba"), + "name" : "Sony MDR-XB510AS Wired Earphone, Black", + "description" : "Sony MDR-XB510AS Wired Earphone, Black", + "price" : "41", + "sku" : "Sony-MDR-XB510AS-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB510AS-Wired-Earphone-Black-491320672-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDExMnxpbWFnZS9qcGVnfGltYWdlcy9oODkvaGY4Lzg5NDczODYxNTUwMzguanBnfGYwMjI5ZTExNTBkNjViZTE3N2ExMTRjNWI2NTYzNDJhNDc0ZGQ3NmMxMmM1NmM4MjZkNmFiMTE1MmViMzNlNmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB510AS" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebb"), + "name" : "Samsung U Flex EO-BG950CBEGIN Wireless Earphone, Black", + "description" : "Samsung U Flex EO-BG950CBEGIN Wireless Earphone, Black", + "price" : "73", + "sku" : "Samsung-U-Flex-EO-BG950CBEGIN-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EO-BG950CBEGIN-Headphones-Headsets-491362828-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjEyNHxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaDk1Lzg4Nzk3MDE4NTIxOTAuanBnfGVhY2YxNGQ3ZWFhYzQxMmM5OTUzN2VkM2JkYjcxNmEzZTBmMzA4NDVhM2FjYjAyOWY0YTc3MGM1YTQyYjk2YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "U Flex EO-BG950CBEGIN" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebc"), + "name" : "Philips SHE1525 Wired Earphone, Black", + "description" : "Philips SHE1525 Wired Earphone, Black", + "price" : "14", + "sku" : "Philips-SHE1525-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE1525-Headphones-and-Headstes-491378222-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODI4M3xpbWFnZS9qcGVnfGltYWdlcy9oYTcvaGZjLzg5MTQ2Mjk0MjcyMzAuanBnfDNhMTY5MGJiMmRmMmMzZTA4ZDRlMWJmZGEzOTYxYTA2NjBiMGM5YTI0N2E3NGU1NWIyODEzYmRjNmU3YjNiMmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE1525" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "3.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebd"), + "name" : "JBL T290 Wired Earphone, Gold", + "description" : "JBL T290 Wired Earphone, Gold", + "price" : "27", + "sku" : "JBL-T290-Wired-Earphone,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T290-Headphones-and-Headstes-491377949-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTY2OHxpbWFnZS9qcGVnfGltYWdlcy9oNmQvaDZjLzg5NDY4OTE0ODkzMTAuanBnfGUyOWM2ZDBmZDRmNDc2MDM1NjM1MmUyMDhhOWE1MzA5ODhlODM4OTExYzNiNjQxNTQzMmYxYTVhNjM4ZWRlYjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebe"), + "name" : "JBL T290 Wired Earphone, Silver", + "description" : "JBL T290 Wired Earphone, Silver", + "price" : "27", + "sku" : "JBL-T290-Wired-Earphone,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T290-Headphones-and-Headstes-491377951-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTAyOXxpbWFnZS9qcGVnfGltYWdlcy9oMmYvaGZlLzg5NDY4NzUyMzYzODIuanBnfDZkY2M2M2RmOTUyNjk3M2Q0OWZjMWU5YTYxM2EyNTRkZDZiYTM2MzdlOWEzNWQxN2U5YTMyZjNhMDg1NjhmM2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ebf"), + "name" : "JBL E35 Wired Headphone, Blue", + "description" : "JBL E35 Wired Headphone, Blue", + "price" : "58", + "sku" : "JBL-E35-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-and-Headsets-491377964-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mzc1OHxpbWFnZS9qcGVnfGltYWdlcy9oMWQvaDdjLzg5MjIyNzM5MDY3MTguanBnfGYwZGM1MTkwZTI4Y2MzMzhkNWEzZTgyM2E2YzNiMWYyYTUyNGQ1ZjZiN2ExZDAwNzUxNGFlYTI3OWU1YmM1NTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec0"), + "name" : "JBL E35 Wired Headphone, Red", + "description" : "JBL E35 Wired Headphone, Red", + "price" : "58", + "sku" : "JBL-E35-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-and-Headsets-491377965-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDUwMnxpbWFnZS9qcGVnfGltYWdlcy9oNzcvaDgxLzg5MjIyNzQ4ODk3NTguanBnfDRhN2Y3ZjFiNjUzNzliMzFlNzA5M2VlM2NiM2FhYWU1YjBkNTY3YjZlODk4YzE0ZGVmZTRmY2VlM2QyZWIxMTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec1"), + "name" : "JBL E35 Wired Headphone, White", + "description" : "JBL E35 Wired Headphone, White", + "price" : "58", + "sku" : "JBL-E35-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-and-Headsets-491377966-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTAxN3xpbWFnZS9qcGVnfGltYWdlcy9oMTQvaDk4Lzg5MjIyNzQyMzQzOTguanBnfGZmMGExODdiZjZkMDBkYTRiYWM3YTcxZjdhODBjODkwNGM1YzFlYTAyZWM3M2VlNjYwMTBmNzdmYjc1NjgzZDg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec2"), + "name" : "JBL Inspire 300 Wired Earphone, Teal", + "description" : "JBL Inspire 300 Wired Earphone, Teal", + "price" : "27", + "sku" : "JBL-Inspire-300-Wired-Earphone,-Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Inspire-300-Headphones-and-Headstes-491377958-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzY3NHxpbWFnZS9qcGVnfGltYWdlcy9oYjMvaDVjLzg5NDY4NzI2MTQ5NDIuanBnfDJmZjI5OTAxNjViZjcwNTYwZmZhYWQzYzA5MzBmN2MwOGEwMTYyZTI2YzdlMmQxOWMxNzU2ZmQxMjBjYTg3NTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Inspire 300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sport carry pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec3"), + "name" : "JBL E55BT Wireless Headphone, Red", + "description" : "JBL E55BT Wireless Headphone, Red", + "price" : "102", + "sku" : "JBL-E55BT-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E55BT-Headphones-and-Headstes-491377981-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDc2N3xpbWFnZS9qcGVnfGltYWdlcy9oNTEvaGI5Lzg5NDY4NjM3Njc1ODIuanBnfGVlZmJlMDRmNTk4Y2IzMDhmY2UzZWE2NWE4ZmEwZDE2ZGU2ZTcyYjkzYmUzOTkxNjEyNGMwMDk0MWNjYjJlZjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec4"), + "name" : "JBL E55BT Wireless Headphone, White", + "description" : "JBL E55BT Wireless Headphone, White", + "price" : "102", + "sku" : "JBL-E55BT-Wireless-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E55BT-Headphones-and-Headstes-491377982-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTkyOHxpbWFnZS9qcGVnfGltYWdlcy9oYWQvaDFiLzg5NDY4Njc2OTk3NDIuanBnfGNmNWQ0NGI1ZTA1MWE0ZWZkYmRlNmJmZTAyY2ExNjRlMGIxMjRhODU5YzVlMWNiNzdkMDMwYTlkMjFiNTRjODM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec5"), + "name" : "Sony MDR-EX255AP Wired Earphone, White", + "description" : "Sony MDR-EX255AP Wired Earphone, White", + "price" : "29", + "sku" : "Sony-MDR-EX255AP-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Headphones-and-Headstes-491336246-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTMxNXxpbWFnZS9qcGVnfGltYWdlcy9oYTgvaGE2Lzg5NDY3ODI0Mzc0MDYuanBnfDM1MmRkMDU2MWJjYzBlYjA5N2VhY2E1YTk0ZmFkZGNkMDc3NTM0NTkwNmE1ODI1ZGVhODk3MWM1OTc3YzBhM2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 25000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec6"), + "name" : "Sony MDRXB510ASRQE Wired Earphone, Red", + "description" : "Sony MDRXB510ASRQE Wired Earphone, Red", + "price" : "41", + "sku" : "Sony-MDRXB510ASRQE-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB510ASRQE-Headphones-and-Headstes-491320671-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjg5N3xpbWFnZS9qcGVnfGltYWdlcy9oMzUvaGIzLzg5NDY4MDA0NTk4MDYuanBnfGU2MzYzOGYwZGYzYjczMTkwMDYyMjMyMGZkYzc0ZTRhMWI3YWVlYWUzNzU4NmJiOTFkODAzNWU5Y2EyMGI0YTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB510ASRQE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Cord length: Approx.1.2 m
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec7"), + "name" : "Sony MDRXB510ASLQIN Wired Earphone, Blue", + "description" : "Sony MDRXB510ASLQIN Wired Earphone, Blue", + "price" : "41", + "sku" : "Sony-MDRXB510ASLQIN-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB510ASLQIN-Headphones-and-Headstes-491320673-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDIyNnxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaGRhLzg5NDY3ODc5NDI0MzAuanBnfGJjMGIwZTZjNDljNjdjZDY4MTU2YjNlZDQwMzRiMjBkNjY5NGM2M2E3ZWVkODRkN2Q0NTQyMjM4OTAzODg4Mzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB510ASLQIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Cord length: Approx.1.2 m
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec8"), + "name" : "Sony MDRXB510ASGQIN Wired Earphone, Green", + "description" : "Sony MDRXB510ASGQIN Wired Earphone, Green", + "price" : "41", + "sku" : "Sony-MDRXB510ASGQIN-Wired-Earphone,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB510ASGQIN-Headphones-and-Headstes-491320674-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE1NnxpbWFnZS9qcGVnfGltYWdlcy9oZTYvaDM5Lzg5NDY3ODc0MTgxNDIuanBnfGY0NWIyOTU0YTdkMmViYzhkYTE5NjgzMmJhMDVmNGQyYzRjZmQ1ODkxNDUyMTQzMDkzNmE4NDQ4NzExOTYyYTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB510ASGQIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Cord length: Approx.1.2 m
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ec9"), + "name" : "Sony WH-CH400 Wireless Headphone, Red", + "description" : "Sony WH-CH400 Wireless Headphone, Red", + "price" : "73", + "sku" : "Sony-WH-CH400-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/SONY-WH-L600-HEADPHONES-491430999-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzA5MXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDY0LzkwNTA2MTA3OTQ1MjYuanBnfDlmMzQ0YzU1ZjgyOTk5ODBiODVlZjdiYjYzOGQzYzE5MGJlMTRmOWNmZDZjMjNkMTM2MDY0M2VmMTAxMDU4YjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "WH-CH400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "107" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eca"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Black", + "description" : "JBL Endurance SPRINT Wireless Headphone, Black", + "price" : "58", + "sku" : "JBL-Endurance-SPRINT-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431089-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzY0OXxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaDU3LzkwNjk5MTI5ODE1MzQuanBnfGMyYzMzM2RhMzg3NTI3MGM5YTY0M2ZhYTBkODNlMGZiMzY0MDZhM2VmNjI0NDhlOGRiMTEyNjM4NmI3N2RlNGU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecb"), + "name" : "Sony WH-CH500 Wireless Headphone, Black", + "description" : "Sony WH-CH500 Wireless Headphone, Black", + "price" : "87", + "sku" : "Sony-WH-CH500-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH500-Headphone-Headsets-491430916-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDUzNXxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDEyLzkwNDY5MzQzMjMyMzAuanBnfDA1NWMxMWQ3OTE4NjMzZmZiMzRlMWI5Y2NiMWNmMzUzY2Q2NTFkYWU0MDE4NzNlMTY1NDQzNWE2OTUxZjk3YWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Continuous Music Playback Time: 20 hours
  • Waiting Time: 200 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "WH CH500" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecc"), + "name" : "Sony MDR-XB650BT Wireless Headphone, Black", + "description" : "Sony MDR-XB650BT Wireless Headphone, Black", + "price" : "116", + "sku" : "Sony-MDR-XB650BT-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB650BT-Wireless-Headphone-Black-491229616-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzYzOHxpbWFnZS9qcGVnfGltYWdlcy9oNzcvaDMzLzg5Mjc3NjI5MDcxNjYuanBnfGU4NjY1ODA0MmM2YTBjMTJmMjFkNDM1ODIxNWEwNmQ0NDY5NjYwNTE1OWVhNGUyZDI5Zjg3NzFiN2UwMTk2OGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "30 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB650BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Warranty card
  • USB Cable(50cm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium dynamic drivers deliver precise sound
  • NFC One-touch for instant connectivity
  • EXTRA BASS 2 for deep" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "95" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecd"), + "name" : "Sennheiser HD 205 II Wired Headphone, Black", + "description" : "Sennheiser HD 205 II Wired Headphone, Black", + "price" : "51", + "sku" : "Sennheiser-HD-205-II-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-205-II-Wired-Headphone-Black-491004801-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDIxM3xpbWFnZS9wbmd8aW1hZ2VzL2g5Mi9oYjMvODkyNzgxODAyMjk0Mi5wbmd8N2VkMzM4ZWZkMDQyZmZiMTkxZWY2YmI0ZDgwMjc0OTM5YjUyZjA2YTJkNmMwNTcwZjg1NzBlMGRlN2FiY2IzMw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "HD" + }, + { + "attributeName" : "Model", + "attributeValue" : "205 II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Weight", + "attributeValue" : "206" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Jack plug: 3.5/6.3 mm Stereo
  • Transducer principle: Dynamic" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Protective Pouch
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ece"), + "name" : "Sennheiser CX 2.00i Wired Earphone, Black", + "description" : "Sennheiser CX 2.00i Wired Earphone, Black", + "price" : "58", + "sku" : "Sennheiser-CX-2.00i-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-2.00i-Wired-Earphone-Black-491005008-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTk4NXxpbWFnZS9qcGVnfGltYWdlcy9oNmIvaDFmLzg5Mjc3MzU0NDc1ODIuanBnfDg5NGQ3MjJhNDdiZDU4OWRlNTU4YjE3MTc4ZjExZTQ2ZTk5NmNmMjNkOGZhNDUxOTk4YjQzNDQ4MjMzMDA2MmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 2.00i" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "28" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Ear adapter set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Headset with vibrant sound and deep bass
  • Optimized shape and size for perfect fit and outstanding comfort
  • 4 ear adapter sizes (XS" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ecf"), + "name" : "Skullcandy Uproar Wireless Headphone, Black", + "description" : "Skullcandy Uproar Wireless Headphone, Black", + "price" : "73", + "sku" : "Skullcandy-Uproar-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Uproar-Wireless-Headphone-Black-491315304-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTEzMnxpbWFnZS9qcGVnfGltYWdlcy9oZDQvaDFmLzg5Mjc3OTg3NTUzNTguanBnfGU2NmU0YzZlYzFlODZjNTQxZjJjZmQ3ZTRkZWJiNTJiYzY5ZDEzMzQwNDU4N2Y0MzU4MDcxMGJiMGQzMGRhNzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Uproar" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Low-profile fit and lightweight design
  • Bluetooth wireless with 10-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed0"), + "name" : "Sennheiser HD 4.30i Wired Headphone, Black", + "description" : "Sennheiser HD 4.30i Wired Headphone, Black", + "price" : "116", + "sku" : "Sennheiser-HD-4.30i-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.30i-Wired-Headphone-Black-491320579-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTA4MXxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaGRmLzg5Mjc2NzI0MDE5NTAuanBnfGE3MTA4ZGQ1ZmMyYjZhZjQ5YjU2YjgxODc2MTI0ZWYyM2E3ZDZmY2RjNGJlNjAyODU5ZjczNTg2OTdkZWVmYzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 4.30i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 4.30 - 1.4m detachable single-sided cable with 3-button remote / 3.5 mm angled plug for Apple variants
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed1"), + "name" : "Sennheiser HD 4.40 BT Wireless Headphone, Black", + "description" : "Sennheiser HD 4.40 BT Wireless Headphone, Black", + "price" : "160", + "sku" : "Sennheiser-HD-4.40-BT-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.40-BT-Wireless-Headphone-Black-491320588-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1Nzk4OHxpbWFnZS9qcGVnfGltYWdlcy9oYjUvaGNkLzg5Mjc3NTI0MjE0MDYuanBnfDUwZWY2NjYyYjQzMDg5MmExNjg0MmNkNWU5N2YxODdlZjcxNDZiM2Q4MTAwNGMyNzUyYTdkMDViMTRmNmZjMjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "HD 4.40 BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed2"), + "name" : "Sennheiser HD 4.20s Wired Headphone, Black", + "description" : "Sennheiser HD 4.20s Wired Headphone, Black", + "price" : "87", + "sku" : "Sennheiser-HD-4.20s-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.20s-Wired-Headphone-Black-491320577-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY2NHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaGRiLzg5Mjc2NzU2Nzg3NTAuanBnfGVlZDQzMDgwY2ViZmJlMWNmMTAzODI3MWZhYTRlYmQxYmE1NWZkZTIwZTlhYjlhYTZhNzc5OWQzNGNmMDdhNTg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 4.20s" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed3"), + "name" : "Sennheiser HD 2.30i Wired Headphone, Black", + "description" : "Sennheiser HD 2.30i Wired Headphone, Black", + "price" : "102", + "sku" : "Sennheiser-HD-2.30i-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-2.30i-Wired-Headphone-Black-491320575-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjEzfGltYWdlL2pwZWd8aW1hZ2VzL2g5ZS9oMTAvODkyNzY4MDAwNDEyNi5qcGd8NGE4Zjg4Mjk5MDYwZGRkNTgxZjE2Y2FmNTAyMmYwMmI5ZDk5MjFjYzM4ZDdmMmY5YmI5MDhhOGNmZjY2N2E3Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.30i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "22" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "262" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 2.30 - 1.4m detachable single-sided cable with 3-button remote
  • 3.5mm plug
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed4"), + "name" : "Sennheiser HD 2.30G Wired Headphone, Black", + "description" : "Sennheiser HD 2.30G Wired Headphone, Black", + "price" : "102", + "sku" : "Sennheiser-HD-2.30G-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-Headphone-HD2-30G-20-BLACK-491320573-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjMwfGltYWdlL2pwZWd8aW1hZ2VzL2hjMC9oOGQvODkyNzY3Nzk3MjUxMC5qcGd8MTY3OGJkMjZiOWU2YzY1NDJhOTkxMDU2ZDdlYzA0YTZjYjA3ZjJmZDc0YWQ5YTVlY2VkMTc3YTI4YzQxOWQ3ZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.30G" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "22" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "262" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 2.30 - 1.4m detachable single-sided cable with 3-button remote
  • 3.5mm plug
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed5"), + "name" : "Sennheiser HD 2.20s Wired Headphone, Black", + "description" : "Sennheiser HD 2.20s Wired Headphone, Black", + "price" : "73", + "sku" : "Sennheiser-HD-2.20s-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-2.20s-Wired-Headphone-Black-491320572-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjQwNnxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaGE2Lzg4NzcxNzg1ODUxMTguanBnfGNlNjZhZjAxY2QwZTcyNGMyNWI4MWE2MTYyZmUyMjA5MmFkMDdjMTIyMzY4NjAwNmI1MzI3ZjVkNjMzYjI3YzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.20s" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Weight", + "attributeValue" : "246" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1.4m single sided cable with 1-button remote
  • 3.5mm angled plug
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed6"), + "name" : "Reconnect Sporty EP SE-MIC Wired Headphone, Green", + "description" : "Reconnect Sporty EP SE-MIC Wired Headphone, Green", + "price" : "17", + "sku" : "Reconnect-Sporty-EP-SE-MIC-Wired-Headphone,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/6417c778-bdec-4871-82a5-320edc48853e-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzAyNnxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaGYxLzg4MDUwMDE3MjM5MzQuanBnfGFkYTI2NDFhYTVlNDk5NDFjZDE3YWQ1NWZkYjU3NWY1OWUzNDQ3NWNhNDA2ZmU0ZTRjODJjNjNlNTVjYzEyMWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EP SE-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "93" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sporty look - Stylish & adjustable clip basis ear size
  • 2*13.5 mm speaker size - Dynamic stereo experience
  • 3.5 mm gold plated plug - Better sound quality
  • " + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed7"), + "name" : "JBL E65BTNC Wireless Headphone, Black", + "description" : "JBL E65BTNC Wireless Headphone, Black", + "price" : "145", + "sku" : "JBL-E65BTNC-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE65BTNCBLK-Headphones-and-Headstes-491377983-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTkxMnxpbWFnZS9qcGVnfGltYWdlcy9oZTUvaGE4Lzg5MDQyMzgwMDYzMDIuanBnfDNiOTI4ZWYwMGI4MzlhMGVlNGMzZTY5MDRlYTFjNGMzYTllNDExOTE3NTdiZDg4M2Y3ZDM3NjQwNTZlYWUxZTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLE65BTNCBLK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Fabric" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "258" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed8"), + "name" : "Sony MDR-EX155AP Wired Earphone, White", + "description" : "Sony MDR-EX155AP Wired Earphone, White", + "price" : "19", + "sku" : "Sony-MDR-EX155AP-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Headphones-and-Headstes-491336244-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODc4MnxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaGEwLzg5MDQyNDU1NDI5NDIuanBnfDE5MGRkYmZmODZiYjFkMjUyMTRmYmZiMTg5ZmRkOTg3Yjg3OWJkYzk5ZmFmNWZjMWI1ZWQzMTM4MjY2OWM5MzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "5Hz - 24000Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ed9"), + "name" : "Sony MDRXB950B1LCE Wireless Headphone, Blue", + "description" : "Sony MDRXB950B1LCE Wireless Headphone, Blue", + "price" : "203", + "sku" : "Sony-MDRXB950B1LCE-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB950B1LCE-Headphones-and-Headstes-491320708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDI4M3xpbWFnZS9qcGVnfGltYWdlcy9oNjMvaDI3Lzg5NDY3ODg1OTc3OTAuanBnfDZiMWQyZTM4YTZjMzIxNmNlZWNiMGM3YmJhOWJjOWExZjJlMmFkMmQxYjVjNzFjNjVlNGRkZmE4Y2RhNDUzOGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "18 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDRXB950B1LCE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Connection Cable: YES Headphone cable (approx. 1.2 m" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Optimize sound settings with Sony | Headphones Connect app
  • \n
  • Approx. 4 hours chargr time
  • " + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eda"), + "name" : "JBL T450BT Wireless Headphone, Blue", + "description" : "JBL T450BT Wireless Headphone, Blue", + "price" : "51", + "sku" : "JBL-T450BT-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450BT-Headphone-and-Headsets-491332666-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTQwNHxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDQzLzg5Nzk3MDg4Mzc5MTguanBnfGE4NjRjOGJhYmUxODgwYTczZTg4Mzc0ODVkM2Y2MjcwYTU5NTk5NmNiMTFlNzk2ZWZmODEwMGRlNjVlNzQ5YWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T450BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dynamic Driver: 32mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edb"), + "name" : "Creative Outlier Sports EF0730 Wireless Earphone, Neon Green", + "description" : "Creative Outlier Sports EF0730 Wireless Earphone, Neon Green", + "price" : "102", + "sku" : "Creative-Outlier-Sports-EF0730-Wireless-Earphone,-Neon-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0730-Headphones-and-Headsets-491430841-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzUxNnxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDQyLzg5OTQ3MzI2NzEwMDYuanBnfDViZGY0MjA5YWNkZmIyMjRiZDdlYzcyYjBjNDAyZTU4OGIxNTEwOTNlNGI1ZDNkYzBlMmNkZGIyZjQ2ZGJjN2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 11 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Outlier" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0730" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6mm Neodymium Drivers
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Neon Green" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edc"), + "name" : "Creative Aurvana 3 Plus EF0680 Wired Earphone, Bronze", + "description" : "Creative Aurvana 3 Plus EF0680 Wired Earphone, Bronze", + "price" : "174", + "sku" : "Creative-Aurvana-3-Plus-EF0680-Wired-Earphone,-Bronze", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0680-Headphones-and-Headsets-491430838-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTU5MXxpbWFnZS9qcGVnfGltYWdlcy9oNDYvaDBiLzg5OTQ3Mjk3ODc0MjIuanBnfDU1YmIxMjIwZjA0NWRiZGU2MTRlMGQ5NDljOTgxODVhN2FlMWM0YjUwZjNmN2E5NmVhZTVjNTY2MTJiYmRlMDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aurvana 3 Plus" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0680" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 Hz - 17 kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bronze" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Inline Control
  • \n
  • Volume Control
  • \n
  • Driver: Dual Balanced Armature Drivers
  • \n
  • Cable Length: 1.3 meter
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edd"), + "name" : "JBL Reflect Mini Wired Earphone, Blue", + "description" : "JBL Reflect Mini Wired Earphone, Blue", + "price" : "51", + "sku" : "JBL-Reflect-Mini-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-Headphones-and-Headstes-491377960-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjQyfGltYWdlL2pwZWd8aW1hZ2VzL2hkYi9oNDgvODk0Njg3Njg3NDc4Mi5qcGd8ZDVjZmQxZTIxMjFmYzc2ZGNhNzhjMDk5ODUyMDZmOTdiZGM0MmQ3NTVmOGY3MGQ1OWNlNzE0NGFlYzBhYjU4OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 kHz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ergonomic sport ear-tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ede"), + "name" : "Skullcandy Method S2CDGY-405 Wired Headphone, Gray", + "description" : "Skullcandy Method S2CDGY-405 Wired Headphone, Gray", + "price" : "37", + "sku" : "Skullcandy-Method-S2CDGY-405-Wired-Headphone,-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/491167109-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDgxMXxpbWFnZS9wbmd8aW1hZ2VzL2gwNC9oZmYvODkyNzg1NjI5NTk2Ni5wbmd8N2MxZTBlMjNiMjc4ZDQyMTM2OThlNjNmMTJjZGNhYzA5YzJiYTMyYmM2YzQwNGRmY2M5MzU0YmE3OTVhNWIwOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDGY-405" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637edf"), + "name" : "Logitech G Series G233 Wired Headphone, Black", + "description" : "Logitech G Series G233 Wired Headphone, Black", + "price" : "102", + "sku" : "Logitech-G-Series-G233-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Logitech-G233-Headphone-and-Headset-491392227-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTk5fGltYWdlL2pwZWd8aW1hZ2VzL2gxNy9oZGMvOTAxMTM5OTY4ODIyMi5qcGd8Yzk5ZDJhMTdiNjFjMzkxM2JlYjdmODdmMDFjOTllOGM4MGQ4NjNjNTJjZDAzNjgwNGY3N2JmNjMyODViYzgyZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "G Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "G233" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "8.17 (W) x 18.2 (D) x 17.2 (H) cms" + }, + { + "attributeName" : "Weight", + "attributeValue" : "259" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable microphone boom with micro pop filter" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Logitech", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee0"), + "name" : "Sennheiser CX 180 II Headphone, Black", + "description" : "Sennheiser CX 180 II Headphone, Black", + "price" : "15", + "sku" : "Sennheiser-CX-180-II-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-180-II-Headphone-Black-490552411-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDYxM3xpbWFnZS9wbmd8aW1hZ2VzL2gyYy9oOWIvODkyNzgwODkxMzQzOC5wbmd8YjQ1ZGJhYzA4ZDBkMTQzOTk2ZGJjOWIzMWY3YmZmYmI2NTQzM2U1NTNhYjJiMjJhNWY5NzJjMTU2NTZhMDNlMA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "CX" + }, + { + "attributeName" : "Model", + "attributeValue" : "180 II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "5" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Innovative finger-contoured housing design enables for easy adjustment and optimal wearing comfort (different sizes of ear adapters included in delivery)
  • Powerful" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee1"), + "name" : "Skullcandy Uproar Wireless Headphone, White/Gray", + "description" : "Skullcandy Uproar Wireless Headphone, White/Gray", + "price" : "73", + "sku" : "Skullcandy-Uproar-Wireless-Headphone,-White-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Uproar-Wireless-Headphone-White-Gray-491315305-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODY3NnxpbWFnZS9qcGVnfGltYWdlcy9oYzEvaDJmLzg5Mjc3OTg0Mjc2NzguanBnfDEwMGExN2NkNDYzMGY3MzcxODYyMDM3Nzk2Y2U3NGMyZDA0Y2NkOWJlMTMwZjE0ODFiOTEyYzE5OTU3M2FlYmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Uproar" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Low-profile fit and lightweight design
  • Bluetooth wireless with 10-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Gray" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee2"), + "name" : "Skullcandy Stim On Ear Wired Headphone, Red", + "description" : "Skullcandy Stim On Ear Wired Headphone, Red", + "price" : "29", + "sku" : "Skullcandy-Stim-On-Ear-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Stim-On-Ear-Wired-Headphone-Red-491336160-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDAxNnxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaDE0Lzg4NzcxODA4Nzg4NzguanBnfGViMDNmZTlhN2JmYzkwYzMzNzA4Mjc1ZjRhODkyMGNmZmFhZGFjNGQ3NDMwMGYxNjUyOWQyYzNlZDYwM2RiMTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Stim" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee3"), + "name" : "Skullcandy Hesh 2 Wireless Headphone, Black", + "description" : "Skullcandy Hesh 2 Wireless Headphone, Black", + "price" : "124", + "sku" : "Skullcandy-Hesh-2-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Hesh-2-Wireless-Headphone-Black-491315306-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTMzNHxpbWFnZS9qcGVnfGltYWdlcy9oY2EvaDYzLzg4NzcyMTcwNTQ3NTAuanBnfDFlOTc0ZDRmYjk2MTk3ZDhiOTUxNzhmN2ZjMTQxMzIwOTg3OWQ1ZjIyOTIzYTlmMGZlMDBkOTI2ZmMwOGIzZWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Hesh 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee4"), + "name" : "Skullcandy Grind Wireless Headphone, Black/Chrome", + "description" : "Skullcandy Grind Wireless Headphone, Black/Chrome", + "price" : "95", + "sku" : "Skullcandy-Grind-Wireless-Headphone,-Black-Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Grind-Wireless-Headphone-Black-Chrome-491315296-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODkyOXxpbWFnZS9qcGVnfGltYWdlcy9oYTcvaGU4Lzg5Mjc2NzQwNDAzNTAuanBnfGMzMTY0NTExOTZjZWRkZmI3Mzg5NmE5OTIyNTA4Yzg1M2YzMWZhODA3OTdkNDc2N2VhMzQ5MTM3MThhYzEyMWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Grind" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium materials and widely celebrated acoustics
  • Bluetooth wireless with 12-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee5"), + "name" : "Jabra Sport Pace Wireless Headset, Blue", + "description" : "Jabra Sport Pace Wireless Headset, Blue", + "price" : "87", + "sku" : "Jabra-Sport-Pace-Wireless-Headset,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/60306c60-73eb-42b6-97c2-0ea82bc5330b-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQ3MXxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaDRhLzg4MDQ5OTQ4NDI2NTQuanBnfGE3NjIzMjk0NTFlZWM0YmU4ODIwNTBhOTdlMjUwNmIwZmQ5N2I0MDkyZjhhYzIyZjI3MWJmMTdiMzM0MGE4YjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of EarGels
  • FitClip
  • USB cable
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sport" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pace" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Standby time - Up to 5 days
  • Charging time - Approximately 2 hours
  • Talk/Music time - Up to 5 hours
  • Operating range - Up to 10 meters (33 feet)
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "109" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee6"), + "name" : "Sennheiser HD 2.10 Wired Headphone, Black", + "description" : "Sennheiser HD 2.10 Wired Headphone, Black", + "price" : "58", + "sku" : "Sennheiser-HD-2.10-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-2.10-Wired-Headphone-Black-491320571-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjM3M3xpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDhiLzg5Mjc2NDA2MTY5OTAuanBnfDE5NmIwNmM1Yzg2MmU3ZDUwYTIwYWU3YjAzNDZlYTdhNDdlNjUzNzJmNjlmY2YxZmQyZWJjYWQwNTBiZWZkNWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 2.10" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "26" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1.4m symmetrical cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee7"), + "name" : "Reconnect Sporty EP SE-MIC Wired Headphone, Blue", + "description" : "Reconnect Sporty EP SE-MIC Wired Headphone, Blue", + "price" : "17", + "sku" : "Reconnect-Sporty-EP-SE-MIC-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Sporty-EP-SE-MIC-Wired-Headphone-Blue-491228712-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTU2N3xpbWFnZS9qcGVnfGltYWdlcy9oMjAvaDZjLzg5Mjc2NTY2NzMzMTAuanBnfDhkNmY3ZjA1MzMxZWJlMGQyNzM3OGNmNjA4ODFhMzllMTBiMmYyOGZjYTNhMjhiNmFhZGMwMzI1YWY0YTdlNjQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EP SE-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "93" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Sporty look - Stylish & adjustable clip basis ear size
  • 2*13.5 mm speaker size - Dynamic stereo experience
  • 3.5 mm gold plated plug - Better sound quality
  • " + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee8"), + "name" : "Sennheiser CX 2.00G Wired Earphone, Black", + "description" : "Sennheiser CX 2.00G Wired Earphone, Black", + "price" : "58", + "sku" : "Sennheiser-CX-2.00G-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-2.00G-Wired-Earphone-Black-491005007-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzAwOXxpbWFnZS9qcGVnfGltYWdlcy9oMDcvaGUwLzg5Mjc3MjA4MzMwNTQuanBnfDFjOGI4MWExOTljYjQ3MjlmOWFjNzdjODZkMzQyNTI3OWZlNThmNzM4YzllODUyOTJhZGQ2MGY2YjI2Y2FiOTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 2.00G" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ee9"), + "name" : "Skullcandy Smokin Buds 2 S2PGFY-003 Wired Earphone, Black", + "description" : "Skullcandy Smokin Buds 2 S2PGFY-003 Wired Earphone, Black", + "price" : "29", + "sku" : "Skullcandy-Smokin-Buds-2-S2PGFY-003-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds-2-S2PGFY-003-Wired-Earphone-Black-491167105-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjY4MnxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaGY1Lzg5Mjc4NzU2MjkwODYuanBnfDgzZWJmYjEzYmZhN2RiZGNiMzlmODU5MmMwYTMzMzE0YzU3NmUzNDJhY2JiMmI3ODAzNGNjZjE5NDJhZjI3Yzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eea"), + "name" : "Sony MDR-XB650BT Wireless Headphone, Red", + "description" : "Sony MDR-XB650BT Wireless Headphone, Red", + "price" : "116", + "sku" : "Sony-MDR-XB650BT-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB650BT-Wireless-Headphone-Red-491229617-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTUyMXxpbWFnZS9qcGVnfGltYWdlcy9oOTgvaGNhLzg5Mjc3Nzg1MDQ3MzQuanBnfGU0OTA5N2U2Mzk2MzY2MTQ3ZjM3ZjAzNTM5MDRiM2MxZjU5NmIxNmFmMTIwZGZmOGQyYTFiMmMzMTAxMWI3NzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "30 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB650BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Warranty card
  • USB Cable (50 cm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium dynamic drivers deliver precise sound
  • NFC One-touch for instant connectivity
  • EXTRA BASS for deep" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "95" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eeb"), + "name" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Blue", + "description" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Blue", + "price" : "80", + "sku" : "Altec-Lansing-MZX856-Waterproof-Sport-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/bc29a728-a463-424d-a6dc-571193c58413-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjI5M3xpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGJjLzg4MDUwMDQ2NzMwNTQuanBnfDBmMGJkMTFkM2FhNTBiMDVkY2M5NDQ1ODg4YjUyYjFkNzdjZDUzMTNmNjIxNTFjYzhjYWQ0NzU1MWUwODRmNzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Freebit Ear Tips(Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MZX856" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Average Battery Life : Up to 20 Hours
  • IP67 Waterproof Rated Bluetooth Sport Ear Buds
  • Freebit Ear Tips
  • 9MM Neodymium Drivers
  • Certification : IP67
  • Wireless Range : 33 feet
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eec"), + "name" : "SHINECON VR Play G-04 3D Virtual Reality Headset", + "description" : "SHINECON VR Play G-04 3D Virtual Reality Headset", + "price" : "58", + "sku" : "SHINECON-VR-Play-G-04-3D-Virtual-Reality-Headset", + "imageUrl" : "https://www.reliancedigital.in/medias/SHINECON-VR-Play-G-04-3D-Virtual-Reality-Headset-491277000-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDcyNnxpbWFnZS9qcGVnfGltYWdlcy9oNWQvaGJmLzg5Mjc2MDcwNjI1NTguanBnfDJmZTdjOTc1ZGIyYzBjODk4NTFjMWZiYWI1YjM4MzAyNjUxZGYwZTZkZDgzM2U5MzRmODUyZGY1OGNjMGQwZmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "G-04" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SHINECON" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pupil distance: Adjustable(65-72mm)
  • Adjustable Focal length
  • " + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Strap (420 x 40x 2mm)
  • Cloth (131 x 131 mm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SHINECON", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eed"), + "name" : "Skullcandy JIB Wireless Earphone, Purple", + "description" : "Skullcandy JIB Wireless Earphone, Purple", + "price" : "44", + "sku" : "Skullcandy-JIB-Wireless-Earphone,-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wireless-Earphone-Purple-491350398-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODY0fGltYWdlL2pwZWd8aW1hZ2VzL2hlOC9oNDYvODg3NzIyMDY1OTIzMC5qcGd8NGI5OTVjMDZjZDA5OTA4OGU4OTBkNDU3YWY0Y2RlNDA4ZGZlNzZmZDk2NWFhYmQ1Yjg3ZDJkZDdiNjY5YTM1Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Purple" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eee"), + "name" : "Sony MDR-XB450AP Wired Headphone, Blue", + "description" : "Sony MDR-XB450AP Wired Headphone, Blue", + "price" : "37", + "sku" : "Sony-MDR-XB450AP-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/491182129-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTM3MnxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaDVlLzg5Mjc4NTMwMTkxNjYuanBnfDAwMjgxMWZlNGFhYTc0NmE0MDY4MjRjMTIzODU3N2Q4NmJlMDc2Yzc4YjAyMGNmZDNiZWQ0NjRmODZiMzBmZjc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm driver unit
  • Deep" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eef"), + "name" : "Sony MDR-EX155AP Wired Earphone, Red", + "description" : "Sony MDR-EX155AP Wired Earphone, Red", + "price" : "19", + "sku" : "Sony-MDR-EX155AP-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Wired-Earphone-Red-491336242-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NDY1fGltYWdlL2pwZWd8aW1hZ2VzL2hlMi9oNjUvODg3NzIxNTA4ODY3MC5qcGd8NmFiOWJkMTg1NTBkMmU1MjhmZmIxYzE3NWM3OWQ1Y2JhNzIxY2Y1NTkxMWU1MmNmNTVmYjkwNmY5YWQ1NWE3ZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Cable adjuster
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef0"), + "name" : "Sony MDR-XB450AP Wired Headphone, Red", + "description" : "Sony MDR-XB450AP Wired Headphone, Red", + "price" : "37", + "sku" : "Sony-MDR-XB450AP-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491182130-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjE0OHxpbWFnZS9qcGVnfGltYWdlcy9oOTUvaDBjLzg5Mjc4NTcxNDc5MzQuanBnfDI4M2Q2MWJmZjE1Y2E3NTRjZTI3NjU0MGYyNWI2NGYyYjBlNmRjMmYzMDU2MmM3NDA3ZWMxMTgwMWRhYmU0OTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - L-shaped Gold-plated Four-conductor Stereo Mini
  • Microphone Directivity - Omni Direction
  • Effective Frequency of Microphone - 20 Hz - 20" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef1"), + "name" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Red", + "description" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Red", + "price" : "44", + "sku" : "Reconnect-BTH-BT-S-MIC-Bluetooth-Headset,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-BTH-BT-S-MIC-Bluetooth-Headset-Red-491183557-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzQ1MXxpbWFnZS9qcGVnfGltYWdlcy9oZTkvaGY5Lzg5Mjc2MDU3NTE4MzguanBnfGRhMDkzNDBkM2I0Njk4NzViODc2YzUwN2VkNzQxMTY3NWZiY2Q2Njk3ZGQ1NjgwMDMwNjJiZGJjZTdiOWZjYmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "60" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTH BT-S-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfort fit - Suitable while Sports activity & Travel
  • Music on the GO - Interrupted music for 8 hrs
  • " + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef2"), + "name" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Black", + "description" : "Altec Lansing MZX856 Waterproof Sport Wireless Earphone, Black", + "price" : "80", + "sku" : "Altec-Lansing-MZX856-Waterproof-Sport-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/60fd794a-5a0f-4272-8557-f48d433acd40-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU2MHxpbWFnZS9qcGVnfGltYWdlcy9oYTQvaDZlLzg4MDUwMDIzNzkyOTQuanBnfGQyMWQ1NGFkYmU2YWY1MzZhMWFhYzE1MjBjODE1ZTZjOTdiZjg1MWQ3NTA2YjljYTc1YjJkMWY3NjllNDMwNDc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Freebit Ear Tips (Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MZX856" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Average Battery Life : Up to 20 Hours
  • IP67 Waterproof Rated Bluetooth Sport Ear Buds
  • Freebit Ear Tips
  • 9MM Neodymium Drivers
  • Certification : IP67
  • Wireless Range : 33 feet
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef3"), + "name" : "JBL E35 Wired Headphone, Black", + "description" : "JBL E35 Wired Headphone, Black", + "price" : "58", + "sku" : "JBL-E35-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E35-Headphones-Headsets-491377963-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODEyOXxpbWFnZS9qcGVnfGltYWdlcy9oZDYvaDE0Lzg4Nzk3MTE0MjA0NDYuanBnfGU0OTcyNTdhMDBhZmZkMzFlM2NjYTk1Y2VlMTY3MjYzM2IzYjk1NGI3MmNhMjNhM2VkZTZhYjcyZjJiODZhYzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E35" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1-button remote with microphone detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef4"), + "name" : "Philips SHQ6500CL Wireless Bluetooth Earphone, Green/Black", + "description" : "Philips SHQ6500CL Wireless Bluetooth Earphone, Green/Black", + "price" : "53", + "sku" : "Philips-SHQ6500CL-Wireless-Bluetooth-Earphone,-Green-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ6500CL-Wireless-Bluetooth-Earphone-Green-Black-491277058-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODY0NHxpbWFnZS9qcGVnfGltYWdlcy9oMGMvaDM0Lzg5Mjc3OTI4NTcxMTguanBnfDhmYjJjOGZmY2NkZGMwZDQ4N2NmYTY5M2JjNWI4NDQzOThlMTViNzk2MTFhMzNkZGJlY2QwYzBlZDBmOTRkOTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Quick start guide
  • USB cable: Included for charging
  • Ear fit stabilizer: 2 pairs
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ6500CL" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Music playtime: 4.5 hr
  • Standby time: 55 hr
  • Talk time: 4.5 hr
  • Sound Enhancement: Echo Control" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green/Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "14" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef5"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Teal", + "description" : "JBL Reflect Mini BT Wireless Earphone, Teal", + "price" : "87", + "sku" : "JBL-Reflect-Mini-BT-Wireless-Earphone,-Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLREFMINIBTTEL-Headphones-Headsets-491377978-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDYyN3xpbWFnZS9qcGVnfGltYWdlcy9oNTYvaDlmLzg4ODk4NjMwNDUxNTAuanBnfGI1ZDQyNGE3YTc4YTNlOGZmYTM0Yjc3NTY4YTQ0YTRhMGZmOGYzNjk5ZjFkMDM3ZDRhNTk3MjE1MTFlNmY2ZTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 Button In-Line Control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef6"), + "name" : "JBL E55BT Wireless Headphone, Blue", + "description" : "JBL E55BT Wireless Headphone, Blue", + "price" : "102", + "sku" : "JBL-E55BT-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE55BTBLU-Headphones-Headsets-491377980-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzY2OXxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaGI2Lzg4ODk4NjIwNjIxMTAuanBnfDBlM2ZlZGZkYWEzYTk0YzU2YjBkMjdkZWQ5ZDExZWNlMjA0OThhOTFlNTAyNWU0MmVkOWQ5MjY2YmRlYzY1N2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef7"), + "name" : "JBL E15 Wired Earphone, Red", + "description" : "JBL E15 Wired Earphone, Red", + "price" : "29", + "sku" : "JBL-E15-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE15RED-Headphones-Headsets-491377954-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTQwNXxpbWFnZS9qcGVnfGltYWdlcy9oZDAvaDMzLzg4ODk4NDYzMzM0NzAuanBnfDRiYzhhNTY3MzA1ODJkMGE2NmFiNDg5MGI0ZjhmNzU2NWJmYTIzYTk5NDMwZTNjYTZmMGNjYzFmMTY1ZjBhY2E", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E15" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear Tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef8"), + "name" : "JBL E65BTNC Wireless Headphone, Blue", + "description" : "JBL E65BTNC Wireless Headphone, Blue", + "price" : "145", + "sku" : "JBL-E65BTNC-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE65BTNCBLU-Headphones-and-Headstes-491377984-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTEwN3xpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDY2Lzg5MDQyMzQwNzQxNDIuanBnfDlhZjE2NTRmZTdlZGI4ZWYzNzE0NTgzMTJmZTRhNTQ1Y2JlMWZlYzhhMmM0NzAwMTAzMjk5NDhlNmI3YzViNmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "24 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLE65BTNCBLU" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Fabric" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "258" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ef9"), + "name" : "Audio Technica ATH-CKR30iS Wired Earphone, Blue", + "description" : "Audio Technica ATH-CKR30iS Wired Earphone, Blue", + "price" : "56", + "sku" : "Audio-Technica-ATH-CKR30iS-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Audio-Technica-ATH-CKR30IS-Headphones-and-Headstes-491378345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjk3NXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDk4Lzg5MTMwMjA0ODU2NjIuanBnfGNhYmE4OWJhZDMxMzA1MzFiMmMwYzJmZDIzZTdjNmQxNjE5MjMxMmViZDk2ZTdkZmQyYmM1MmU4YmYyMDJhOGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "ATH-CKR30iS" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Audio Technica" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Cable with smartphone controller and mic (1.2 m)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Audio", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efa"), + "name" : "JBL T290 Wired Earphone, Rose Gold", + "description" : "JBL T290 Wired Earphone, Rose Gold", + "price" : "27", + "sku" : "JBL-T290-Wired-Earphone,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T290-Headphones-and-Headstes-491377950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQzNnxpbWFnZS9qcGVnfGltYWdlcy9oYTcvaDRkLzg5NDY4NzE2MzE5MDIuanBnfGVjMzg2MzdjZWI0MGZmZDgzOWUxYmNiNDhhNzAzMjhiNjY5OGU4MmI3MThjN2NiM2VmYjcxMTRhMWYzMmMzNDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efb"), + "name" : "Samsung U-Flex EO-BG950CWEGIN Wireless Earphone, White", + "description" : "Samsung U-Flex EO-BG950CWEGIN Wireless Earphone, White", + "price" : "73", + "sku" : "Samsung-U-Flex-EO-BG950CWEGIN-Wireless-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EO-BG950CWEGIN-Headphones-and-Headstes-491362830-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzgyNHxpbWFnZS9qcGVnfGltYWdlcy9oMTEvaDk3Lzg5NDY5NDM3MjE1MDIuanBnfDJkZTg4MDgzOGU0MThhNjBjMjMyZmI0NzBjMzVkYmJjZDQxZmIxYjI2NDBlYmExNzg5ZTI1NDQzNDEwNWZiY2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "U-Flex" + }, + { + "attributeName" : "Model", + "attributeValue" : "EO-BG950CWEGIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efc"), + "name" : "Skullcandy Jib S2DUW-K012 Wireless Earphone, Blue", + "description" : "Skullcandy Jib S2DUW-K012 Wireless Earphone, Blue", + "price" : "44", + "sku" : "Skullcandy-Jib-S2DUW-K012-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUW-K012-Headphones-and-Headstes-491350397-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI2MnxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaDQxLzg5NDY5MzAwOTAwMTQuanBnfDZmMzAzMmRiYzdmZjMyYjVhZjNlZTZiMzk4ZmQ5MjY0MmVmODljNDQ4ODUwMGMxN2MyMDkyZmUxYjc0MDBiOGU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUW-K012" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efd"), + "name" : "Skullcandy Method S2CDW-J477 Wireless Earphone, Blue", + "description" : "Skullcandy Method S2CDW-J477 Wireless Earphone, Blue", + "price" : "80", + "sku" : "Skullcandy-Method-S2CDW-J477-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2CDW-J477-Headphones-and-Headstes-491336154-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTAxMnxpbWFnZS9qcGVnfGltYWdlcy9oNjUvaDc3Lzg5NDY5Mjg3MTM3NTguanBnfDgxMDhiYmZhZWNkNGI0MGE4Nzk4YTBkZWM4OWU4ZjFiYTZkMmMyMmQwMTYyOTM0N2I0OWY5NmMzYWRiZDg3NGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDW-J477" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637efe"), + "name" : "Skullcandy STIM Wired Earphone, White", + "description" : "Skullcandy STIM Wired Earphone, White", + "price" : "29", + "sku" : "Skullcandy-STIM-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-STIM-Headphones-and-Headstes-491336158-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxNXxpbWFnZS9qcGVnfGltYWdlcy9oN2QvaDc5Lzg5NDY5MjY3NDc2NzguanBnfDVlY2E3NTkyMzZiMjQ0OTdhNjUxY2ZkNTc3YTUxYzU3ZDA0Nzc3M2E4NGM3MjVlODQ5YzVlNjRhZmY4Y2ZlNWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "STIM" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637eff"), + "name" : "JBL Inspire 300 Wired Earphone, Black", + "description" : "JBL Inspire 300 Wired Earphone, Black", + "price" : "27", + "sku" : "JBL-Inspire-300-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Inspire-300-Headphones-and-Headstes-491377956-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjA5NnxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDFkLzg5NDY4Njk2NjU4MjIuanBnfDViOTgyOWRlMjZiNGIyMDlkODkzNzE4NWZlZjgyYjBjMjVmMjkyY2Y0MmExNjYzMmY4OTU2ZWMwZDg5M2U4ZTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Inspire 300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Sport carry pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f00"), + "name" : "JBL Reflect Mini Wired Earphone, Teal", + "description" : "JBL Reflect Mini Wired Earphone, Teal", + "price" : "51", + "sku" : "JBL-Reflect-Mini-Wired-Earphone,-Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-Headphones-and-Headstes-491377962-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzQ0NXxpbWFnZS9qcGVnfGltYWdlcy9oMTIvaGQ4Lzg5NDY4NjA5NDk1MzQuanBnfDA3MWI3OWIzZDFhOWM2ZTA0ZDQ3MGIxMTc1YWUzOGU4NjE2ODg1ZDg2NzBiZGMwMTkyZTVhYTgwOGFiY2I4YTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 kHz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ergonomic sport ear-tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f01"), + "name" : "JBL Reflect Mini Wired Earphone, Red", + "description" : "JBL Reflect Mini Wired Earphone, Red", + "price" : "51", + "sku" : "JBL-Reflect-Mini-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-Headphones-and-Headstes-491377961-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzMwNnxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGJkLzg5NDY4NTU1NzU1ODIuanBnfGNmNjZjZjRkMDBhYWFjZjUzOTcwMzZmY2I2ZmIzYmNlMzRmYWVlZGNiY2ViODA5Njk3YmRjZmQxYTkyNWZhMzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 kHz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ergonomic sport ear-tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f02"), + "name" : "Skullcandy Jib S2DUYK-630 Wired Earphone, Pink", + "description" : "Skullcandy Jib S2DUYK-630 Wired Earphone, Pink", + "price" : "15", + "sku" : "Skullcandy-Jib-S2DUYK-630-Wired-Earphone,-Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-630-Headphones-and-Headstes-491362790-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjUwMXxpbWFnZS9qcGVnfGltYWdlcy9oNWIvaDgyLzg5NDY5MjgzODYwNzguanBnfDBiNjMyNTdmOWY0ZDIxZjgwNTQ3NTEwZWQ0ZDY1NzUxZWRlODM1MTQ0MTE1NzI4OWVmZWM4ODM4ZmQzYjgxZWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-630" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f03"), + "name" : "Skullcandy Jib S2DUYK-629 Wired Earphone, Purple", + "description" : "Skullcandy Jib S2DUYK-629 Wired Earphone, Purple", + "price" : "15", + "sku" : "Skullcandy-Jib-S2DUYK-629-Wired-Earphone,-Purple", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-629-Headphones-and-Headstes-491362789-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzAzM3xpbWFnZS9qcGVnfGltYWdlcy9oMjEvaGM1Lzg5NDY5MTg4ODMzNTguanBnfDFhYWI2Mjg2NmE4NzA3M2ViZWM1NTViM2Y0MDllYTJlNmU5NWI2N2Q3OWYxY2YzOGNkNTU4ZDBmMDY0M2MxMjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-629" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Purple" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f04"), + "name" : "Skullcandy Method S2IKW-K610 Wireless Earphone, Grey", + "description" : "Skullcandy Method S2IKW-K610 Wireless Earphone, Grey", + "price" : "58", + "sku" : "Skullcandy-Method-S2IKW-K610-Wireless-Earphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2IKW-K610-Headphones-and-Headstes-491336157-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTYxOXxpbWFnZS9qcGVnfGltYWdlcy9oOTIvaDg0Lzg5NDY5NDExMDAwNjIuanBnfDAxZmQ5ZWI0MjFmMzUzNjJiMTc2ZjFhYmYzZTIxZjc0ZTNhZGI0YmUyYTY5YTYyYmViZmFjZGRkNTI4Yzk3ZDQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2IKW-K610" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f05"), + "name" : "Skullcandy Method S2CDW-J523 Wireless Earphone, Black", + "description" : "Skullcandy Method S2CDW-J523 Wireless Earphone, Black", + "price" : "80", + "sku" : "Skullcandy-Method-S2CDW-J523-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2CDW-J523-Headphones-and-Headstes-491336155-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTEwNXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDQ1Lzg5NDY5Mzk0NjE2NjIuanBnfGNiYjBiYTdjN2ZhNDYyMGY5N2JhMzBhOGY3OTA4NzkzYmE1MDBjZDQ1ZDg1ZjEyOWY4YTEwMmQwMzAzMDczZTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDW-J523" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f06"), + "name" : "Skullcandy Jib S2DUYK-441 Wired Earphone, White", + "description" : "Skullcandy Jib S2DUYK-441 Wired Earphone, White", + "price" : "15", + "sku" : "Skullcandy-Jib-S2DUYK-441-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-441-Headphones-and-Headstes-491362787-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTk4MnxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGE1Lzg5NDY5Mzg0Nzg2MjIuanBnfDA1NGU3Mjg3MDQzMjIyNzk0MDI4ZDFjYjhhNGU5ZTk3MTQzYjIxZDJhYmVlMmZkMGFhMWRmMDA3MDJmMWQzNzU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-441" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f07"), + "name" : "Sennheiser Momentum M2IEBT Wireless Earphone, Black", + "description" : "Sennheiser Momentum M2IEBT Wireless Earphone, Black", + "price" : "218", + "sku" : "Sennheiser-Momentum-M2IEBT-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-M2IEBT-Headphones-and-Headstes-491336175-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDg3MnxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaDQ0Lzg5NDY3OTQyMzM4ODYuanBnfDU4NDMzMWY2YzJmMWI5ZDcxODAwYzU3MTk2NmI4YzJlODFkMWI0YTgyMjE3MmRjZTVjMTcyOTQxNmVkMzJlZjQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Momentum" + }, + { + "attributeName" : "Model", + "attributeValue" : "M2IEBT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Leather neckband
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15 - 22000 Hz" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f08"), + "name" : "Sony MDR-XB550AP Wired Headphone, Grayish White", + "description" : "Sony MDR-XB550AP Wired Headphone, Grayish White", + "price" : "44", + "sku" : "Sony-MDR-XB550AP-Wired-Headphone,-Grayish-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Headphones-Headsets-491320707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODU4OHxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaGViLzg5MjEwODYwOTk0ODYuanBnfDY4ZTQ4OWE4YzIxMzQxMmMxNGQwY2E3ZDViNzBkYjcyMDJiYWUzNjg3Yjg2Y2IwZDExMjQ4YjUyNjQyZGI5ZDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "180" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grayish White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f09"), + "name" : "Philips ActionFit SHQ4300OR/00 Sports Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ4300OR/00 Sports Wired Headphone, Orange", + "price" : "22", + "sku" : "Philips-ActionFit-SHQ4300OR-00-Sports-Wired-Headphone,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ4300OR-00-Sports-Wired-Headphone-Orange-491183214-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTA5N3xpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDI3Lzg5Mjc4ODU2NTYwOTQuanBnfGIwODc2MjE1NDhhYjU2NDM3ODJmNTFhNzQzZDEwM2RhMGIwYzE3OGVlYTY1N2RmYjVhOGU3N2EzNjA3NDkxMTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ4300OR/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Weight", + "attributeValue" : "29.9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Connector : 3.5 mm
  • Finishing of connector : gold-plated
  • Magnet type : Neodymium
  • Speaker diameter : 8.6 mm
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0a"), + "name" : "Sennheiser CX 6.00 BT Wireless Earphone, Black", + "description" : "Sennheiser CX 6.00 BT Wireless Earphone, Black", + "price" : "109", + "sku" : "Sennheiser-CX-6.00-BT-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-6-00-BT-Headphones-and-Headsets-491378224-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzcyNHxpbWFnZS9qcGVnfGltYWdlcy9oYzMvaGJiLzg5MzY4NDgzOTIyMjIuanBnfDVlZTBiMmY0ODQwNmYwMDE0YzMyYzM3MzQ4NzNiNGI1MDZlNjIyMmQwMzc2ZDExYjQ5MTRkYzMxNmI0M2I1OGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 6.00 BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "17-21" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0b"), + "name" : "Philips SHL3070BK Wired Headphone, Black", + "description" : "Philips SHL3070BK Wired Headphone, Black", + "price" : "22", + "sku" : "Philips-SHL3070BK-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3070BK-Headphones-Headsets-491362704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjg1NHxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDFiLzg4Nzk2OTUzNjQxMjYuanBnfGU3OGZjMjVjOTg1ZTU1ZWYzZTA2M2RjYjMzOGM3MDA2MDYzNWI2YzQ2OTYxMjNkNzFiODMyNWRlMTQ1NDQxNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3070BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0c"), + "name" : "JBL LIVE 200BT Wireless Earphone, Blue", + "description" : "JBL LIVE 200BT Wireless Earphone, Blue", + "price" : "77", + "sku" : "JBL-LIVE-200BT-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-LIVE-200BT-Headphones-and-Headsets-491430945-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTg2fGltYWdlL2pwZWd8aW1hZ2VzL2gxOS9oMTMvOTA4NTA5NDMzMDM5OC5qcGd8NGQ5NzU2YzgxYzVjNTcxMDQ1ZTBlM2QzMTM5OWZkMDYwYjNmM2VjZGM2YjExNWNiMmQwMjhjNTNmOTA3NWNmNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x Sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "LIVE 200BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0d"), + "name" : "JBL LIVE 200BT Wireless Earphone, Black", + "description" : "JBL LIVE 200BT Wireless Earphone, Black", + "price" : "77", + "sku" : "JBL-LIVE-200BT-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-LIVE-200BT-Headphones-and-Headsets-491430944-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDk0N3xpbWFnZS9qcGVnfGltYWdlcy9oNDIvaGQxLzkwODUwOTY5NTE4MzguanBnfDZiZGEyNmUwNWRjMWE5MjE0NDE4NTczOTQ4M2IwM2NkNTAyMTViZjBjMmQ0NWUwMDRiZjdhOTRmZjc0MDdlZTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x Sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "LIVE 200BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0e"), + "name" : "itek AER VA S450_BK Wireless Headphone, Black", + "description" : "itek AER VA S450_BK Wireless Headphone, Black", + "price" : "37", + "sku" : "itek-AER-VA-S450_BK-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-S450-BK-Headphone-and-Headsets-491431364-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MjAyfGltYWdlL2pwZWd8aW1hZ2VzL2g5MS9oOTUvOTEzMDM1NzY1MzUzNC5qcGd8NTAxYmNiOTk5ZGM2NzNiOWZiMzhkODU5Zjg0MzQ2NWE0NTVhOGQzZWIzOTZkNzljMWQ5YmI5ZTNlZTlkNzE0OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "S450_BK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Optimized for Google Assistant and Siri
  • \n
  • Passive noise cancellation
  • \n
  • HD sound with deep bass
  • " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f0f"), + "name" : "Skullcandy JIB Wireless Earphone, Black/Red", + "description" : "Skullcandy JIB Wireless Earphone, Black/Red", + "price" : "44", + "sku" : "Skullcandy-JIB-Wireless-Earphone,-Black-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUW-K010-Headphones-Headsets-491350396-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODc0MXxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaGQzLzg4Nzk2ODkxMzgyMDYuanBnfDQxZTljNTY0NGM2ZWVjOGUzNjZlZjRjYTZlMzVkNjVjNmIxNGNjODhmMWEwMGE4OGZhNTNmN2QxZmQ1YzNlM2Q", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "6 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "40.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f10"), + "name" : "Sony MDR-XB950B1 Wireless Headphone, Black", + "description" : "Sony MDR-XB950B1 Wireless Headphone, Black", + "price" : "203", + "sku" : "Sony-MDR-XB950B1-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB950B1-Wireless-Headphone-Black-491320709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDMwMHxpbWFnZS9qcGVnfGltYWdlcy9oZjcvaGM0Lzg5Mjc3NDk0NzIyODYuanBnfDYxMmZkMzhhNWU1ZjcwZmY4NGQ2NmY4OGZkNzcyYzQ4NjE0OWU1ODdhZTNlNjczMDQwMDFmMjA3YTlhNzhlY2E", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "18 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB950B1" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headphone cable (approx. 1.2 m" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f11"), + "name" : "Sennheiser HD 4.50 BTNC Wireless Headphone, Black", + "description" : "Sennheiser HD 4.50 BTNC Wireless Headphone, Black", + "price" : "218", + "sku" : "Sennheiser-HD-4.50-BTNC-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.50-BTNC-Wireless-Headphone-Black-491336148-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTEzOXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaGVjLzg5Mjc3NDQzNjA0NzguanBnfGZiMTk5NDdjMmRkZjY1N2NkN2JhZTE4OWFkOThlMzRmNjFiNTBhMGJjNWQ2YjQxNDNiZjcyYzAxNTFlYzc1YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 19 hours (it lasts up to 25 hours with NoiseGard switched off)." + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "HD 4.50 BTNC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 - 10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f12"), + "name" : "Bose SoundSport Wireless Earphone, Black", + "description" : "Bose SoundSport Wireless Earphone, Black", + "price" : "193", + "sku" : "Bose-SoundSport-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Wireless-Earphone-Black-491281271-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTU3MnxpbWFnZS9qcGVnfGltYWdlcy9oZGUvaGRiLzg5Mjc2NTM3MjQxOTAuanBnfGU3MjkzMWRkNTljNGYzZDFiNTlmZjhmNTVjY2NhNzYwMmMxYjM0MjNlYjI4MGNlYWY0NzI5OTM3NWY5Yjg3ODE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of StayHear+ Sport tips
  • USB charging cable
  • Carrying case
  • Quick setup guide
  • Warranty card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.67" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f13"), + "name" : "Bose QuietControl 30 Wireless Earphone, Black", + "description" : "Bose QuietControl 30 Wireless Earphone, Black", + "price" : "392", + "sku" : "Bose-QuietControl-30-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QuietControl-30-Wireless-Earphone-Black-491277322-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzUxMHxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaDhmLzg5Mjc2OTUyNzQwMTQuanBnfDI0NWViM2NhMThiYjI1NmZlZGQ4YmE0ZDBlZmZiNTQxNGEzOWU1ZmMxMjExNDQ0Njk2M2QzNGVmN2FkNzAxOWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carrying case
  • 3 sizes of QC tips: S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "QuietControl" + }, + { + "attributeName" : "Model", + "attributeValue" : "30" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f14"), + "name" : "Sony MDR-100ABN Wireless Headphone, Black", + "description" : "Sony MDR-100ABN Wireless Headphone, Black", + "price" : "319", + "sku" : "Sony-MDR-100ABN-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-100ABN-Wireless-Headphone-Black-491229619-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDA5OXxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDRhLzg5Mjc3ODA3OTg0OTQuanBnfGVjZTMxOGU5MzM0NDQ2ZDExNDQ2MmFkMDBlNGI5NDlhNmRlYTdmNTVmMDVmN2Q4ODIzYzczNTNkYWQzYjE3N2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-100ABN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carring Case
  • Connection Cable
  • USB Cable
  • Warranty Card
  • Operating Instructions
  • Reference Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Gold-plated L-shaped stereo mini
  • Neodymium Magnet
  • NFC One-touch for instant connectivity
  • Digital Noise Cancelling for fewer distractions
  • Clear hands-free calling
  • Listen for longer with up to 20 hours of battery life
  • " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "290" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f15"), + "name" : "Bose SoundSport Wireless Earphone, Aqua", + "description" : "Bose SoundSport Wireless Earphone, Aqua", + "price" : "193", + "sku" : "Bose-SoundSport-Wireless-Earphone,-Aqua", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Wireless-Earphone-Aqua-491281270-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjI4MnxpbWFnZS9qcGVnfGltYWdlcy9oZGMvaDI2Lzg4NzcxOTgxMTQ4NDYuanBnfGM1NmIyYzU3MTFjZTBjZDgwOTA2MDMzNDllNDgwOWIwYzNmZTIyMzU3OWZmMjE2NzhjMTUzNDA0NzBjMjgzZTg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of StayHear + Sport tips
  • USB charging cable
  • Carrying case
  • Quick setup guide
  • Warranty Card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 hours per full charge" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aqua" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f16"), + "name" : "Sennheiser CX 7.00BT Wireless Earphone, Black", + "description" : "Sennheiser CX 7.00BT Wireless Earphone, Black", + "price" : "218", + "sku" : "Sennheiser-CX-7.00BT-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-7-00BT-Headphones-Headsets-491363109-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTQwNHxpbWFnZS9qcGVnfGltYWdlcy9oZDEvaDA2Lzg4Nzk3MTMyNTU0NTQuanBnfDg3YjdkODE3MmYwMWIzYzg1ZTMyYzA3ZjA1ZTFhZjczZDk1Yjk0ODRmMWRiNDYwZGFjNjE5OThkM2M5NGRkMmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "10 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 7.00BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "17-21000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f17"), + "name" : "Bose BT QC35 II Wireless Headphone, Silver", + "description" : "Bose BT QC35 II Wireless Headphone, Silver", + "price" : "426", + "sku" : "Bose-BT-QC35-II-Wireless-Headphone,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QC35-II-Headphones-and-Headstes-491363146-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTUyMXxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDNlLzg5MDQyMjczMjM5MzQuanBnfDlhMjhmZTRkYTQyYTVhMmI4N2FlZDA1ZTkwMzBjNTliYzk4MDIzZWZiYmUyNGEyNzk5NTZhYWRkYjY0MWExNDc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "QC35 II" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Corrossion resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "17 cms (W) x 8.1 cms (D) x 18 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f18"), + "name" : "Bose BT QC35 II Wireless Headphone, Black", + "description" : "Bose BT QC35 II Wireless Headphone, Black", + "price" : "426", + "sku" : "Bose-BT-QC35-II-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QC35-II-Headphones-and-Headstes-491363145-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjM2MnxpbWFnZS9qcGVnfGltYWdlcy9oNDcvaDhlLzg5MDQyMjc2NTE2MTQuanBnfDUxNzc5NWQwMzk1NmU3MDBhOTAxZTYwMmQ4MzY5NmRiOGUxMTMxNjk3NGI0YmI1YjU0YzA1M2U4OTE4OWQ0NGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "QC35 II" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Corrossion resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "17 cms (W) x 8.1 cms (D) x 18 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f19"), + "name" : "Bose SoundSport Free Wired Earphone, Blue", + "description" : "Bose SoundSport Free Wired Earphone, Blue", + "price" : "276", + "sku" : "Bose-SoundSport-Free-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Free-Headphones-and-Headstes-491378155-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjA5OXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDBiLzg5NDY5MzE5MjUwMjIuanBnfGVjNDBjNzZhZTQ5YWEzMmQ3YmQ4N2U2YzI0MjQ2NWM2NTI3NGU3YWYwYmM5NWEzOGQxY2QyNzJiOGVmYzgyNDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport Free" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "2.5 cms (W) x 3.12 cms (H) x 3 cms (D)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "5 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Portable charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1a"), + "name" : "Motorola Pulse Escape SH012 Wireless Headphone, Black", + "description" : "Motorola Pulse Escape SH012 Wireless Headphone, Black", + "price" : "58", + "sku" : "Motorola-Pulse-Escape-SH012-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Motorola-SH012-Headphone-and-Headsets-491378373-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDExN3xpbWFnZS9qcGVnfGltYWdlcy9oODMvaGU1Lzg5Nzk3MDc0NjE2NjIuanBnfGQ4MWExZDU5ZGNhMmJkNGFlMzE3MjAzYjhhYTFmZWM5OWYyODMwMGQ4OTg1MzA2N2RkNDAzNjBjMWYyNzBhOWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SH012" + }, + { + "attributeName" : "Series", + "attributeValue" : "Pulse Escape" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Motorola" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "227" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "10" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Motorola", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1b"), + "name" : "Skullcandy JIB Wireless Earphone, Black", + "description" : "Skullcandy JIB Wireless Earphone, Black", + "price" : "44", + "sku" : "Skullcandy-JIB-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wireless-Earphone-Black-491350395-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjU4OXxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaGM0Lzg5Mjc2NDM4OTM3OTAuanBnfDVkZmVhYzY4M2Q2NDg1MTc0ZmJkMzM5NmZhOTEyYWNmNDk2NTQ2OTU1ZWY1NzQwOGQwYTVkMjg2MjRkZGE3ZGM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 6 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1c"), + "name" : "Philips SHE4305BK/27 Wired Earphone, Black", + "description" : "Philips SHE4305BK/27 Wired Earphone, Black", + "price" : "19", + "sku" : "Philips-SHE4305BK-27-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE4305BK-Headphones-Headsets-491362700-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDA0NHxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDc3Lzg4Nzk2ODc0OTk4MDYuanBnfDIzMjE4ZTQ5Zjk4N2FkM2E4NTM1NmQ5ZWEwN2NmZTRhZjExNjQ2NGY0NjI0NjkzZjlhYjcxNzlkOGVjOGMxZTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE4305BK/27" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 23 000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "8 (H) x 3 (W) x 2.8 (D) cms" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1d"), + "name" : "Sennheiser HD 206 Wired Headphone, Black & Silver", + "description" : "Sennheiser HD 206 Wired Headphone, Black & Silver", + "price" : "22", + "sku" : "Sennheiser-HD-206-Wired-Headphone,-Black-&-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-206-Headphones-and-Headsets-491378223-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDY5MHxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaDFjLzg5MjIzMzIxMDI2ODYuanBnfDBiMzc1NzUyZTg2ZDJhZGJhNTliNTE2YWY0MjAwMzU4NTE0MDkxYTg5NTRiZGJlYzZiZmU1M2RiNjAyOGM3ZTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 206" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "21-18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "<0.7" + }, + { + "attributeName" : "Weight", + "attributeValue" : "215" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black & Silver" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High-Quality Leatherette Ear Pads
  • \n
  • Gold-Plated 1/4\" (6.3 mm) Jack Adaptor
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1/4\" (6.3 mm) stereo jack adaptor" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1e"), + "name" : "JBL TUNE600BTNC Wireless Headphone, Black", + "description" : "JBL TUNE600BTNC Wireless Headphone, Black", + "price" : "102", + "sku" : "JBL-TUNE600BTNC-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T600BTNC-Headphone-and-Headsets-491430950-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM5NnxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaGFjLzkwODMwNDA1NjMyMzAuanBnfDhiNDVlYzRmNzM0ZjU3NmIwNDY4NmY1MzVkOGUxYzg5NjBjMzgyOWY5MTQwNDZhMzUxY2U1MDUyMjllMDc1MjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "22 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE600BTNC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • JBL Pure Bass Sound
  • Active Noise Cancelling
  • 12h Battery Life With BT+NC On
  • Hands-free Calls
  • Maximum music play time with ANC off: 22.0 Hours
  • Maximum music play time with ANC on: 12.0 Hours
  • " + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "173" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f1f"), + "name" : "Skullcandy Jib S2DUYK-628 Wired Earphone, Blue", + "description" : "Skullcandy Jib S2DUYK-628 Wired Earphone, Blue", + "price" : "15", + "sku" : "Skullcandy-Jib-S2DUYK-628-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-628-Headphones-and-Headstes-491362788-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODI2OHxpbWFnZS9qcGVnfGltYWdlcy9oYTAvaDk0Lzg5NDY5MzkxMzM5ODIuanBnfDBlNDIyY2FiY2U1YzBhNTMwYTVkMjBiZTc3N2RiYjhkZDZjYTgzNzNlYjE5YzU1NjI5NmQ5OTlhNjU2YjQxN2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Jib" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2DUYK-628" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f20"), + "name" : "Apple MV7N2HN/A Wireless Airpods with Charging Case, White", + "description" : "Apple MV7N2HN/A Wireless Airpods with Charging Case, White", + "price" : "216", + "sku" : "Apple-MV7N2HN-A-Wireless-Airpods-with-Charging-Case,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Airpods-BTStereo-CC-491431363-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTExOHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDQ4LzkxMjg1Mzk1MjEwNTQuanBnfGE1NWQzMjYzY2E3OTBkNjA5YzE5YjhhMGJlMmQ4OTQxY2I3NDBmMmM3NzE3NTkwNTI3NmNkNGU4NDIwYWYwMjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Up To 24 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MV7N2HN/A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f21"), + "name" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Red", + "description" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Red", + "price" : "77", + "sku" : "Skullcandy-Smokin-Buds-2-Wireless-Earphone,-Black-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds-2-Wireless-Earphone-Black-Red-491315295-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDAxMnxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDIyLzg5Mjc3NjczNjM2MTQuanBnfDY1ZWRlNDg0Y2JjNTg2YWU5NmI1N2U1ZGU1OGEwY2YzMjAyZWJjYTE3ZTgwNGE2NjI5ZDJhZjE4NGJkMDUxYjg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Customizable fit with lightweight and fully removable collar
  • Call" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f22"), + "name" : "itek BTHP005 Wireless Headphone, Black", + "description" : "itek BTHP005 Wireless Headphone, Black", + "price" : "37", + "sku" : "itek-BTHP005-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Itek-Headphones-491362659-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQ5NHxpbWFnZS9qcGVnfGltYWdlcy9oMDMvaDJlLzkwMDU2Mjc3MzYwOTQuanBnfDgzY2JmZmY1ZTZhNzIwYzQ5Yjk2MWY1MTNjMGZiNzNmNDBmMjQzYWM0YzNkNDgyYzY1OTNmODU5ZDVlOTczNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "BTHP005" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Micro SD card slot
  • \n
  • FM radio
  • \n
  • Auxiliary Input
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f23"), + "name" : "Philips SHL3075BL/27 Wired Headphone, Blue", + "description" : "Philips SHL3075BL/27 Wired Headphone, Blue", + "price" : "26", + "sku" : "Philips-SHL3075BL-27-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075BL-Headphones-Headsets-491362707-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIwNnxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaDU4Lzg4Nzk2OTU3NTczNDIuanBnfGZmYWI0MmQ1YWFjY2Y4OTFkNjRlNDliOWJhOWRkNTliYTBhZWIzNmNhY2MxMzc3ZWU2NTA1ZmE4MzdlYjg1ZjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075BL/27" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 23 000  Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f24"), + "name" : "Skullcandy Ink'd Wireless Earphone, Navy", + "description" : "Skullcandy Ink'd Wireless Earphone, Navy", + "price" : "58", + "sku" : "Skullcandy-Ink'd-Wireless-Earphone,-Navy", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Ink-d-Wireless-Earphone-Navy-491315286-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTUzM3xpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGY0Lzg5Mjc3MDkzNjQyNTQuanBnfDFkOTMwNGUwZmU3N2UzNGYyMTVlZWVlZDY3MGY4MTk0MGJlZDVmMWRkY2VkMTVkM2VhZjUxYTk1ZTNmNjliNGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Ink'd" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight and low-profile around-the-neck collar
  • Bluetooth wireless with 8-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Navy" + }, + { + "attributeName" : "Weight", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f25"), + "name" : "JBL E55BT Wireless Headphone, Black", + "description" : "JBL E55BT Wireless Headphone, Black", + "price" : "102", + "sku" : "JBL-E55BT-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE55BTBLK-Headphones-Headsets-491377979-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzcwNXxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaGNiLzg4ODk4NjUzMzg5MTAuanBnfGQ4ODU3OTk4ZTVkNDJiMTQ2ZjhjMmJlZWRjMzViYTA2YjBiOTIwODI1OTY5MGQwZWJjY2I4M2JkMmZmYTQxYzU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "E55BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f26"), + "name" : "JBL T210 Wired Earphone, Rose Gold", + "description" : "JBL T210 Wired Earphone, Rose Gold", + "price" : "18", + "sku" : "JBL-T210-Wired-Earphone,-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT210RGD-Headphones-Headsets-491377947-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjYyOXxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDFiLzg4ODk4NDYwMDU3OTAuanBnfGU1M2JjMmU4OTM3ODVhNjUxZTVlODdhMjc5OWFjNGIyNTM3ZTI3MjlhNWU4YTA1MmQzMWFkZGE1MDZiY2FmM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T210" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Rose Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear Tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f27"), + "name" : "Sony MDR-EX155AP Wired Earphone, Light Blue", + "description" : "Sony MDR-EX155AP Wired Earphone, Light Blue", + "price" : "19", + "sku" : "Sony-MDR-EX155AP-Wired-Earphone,-Light-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Headphones-Headsets-491336243-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTU0M3xpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDBhLzg4Nzk2Nzc0MDcyNjIuanBnfDdjZTU0ZTgwODdiZWFjOTg3M2JlNzVjYmUwOWJkYzg2NTVmYTU5MDFjNWJlMGJmNjU0N2QxZjdhMzhlMmUxYTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Light Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f28"), + "name" : "Sony MDR-ZX110/B Wired Headphone, Black", + "description" : "Sony MDR-ZX110/B Wired Headphone, Black", + "price" : "15", + "sku" : "Sony-MDR-ZX110-B-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110-B-Wired-Headphone-Black-491115961-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjkwN3xpbWFnZS9wbmd8aW1hZ2VzL2hhYy9oOWQvODkyNzgzNTMyNDQ0Ni5wbmd8ZGM5ZmRlYTNjOGNjYmJmZDg5Nzc5NDc0YjUwN2YyMGM3MjRkY2M5ZWQ4ODE0ZWIyNmQ3NWQ3NzUzMmFjZTBhYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX110/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "120" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Foldable design
  • Superb style
  • Powerful sound
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f29"), + "name" : "Sony MDR-EX15AP Wired Earphone, Black", + "description" : "Sony MDR-EX15AP Wired Earphone, Black", + "price" : "13", + "sku" : "Sony-MDR-EX15AP-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX15AP-Wired-Earphone-Black-490970605-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3OTI4fGltYWdlL2pwZWd8aW1hZ2VzL2gzNC9oZTYvODg3MTM3MTI3NjMxOC5qcGd8MDEwM2I3YzJlMDcxOTdkYzEyMmUyNjJjMjg3NGVkYTM4NDUxYTVlZGE2Yjc3NDU2NTI0YjU0MWIyZjgxOWFhMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX15AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earbuds - S x2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2a"), + "name" : "Sony WH-CH400 Wireless Headphone, Black", + "description" : "Sony WH-CH400 Wireless Headphone, Black", + "price" : "73", + "sku" : "Sony-WH-CH400-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH400-Headphones-and-Headsets-491378316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjk3M3xpbWFnZS9qcGVnfGltYWdlcy9oYTIvaGY0Lzg5MjIzMzQzOTY0NDYuanBnfGE2NTliZGIzNjMwMGI3ZWVhZjA5NWEyODgwZGFmZWU0NjdmZmY0NjFlNWFjZGY5ZmMzYzZlNmQzYjdiOWZkM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-CH400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "107" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2b"), + "name" : "Sony MDR-EX155AP Wired Earphone, Black", + "description" : "Sony MDR-EX155AP Wired Earphone, Black", + "price" : "19", + "sku" : "Sony-MDR-EX155AP-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX155AP-Headphones-and-Headstes-491336241-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzc2M3xpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDMxLzg5MTMwMTMyNzY3MDIuanBnfDkzYjkyYWQyNThkYjM2MmFjMmQxMTc2MTg3NWVmMDkyYmNmODIyMzUwMjE0MjFkZTE0YTIzYTMxYmYwMzI4MTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX155AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2c"), + "name" : "Sony MDR-XB550AP Wired Headphone, Blue", + "description" : "Sony MDR-XB550AP Wired Headphone, Blue", + "price" : "48", + "sku" : "Sony-MDR-XB550AP-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Wired-Headphone-Blue-491320704-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTExM3xpbWFnZS9qcGVnfGltYWdlcy9oNTQvaDI2Lzg5Mjc2NTExMDI3NTAuanBnfGVjM2MxNTJjOTA0ZjNlMGIxM2Y0YzU2ODFjOWFjMDJiMmU4OTk1YjNiYzMwMzE2NjU1ZjY0OGJlMmI4MmQ2NzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2d"), + "name" : "Sony MDR-XB55AP Wired Earphone, Black", + "description" : "Sony MDR-XB55AP Wired Earphone, Black", + "price" : "37", + "sku" : "Sony-MDR-XB55AP-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB55AP-Headphones-and-Headstes-491336249-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDEzOHxpbWFnZS9qcGVnfGltYWdlcy9oN2EvaGFjLzg5NDY3ODQ3MzExNjYuanBnfDMyOGJjNTIzNTQyMDlhZjFhOWY0MDEzMWRjMmYzNDlkNzllZmRkZjA3NGE4YzVmNDVmMDZiNGQwMmRkN2I1ODk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB55AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 - 24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Carrying Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • L-shaped gold-plated 4-pole mini plug
  • \n
  • Approx. 1.2 m cord length
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2e"), + "name" : "Sony MDR-XB75AP Wired Earphone, Black", + "description" : "Sony MDR-XB75AP Wired Earphone, Black", + "price" : "58", + "sku" : "Sony-MDR-XB75AP-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB75AP-Wired-Earphone-Black-491336252-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NzQ4fGltYWdlL2pwZWd8aW1hZ2VzL2hjOC9oMzUvODkyNzY5MjY1MjU3NC5qcGd8MmYyNjEyMTk4ZGYwNmNjM2E5MDhmOTE0NTJjYTdjMmNhNmE5MjBkYzg4ZjMzZGM4OGUwOGQ4Mjk4OGE2MjVkNg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB75AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "9" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Carrying Pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f2f"), + "name" : "Sony MDR-EX15AP/L Wired Earphone, Blue", + "description" : "Sony MDR-EX15AP/L Wired Earphone, Blue", + "price" : "13", + "sku" : "Sony-MDR-EX15AP-L-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX15AP-L-Wired-Earphone-Blue-491181320-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTg3NnxpbWFnZS9wbmd8aW1hZ2VzL2gzNy9oMDEvODg3NzA1NTMxMTkwMi5wbmd8ZTE0Nzk4OWUwYThlOGYyZGYyYjA2MTY4ZTM5MjY4N2MyOTZlODM1ZWUwNTE4MGQyMDNjMThiNGU0NTViZGQxMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX15AP/L" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid silicone rubber earbuds (Sx2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Four-conductor gold-plated L-shaped stereo mini plug
  • Magnet - Neodymium
  • Power Handling Capacity - 100mW
  • Driver Unit - 9mm
  • Diaphragm - PET
  • Type - Closed" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f30"), + "name" : "JBL T210 Wired Earphone, Black", + "description" : "JBL T210 Wired Earphone, Black", + "price" : "18", + "sku" : "JBL-T210-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T210-Headphones-and-Headstes-491377945-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzMyNHxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaDNlLzg5NDY4ODg1NDAxOTAuanBnfGJkZWUxMDgyOGVkNmYxNzYwNjJmMTBjYWZmMTVkYzE1ZDkzMjk4N2FjMTJhNzE0ZmQyMWFmMjc2YWIyODZjNzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f31"), + "name" : "Sony MDR-XB450AP Wired Headphone, Black", + "description" : "Sony MDR-XB450AP Wired Headphone, Black", + "price" : "37", + "sku" : "Sony-MDR-XB450AP-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB450AP-Wired-Headphone-Black-491182128-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTg0MXxpbWFnZS9wbmd8aW1hZ2VzL2hiYy9oZGUvODkyNzg4MTA2ODU3NC5wbmd8ZmNlNDU2N2MzOGFiNTllYjI2ODUyYzVhYTQ1ZDAzZjdjZWMwNzY3ZGY2NWZlZjA3NzA5NjgzMDMyZGU5Yjc3MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm driver unit
  • Deep" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f32"), + "name" : "Sony MDR ZX110AP Headset, Black", + "description" : "Sony MDR ZX110AP Headset, Black", + "price" : "25", + "sku" : "Sony-MDR-ZX110AP-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110AP-Headset-Black-491072967-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzY5MnxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oOTIvODkyNzYxNDI3MTUxOC5wbmd8NTM4NDE3M2EyOThmOWE5YmFkOGRiMjhlZjdkYTMzODkzMTIzNDI2YWY1MzVjYWNiZTI2M2YyNTdmYjVhZWY3MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "ZX110AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "120" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • In-line microphone for phone calls
  • 9 mm High sensitivity driver
  • Hybrid Silicone Rubber Earbuds
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f33"), + "name" : "Reconnect BTH M-BTV2.1 Wireless Bluetooth Headset, Black", + "description" : "Reconnect BTH M-BTV2.1 Wireless Bluetooth Headset, Black", + "price" : "14", + "sku" : "Reconnect-BTH-M-BTV2.1-Wireless-Bluetooth-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/3e0b9014-6ba2-473b-89ee-be84e55ea3c1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjIxMnxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDFjLzg4MjAyMTcxODQyODYuanBnfGY2YjQyNDFjMjVjNDhiNDQxMDNjY2Y5NjA2YjExZjJjM2E1MTM3Y2Y0Y2IwOTQ4M2VlOTI2ZDhlMGJiNzczOTg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "7" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 4 hours talk time - Convenient for long use
  • Weighs only 7 gm - Convenient for continuous
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "BTH M-BTV2.1" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "48" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f34"), + "name" : "Sony MDR-AS410AP Wired Earphone, Grey", + "description" : "Sony MDR-AS410AP Wired Earphone, Grey", + "price" : "32", + "sku" : "Sony-MDR-AS410AP-Wired-Earphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/7591b401-d555-4c31-ac96-a97d93b6e0d4-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDgzNXxpbWFnZS9qcGVnfGltYWdlcy9oNzIvaDI2Lzg4MDUwMTI0MDYzMDIuanBnfGE3NzIxYTUyODVhN2UxNDVlZGVhYzAyZWVlYjZlYTY1YWY2OTgwY2E3ZmQyOTJmMDU3N2I4NWZmZjU5MjY0YTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS410AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "10" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • Carring Pouch
  • Hybrid earbuds (SS/S/M/L)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm driver unit provides deep bass sound
  • Splash-proof and secure with an over-ear fit
  • Four sizes of silicone earbuds for a good seal and fit
  • L-shaped gold-plated 4-pole mini plug
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f35"), + "name" : "Sony MDR-XB55AP Wired Earphone, Blue", + "description" : "Sony MDR-XB55AP Wired Earphone, Blue", + "price" : "37", + "sku" : "Sony-MDR-XB55AP-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB55AP-Wired-Earphone-Blue-491336250-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5Nzc4fGltYWdlL2pwZWd8aW1hZ2VzL2hjMi9oM2MvODg3NzE4Nzk1Njc2Ni5qcGd8Njk2NDIzNGE0ZjM0MTZlMDdhMmUyZTBjOGM5NzZkMGRmN2NhZTQ5YmE1NDM2MzBlYWM4Nzk0NmU1NTFjMDAzZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB55AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Carrying Pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f36"), + "name" : "JBL T290 Wired Earphone, Black", + "description" : "JBL T290 Wired Earphone, Black", + "price" : "27", + "sku" : "JBL-T290-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT290BLK-Headphones-Headsets-491377948-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTA3N3xpbWFnZS9qcGVnfGltYWdlcy9oM2EvaDE5Lzg4ODk4NTAwMDM0ODYuanBnfDJiNTQwMmJjMjk4ZTg3OTlkYWRiMGQ3M2I5MzkxNzk5YzY4OTZhZjYwMGM5YThkOGNjYWY0MWYwYWY5NDIxMmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T290" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear Tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f37"), + "name" : "JBL T110 Wired Earphone, Red", + "description" : "JBL T110 Wired Earphone, Red", + "price" : "19", + "sku" : "JBL-T110-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT110RED-Headphones-and-Headstes-491377943-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzkyMHxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaGViLzg5MDQyMjQzNzQ4MTQuanBnfGNhNTQ2ZjNkMTMyYTU2OGQwMWM5OGNkMmZkYjI3OTJjODg4ZWE2YjBiNjkwZjY5NTgwZTc3ZWNiNjk0MGNmNzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLT110RED" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "6.1 cms (W) x 4.2 cms (D) x 17.5 cms (H)" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f38"), + "name" : "Sony MDR-EX255AP Wired Earphone, Blue", + "description" : "Sony MDR-EX255AP Wired Earphone, Blue", + "price" : "29", + "sku" : "Sony-MDR-EX255AP-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Headphones-Headsets-491336248-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODM1MXxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaDQxLzg4Nzk2OTIwODczMjYuanBnfDhmNzZkZWZlNWNiMzllNzFmMzVjMjIwNzYwZjdiNzI4MWFhMWY4OTBkNjhmODBhNjY4OGJiMzAwNjFlYTRhOGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-25000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Hybrid earpiece SS/S/M/L Cable adjuster" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f39"), + "name" : "JBL E15 Wired Earphone, Black", + "description" : "JBL E15 Wired Earphone, Black", + "price" : "29", + "sku" : "JBL-E15-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E15-Headphones-and-Headstes-491377952-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzEyOXxpbWFnZS9qcGVnfGltYWdlcy9oNGQvaGMyLzg5NDY4ODA2NzU4NzAuanBnfGZlOTg5M2VjYmU0OWM1OWRlYzg5NjgwNTBmM2JhYjQ0NDQ2MTE2YTBkNWVlMzFlN2JkZjg2Mzg0MjY2MGE1ZDA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E15" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3a"), + "name" : "Sony MDR-XB550AP Wired Headphone, Black", + "description" : "Sony MDR-XB550AP Wired Headphone, Black", + "price" : "48", + "sku" : "Sony-MDR-XB550AP-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Wired-Headphone-Black-491320675-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDkzNnxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaGRjLzg5NDczODAzMjIzMzQuanBnfGUxNzJmYTY5NDZhNzkyZjM2NGJkN2ZjZjQwMmI3YmIwZWI4ZGEzZjJmNjZmZGZjMWMzOWJmZGI4OWM2YjUwNTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3b"), + "name" : "Sony MDR-EX255AP Wired Earphone, Black", + "description" : "Sony MDR-EX255AP Wired Earphone, Black", + "price" : "29", + "sku" : "Sony-MDR-EX255AP-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX255AP-Wired-Earphone-Black-491336245-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTI4fGltYWdlL2pwZWd8aW1hZ2VzL2gxYS9oNGIvODg3NzExOTg2NDg2Mi5qcGd8NzYyMzNmYTVlYmFiZjdjYmRiMDdmMGNiNmU4ZDMxNDk4MmZhMjJlYTRhMDM3YWEwZDhjZmM0MWE0MThlNzZiMw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX255AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid earpiece SS/S/M/L Cable adjuster
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3c"), + "name" : "Bose SoundSport Free Wired Earphone, Black", + "description" : "Bose SoundSport Free Wired Earphone, Black", + "price" : "276", + "sku" : "Bose-SoundSport-Free-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundSport-Free-Headphones-and-Headstes-491378154-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjU2OHxpbWFnZS9qcGVnfGltYWdlcy9oMzIvaDNiLzg5NDY5MTU5MzQyMzguanBnfGZhOTBmZGIyYzkzY2Q1YzEwNDNjMWI1NDVlOGZlZjRlNjgyZTRkZDZlODhlYTEyNDg3MTMxMGVjMTIzZjUzYmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SoundSport Free" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "2.5 cms (W) x 3.12 cms (H) x 3 cms (D)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "5 hours" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Portable charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3d"), + "name" : "Jabra Talk 15 Wireless Earphone, Black", + "description" : "Jabra Talk 15 Wireless Earphone, Black", + "price" : "28", + "sku" : "Jabra-Talk-15-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-TALK-15-Headphone-and-Headsets-491503497-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzE4MHxpbWFnZS9qcGVnfGltYWdlcy9oZDgvaDFmLzkwODc3MjUzMDU4ODYuanBnfGI4NDE0NjAyYTQ4ZGQwZWJiMmFlZGI1ZmQ3ODNhNTlmNzBhZjQ0MGQ1ZjY3NDRiYTRiZTAyMDA5ZmU1NDIzYzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8.9" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "53.5 x 16.6 x 24.2 mm" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Silicon Rubber" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "108" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "11" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 8 kHz" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Talk 15" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v3.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 eargels (one premounted standard eargel)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "6" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3e"), + "name" : "Jabra Talk 5 Wireless Earphone, Black", + "description" : "Jabra Talk 5 Wireless Earphone, Black", + "price" : "18", + "sku" : "Jabra-Talk-5-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-TALK-5-Headphone-and-Headsets-491503496-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTk2NHxpbWFnZS9qcGVnfGltYWdlcy9oZjEvaDdiLzkwODc3MTkwNzk5NjYuanBnfDZiNjYwNDE1OGFkZjQyOTg1ODA4MmJjYTk4MTdjMWIzOTMwZmRlNzdiYmQ3NzNjZjJlNzU5YmYzNzI0N2ZkYjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "9.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "54.3 x 16.3 x 25.5 mm" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Silicon Rubber" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 8 kHz" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Talk 5" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v2.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Eargel premounted" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f3f"), + "name" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Red", + "description" : "Reconnect ProBuds2 BT-535 Wireless Earphone, Red", + "price" : "29", + "sku" : "Reconnect-ProBuds2-BT-535-Wireless-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-ProBuds2-BT-535-Wireless-Earphone-Red-491362737-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDU5OXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDlhLzg5MDMwNjk3OTQzMzQuanBnfDZmNjYzZGYzNTA2YWJlMjI4NWExNmIwNjRlZTBmZWE3ZjQ3NzEwMjBlMmNjZDc4MTRhMzM4OTdjMTUxYjQ1NjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging Cable
  • User Manual
  • Warranty Card
  • Carry Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "ProBuds2" + }, + { + "attributeName" : "Model", + "attributeValue" : "BT-535" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f40"), + "name" : "Samsung Level U Wireless Headphone, Blue/Black", + "description" : "Samsung Level U Wireless Headphone, Blue/Black", + "price" : "44", + "sku" : "Samsung-Level-U-Wireless-Headphone,-Blue-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-Level-U-Wireless-Headphone-Blue-Black-491229556-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDg0NnxpbWFnZS9qcGVnfGltYWdlcy9oMTAvaDdiLzg5Mjc3MjI0NzE0NTQuanBnfDdmMDA2ZWQ2YTUxNjc4MTlmMzM3NDk0NmU1NDlmZTYxYTUxMmJkNWE4ZTFmY2I4ZTM4YmFkNWU4MWYwYjE4NGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 2 sets standard ear gels
  • 1 set stabilizing ear gels
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "Level U" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk time - 11 Hours
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f41"), + "name" : "Apple Wireless Airpods, White", + "description" : "Apple Wireless Airpods, White", + "price" : "187", + "sku" : "Apple-Wireless-Airpods,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Wireless-Airpods-White-491296886-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTcwOHxpbWFnZS9qcGVnfGltYWdlcy9oMTcvaGYxLzg5NjQwMzUyODA5MjYuanBnfDNlZmFmMTE4OWMxZTAwYTIyOGZhOTc2ZGQ0YzdhNTQ1NzBiZTc1NjIyODc4NzFmNjEzY2FjZDEwZThkZWFjOGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Charging Case
  • Lightning to USB Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Designed by Apple
  • Automatically on" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f42"), + "name" : "JBL E15 Wired Earphone, Blue", + "description" : "JBL E15 Wired Earphone, Blue", + "price" : "29", + "sku" : "JBL-E15-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E15-Headphones-and-Headstes-491377953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTE2NHxpbWFnZS9qcGVnfGltYWdlcy9oYzEvaDAyLzg5NDY4ODQ5MzU3MTAuanBnfDVhMzMyN2Q1YTg1ZDQ3MzU3NWU5YjcyMGQxYjMxYzBiNDQ5NDRmZGE0YWJhNGY2ZmNlZTQwOGM5NjZmYjlhZjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E15" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f43"), + "name" : "Philips ActionFit SHQ1200/10 Wired Headphone, Orange/Grey", + "description" : "Philips ActionFit SHQ1200/10 Wired Headphone, Orange/Grey", + "price" : "11", + "sku" : "Philips-ActionFit-SHQ1200-10-Wired-Headphone,-Orange-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/e3b7b12f-52b2-41eb-9c34-f0386289a4c7-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjYwNXxpbWFnZS9wbmd8aW1hZ2VzL2gxOS9oZGYvODgwMjg5NzU1OTU4Mi5wbmd8MmJhNzAxZWM3NWM0MzcwY2I3NDE1OWEzNmNjYmRjODY0YTkzZDM2M2U3ZGY3YmIwN2E5NDhkYTRmZGFiMjZhMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1200/10" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange/Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable clip
  • " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3 choices of ear cap sizes for optimal fit
  • 13.6mm drivers deliver powerful sound
  • Reflective stopper in the cable
  • Closed Acoustic system
  • Cable Connection - two-parallel" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f44"), + "name" : "JBL T110 Wired Earphone, Blue", + "description" : "JBL T110 Wired Earphone, Blue", + "price" : "19", + "sku" : "JBL-T110-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphones-and-Headstes-491377942-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTExOXxpbWFnZS9qcGVnfGltYWdlcy9oMTYvaDk0Lzg5NDY4NTA5ODgwNjIuanBnfDY1ZDFkY2FiZTlmMTY3MzUyZjg3Mjc5MTA4ZGY0ZDJhMzk0OWZmZTEwNWJiMmI5ZjhiMTY4ZjMzYWFjZmZjNTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f45"), + "name" : "Sony MDR G45LP Headphone, Black", + "description" : "Sony MDR G45LP Headphone, Black", + "price" : "13", + "sku" : "Sony-MDR-G45LP-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/a85dfb13-6223-42c3-a2b2-97c706f51768-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODIzOHxpbWFnZS9wbmd8aW1hZ2VzL2g2OC9oOTUvODgwMjg5MjI1MTE2Ni5wbmd8MzZiNmQ3ZTZkMDEzNzBjZWFkZmYzODBiNDlhZWMwNzlkNzg2MGQ0ZmI0MmZjYTY0NmVjYmNkZTI4Y2JlZmYxZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "G45LP" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Weight", + "attributeValue" : "55" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver Unit: 30mm
  • Sensitivity: 104dB/mW
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f46"), + "name" : "Samsung Level U Wireless Headphone, Gold", + "description" : "Samsung Level U Wireless Headphone, Gold", + "price" : "44", + "sku" : "Samsung-Level-U-Wireless-Headphone,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/a7f333fb-379c-40ef-94aa-4316dbaa1763-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzE4OXxpbWFnZS9qcGVnfGltYWdlcy9oNDYvaDFhLzg4MDY0MTY2Nzg5NDIuanBnfGI4YjFiMmQ1MTVmZDEyN2Q0YjZkNGNmMWIzMjcyMTMxNThiMDVkMmQ1YzkyMTdkNWQ3N2UzZmQzMjVhMmQ2NWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 2 sets standard ear gels
  • 1 set stabilizing ear gels
  • Micro USB Charging Cable
  • Rubber Bands
  • User Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "Level U" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk time - 11 Hours
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f47"), + "name" : "Apple Wired EarPods with Lightning Connector,White", + "description" : "Apple Wired EarPods with Lightning Connector,White", + "price" : "37", + "sku" : "Apple-Wired-EarPods-with-Lightning-Connector,White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Wired-EarPods-with-Lightning-Connector-White-491277319-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzUyMnxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaDcwLzg5MzI3MTk3MjI1MjYuanBnfDk3MmQ1OWQyNTk2MjJmYjQyOWY0MGJkYzYyM2M0MGVhZTFlMjVhZjU5ZjVhODNkYzgxMWJkMGQzZTdhNTdmZjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f48"), + "name" : "Philips SHP1901 Wired Headphone, Black", + "description" : "Philips SHP1901 Wired Headphone, Black", + "price" : "15", + "sku" : "Philips-SHP1901-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHP1901-Headphones-and-Headsets-491320722-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTM1OHxpbWFnZS9qcGVnfGltYWdlcy9oZTgvaGFmLzg5MjIzNDk3OTc0MDYuanBnfGRiMmY3ZjJjNzFlYzRkNjBjZmM2NDI5MzI3NzJhYmYwNjU4NmUyYzVlMWM0ZWJhYjJhYzU2YmZkNjYxZGY1ZjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHP1901" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type : Neodymium
  • \n
  • Speaker diameter : 40 mm
  • \n
  • Finishing of connector : Chrome-plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f49"), + "name" : "Sony WI-C400 Wireless Earphone, Black", + "description" : "Sony WI-C400 Wireless Earphone, Black", + "price" : "58", + "sku" : "Sony-WI-C400-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WI-C400-Headphones-and-Headstes-491350619-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjA1NXxpbWFnZS9qcGVnfGltYWdlcy9oMjMvaDY0Lzg5MDQyMzYwNDAyMjIuanBnfDk0MTMyODdmNjM1ZmU3NDc3MWUzZTA3YmMxYmFlZWEyODMyYTNlMGQ3ZWMxZmYwZDQ3ODM3ZjYwNjUyMWE1NDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400/BZ E" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Greyish Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4a"), + "name" : "Skullcandy JIB Wired Earphone, Black", + "description" : "Skullcandy JIB Wired Earphone, Black", + "price" : "15", + "sku" : "Skullcandy-JIB-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2DUYK-343-Headphones-Headsets-491362786-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkxNXxpbWFnZS9qcGVnfGltYWdlcy9oZjYvaDQ2Lzg5MjExNTM2NjcxMDIuanBnfDk2MTBlNWJjNTdhMWQ5YTBmMjYyZGJiMmQyZGZiZmY5MjUyMTI4OWY2ZGMzOGQxZWViMzNiMGYzZGUwNTNkMTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "18.1" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4b"), + "name" : "JBL T110 Wired Earphone, White", + "description" : "JBL T110 Wired Earphone, White", + "price" : "19", + "sku" : "JBL-T110-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphones-and-Headstes-491377944-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM5NXxpbWFnZS9qcGVnfGltYWdlcy9oY2UvaDQ5Lzg5NDY4NzgxODU1MDIuanBnfGQ0NWQ2YzhmNDkyYzY3OGJiZDJlZDc5YTEyNzM2NmY2NTEyMjhjNmUyNzhiNzQ3MWU2NjAxYWVmNTNhNzk5ZWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4c"), + "name" : "JBL T210 Wired Earphone, Grey", + "description" : "JBL T210 Wired Earphone, Grey", + "price" : "18", + "sku" : "JBL-T210-Wired-Earphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T210-Headphones-and-headsets-491377946-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTM5M3xpbWFnZS9qcGVnfGltYWdlcy9oYzkvaDljLzg5OTQ3NTA4OTAwMTQuanBnfDM2OTkwNjA0NDNlZGJlOTI0ZDc2YjU1NDUwNDhiODUxOTBkODljMmRiMmFhNDE2NDRiYzc5Y2Q5NTk5ZDE4MTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.7" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 8.7 mm dynamic driver
  • Lightweight and compact design
  • Pure Bass
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4d"), + "name" : "Sony WH-CH400 Wireless Headphone, Blue", + "description" : "Sony WH-CH400 Wireless Headphone, Blue", + "price" : "73", + "sku" : "Sony-WH-CH400-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH400-Headphones-and-Headsets-491378317-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDczNXxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDVlLzg5MjIzMzczNDU1NjYuanBnfGNhM2Q3ZjA5ODQ2ZDljZGRjZmU2ZjFhMjI4NjMzZjllYmIxYzdkNzkzMjM5ZGYxM2IxNTFkOTc5N2MzYzcyNTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-CH400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "107" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4e"), + "name" : "SoundBot SB305 Wired Earphone, Black", + "description" : "SoundBot SB305 Wired Earphone, Black", + "price" : "19", + "sku" : "SoundBot-SB305-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB305-Headphones-and-Headsets-491431145-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMxNHxpbWFnZS9qcGVnfGltYWdlcy9oZDIvaDU0LzkwNjcxNDIwMjExNTAuanBnfDEyOGMxYTZkZjk3ODQ5NzhiNDAzNTcyYWE5NTI0YTY0YTU0NmZlMDRlZmEwZjgxZDdkMGUzMTNkMDAxMWM3NmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB305" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "45" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 pairs of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f4f"), + "name" : "SoundBot SB250 Wireless Headphone + Speaker, Black", + "description" : "SoundBot SB250 Wireless Headphone + Speaker, Black", + "price" : "87", + "sku" : "SoundBot-SB250-Wireless-Headphone-+-Speaker,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB250-Headphones-and-Headsets-491431147-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTYwNXxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDc2LzkwNjcxNDc5MTkzOTAuanBnfGQ2YmJmZTAzYThmZWQ5NGE3YjRkZGU1YzBlZGRiMDY4OTA1NDgxZTYxZDQ5Yzg2YTVmZmI5MWEwY2NlOTNiNmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Playback Time: Up to 25 hours in wired headset mode/Up to 3 hrs of playtime in external wireless speaker" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB250" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "Connection Range - Up to 33 feet of wireless range" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "204" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f50"), + "name" : "JBL Endurance DIVE Wireless Headphone, Red", + "description" : "JBL Endurance DIVE Wireless Headphone, Red", + "price" : "102", + "sku" : "JBL-Endurance-DIVE-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431084-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNjAyMXxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaDVmLzkwNjk4OTIyNzIxNTguanBnfGVmZDNmYmE5Yjk4N2RkODFkNmMxZmJlNTNhNjMyZTlmYWRjMGZlZjI2MjdkYmUwMmY2NGQzMDYxNGY2NjdiMDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f51"), + "name" : "SoundBot SB221 Wireless Headphone, Black", + "description" : "SoundBot SB221 Wireless Headphone, Black", + "price" : "44", + "sku" : "SoundBot-SB221-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB221-B-Headphones-and-Headsets-491431144-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDAwNXxpbWFnZS9qcGVnfGltYWdlcy9oZTcvaGJlLzkwNjcxNDQ5NzAyNzAuanBnfDAzMjNlYjk4YzI2MTQ0OGY0ODIzZDRjYjJkN2M2ZDdlN2Q4OThhYzAwZDRiMzBhYzYyY2FjMGQxMWVlMTNjOWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Hands Free Calling: 25 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB221" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Water Proof Carry Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "72" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f52"), + "name" : "JBL Endurance DIVE Wireless Headphone, Yellow", + "description" : "JBL Endurance DIVE Wireless Headphone, Yellow", + "price" : "102", + "sku" : "JBL-Endurance-DIVE-Wireless-Headphone,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431083-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTg4fGltYWdlL2pwZWd8aW1hZ2VzL2gwZS9oODQvOTA2OTg5OTgwODc5OC5qcGd8NzAyNzFlZmQ3MjJlYmI4MjVlNDUxZmVlYmMyMTAzMDhhNTE4MTljYWUxNDIzNDQ5YWMwOWI5ZDhiYTlkNTg4MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f53"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Yellow", + "description" : "JBL Endurance SPRINT Wireless Headphone, Yellow", + "price" : "58", + "sku" : "JBL-Endurance-SPRINT-Wireless-Headphone,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431091-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5OTQyfGltYWdlL2pwZWd8aW1hZ2VzL2g5ZS9oYTkvOTA2OTkxODc0ODcwMi5qcGd8ZjA1MDNlNDg1NzAzNzk3Yjk3YWY2ZGU3MWNjZDcyZjhiNDExZDU4MzE2ZjI1Y2UxZDMxYmJkODRjMTcxNzdjMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f54"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Blue", + "description" : "JBL Endurance SPRINT Wireless Headphone, Blue", + "price" : "58", + "sku" : "JBL-Endurance-SPRINT-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431090-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTMyOHxpbWFnZS9qcGVnfGltYWdlcy9oMTgvaDY2LzkwNjk5MTIzMjYxNzQuanBnfGZkNTQwZjVhNzhkMjY2YTFlZmViYjI1ZmMxMmU5NWQ2YWJhMmJjY2M5OGYxYTIzNDA2NWM4MjNjNjhiZmMzOTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f55"), + "name" : "SoundBot SB565 Wireless Earphone, Black", + "description" : "SoundBot SB565 Wireless Earphone, Black", + "price" : "44", + "sku" : "SoundBot-SB565-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB565-Headphones-and-Headsets-491431146-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDczNXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDYyLzkwNjcxNDE2OTM0NzAuanBnfDhjZjY0YzQ5ZTJlMWY4ZDFkZmRiMjJmYTkyYWM3MWNkOTNlMWI1MjcyMmYzNDYyZjhiNTVmYjk1ZmIwZjE5YzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Silicone Earbuds & Stabilizer" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Talktime: 6.5 hours
  • \n
  • Standby time: Up to 6.6 days
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB565" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "68" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f56"), + "name" : "JBL Endurance JUMP Wireless Headphone, Red", + "description" : "JBL Endurance JUMP Wireless Headphone, Red", + "price" : "70", + "sku" : "JBL-Endurance-JUMP-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431088-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTgyMnxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGNkLzkwNjk5MDQ3MjM5OTguanBnfDhiZWE2YTNjNThmNmYzNDNiOWE0NzlhYWE1YzljMTAwMDc4MDI2ZjIxMjU3MjgyYWZlMDUzMDYxZTgyZTdmYWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f57"), + "name" : "Philips SHL5005 Wireless Headphone, Black", + "description" : "Philips SHL5005 Wireless Headphone, Black", + "price" : "22", + "sku" : "Philips-SHL5005-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL5005-Headphone-Headsets-491378143-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjUxNnxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaDgxLzkwNDY5MzkzMDM5NjYuanBnfGZkNGQ1OTQ0MmFiYmQ3YjAyNDg2ZTkwMTcyNDAwYTg2OGU1Y2IyZTljMDNlMzUyMzgxZjA0MDY2ZWEyYmM1NDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL5005" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 24 000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 40 mW Power Input
  • 3.5 mm stereo Connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f58"), + "name" : "JBL Endurance JUMP Wireless Headphone, Black", + "description" : "JBL Endurance JUMP Wireless Headphone, Black", + "price" : "70", + "sku" : "JBL-Endurance-JUMP-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431085-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTU0NHxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaDk2LzkwNjk5MDIxMDI1NTguanBnfGVjNTkxNzgyNTU4OTllMWU3MjBiNTc2YjMwMmFjYTlmMTNjNDgzNDI5MzM4ODdkMjQ5MGM2YWEzNmZkMDNmMjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f59"), + "name" : "JBL Endurance SPRINT Wireless Headphone, Red", + "description" : "JBL Endurance SPRINT Wireless Headphone, Red", + "price" : "58", + "sku" : "JBL-Endurance-SPRINT-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-SPRINT-Headphones-And-Headsets-491431092-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjA2MHxpbWFnZS9qcGVnfGltYWdlcy9oYjIvaDFjLzkwNjk5MTgwOTMzNDIuanBnfGU4Y2E1MWFhZGE1OGMxMTliNTdkZmY5MjI0ZDI0YThkMzIzNmE0YThhNGI3YzVhZTY5ZGY2MDAyOTU0Yjk0MzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance SPRINT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5a"), + "name" : "JBL Endurance JUMP Wireless Headphone, Yellow", + "description" : "JBL Endurance JUMP Wireless Headphone, Yellow", + "price" : "70", + "sku" : "JBL-Endurance-JUMP-Wireless-Headphone,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431087-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzkzOHxpbWFnZS9qcGVnfGltYWdlcy9oOGQvaDg5LzkwNjk5MDcwMTc3NTguanBnfDUxMmQzYzY0OWU3ZTFkMjM3MGZiN2JiY2I2OWYxMDAyYmZhYWY3MGE0ODJlZWE4ZGFhMzNhN2JlZGFjNDU2Nzk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5b"), + "name" : "Sony MDR-EX15LP Wired Earphone, Blue", + "description" : "Sony MDR-EX15LP Wired Earphone, Blue", + "price" : "10", + "sku" : "Sony-MDR-EX15LP-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX15LP-Headphones-and-Headsets-491431149-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzM2NnxpbWFnZS9qcGVnfGltYWdlcy9oMzUvaGZmLzkwNjQ2MzM5NTg0MzAuanBnfDM2MWQwYTk0OTE5ZWQ4YmQ4N2VlOTY1NjQ2ZTE1OGViMjRiNTMwZmFlN2ZlN2VlOGIyNWZlYjViN2I3YWY4YjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX15LP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "8 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earbuds - S x2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5c"), + "name" : "SoundBot SB221 Wireless Headphone, Grey", + "description" : "SoundBot SB221 Wireless Headphone, Grey", + "price" : "44", + "sku" : "SoundBot-SB221-Wireless-Headphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB221-G-Headphones-and-Headsets-491431143-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjM5OHxpbWFnZS9qcGVnfGltYWdlcy9oZmIvaDEzLzkwNjcxNDUyOTc5NTAuanBnfDZiMjIxMmQzNGI1ZDhhMzVjOTljYzZkMjJjNWY0OTYzMzdlYjRkNjQ3OWUwNDAzZjI5OTcwNTNmZTI5NjU3ZGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Hands Free Calling: 25 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB221" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Water Proof Carry Pouch" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "72" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5d"), + "name" : "Jabra UC VOICE 150 Wired Headphone, Grey", + "description" : "Jabra UC VOICE 150 Wired Headphone, Grey", + "price" : "44", + "sku" : "Jabra-UC-VOICE-150-Wired-Headphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-JABRA-UC-VOICE-Headphones-And-Headsets-491431080-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjM5fGltYWdlL2pwZWd8aW1hZ2VzL2g2ZC9oMTgvOTA2OTg5MDk2MTQzOC5qcGd8MGM5Yjg5ZTkxN2ZjMDg4OGFkNmUyMmZmY2I1M2Y1MGEyOWU3Njc4YjVhMGFjNGNiNzczOTQ5OTRjZjY1ZTNmNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "UC Voice 150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5e"), + "name" : "JBL Endurance DIVE Wireless Headphone, Blue", + "description" : "JBL Endurance DIVE Wireless Headphone, Blue", + "price" : "102", + "sku" : "JBL-Endurance-DIVE-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431082-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzE2OXxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaGY2LzkwNjk4OTMyNTUxOTguanBnfGFmNzA2NWNiODEyMjYzNDMyMDgxOTMyY2E2MGM3ZTk1MjA5MmY4Mjk4MDE3ZGE2OThlMmJkNWNhYTc4MWE3ZTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f5f"), + "name" : "JBL Endurance JUMP Wireless Headphone, Blue", + "description" : "JBL Endurance JUMP Wireless Headphone, Blue", + "price" : "70", + "sku" : "JBL-Endurance-JUMP-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-JUMP-Headphones-And-Headsets-491431086-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDkwMXxpbWFnZS9qcGVnfGltYWdlcy9oZDkvaGU1LzkwNjk5MDI0MzAyMzguanBnfDYyYjk4MDI1NTAyNDUwZDIzMDM2ZTAwZWVlYWJjODk4M2EwMDc4NjViOTRlMWZiOGI0NTBlNzdiZmIxOTJjZTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance JUMP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f60"), + "name" : "SoundBot SB210 Wireless Beanie Headphone, Black", + "description" : "SoundBot SB210 Wireless Beanie Headphone, Black", + "price" : "58", + "sku" : "SoundBot-SB210-Wireless-Beanie-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/SoundBot-SB210-Headphones-and-Headsets-491431148-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTE1MnxpbWFnZS9qcGVnfGltYWdlcy9oYjEvaDk3LzkwNjcxNDcyNjQwMzAuanBnfDM1ZDljZjQ1NDRkZmZiMmEzM2JhMGU3YWJlNDJjNTVjZTRiYmEzMDg0ZDVjZjhkMmU5YjU1ZTM5YmZlZjg4MzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • Music Streaming: 5 hours
  • \n
  • Hands-Free Talking: 7 hours
  • " + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "60" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SB210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SoundBot" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "MicroUSB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Connection Range - Transmission range: Up to 33 feet
  • \n
  • Fabric - 50% Acrylic and 50% Polyester
  • " + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "204" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Micro USB (for charging)" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "SoundBot", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f61"), + "name" : "Skullcandy Crusher Over-the-Ear Headphone, Black", + "description" : "Skullcandy Crusher Over-the-Ear Headphone, Black", + "price" : "174", + "sku" : "Skullcandy-Crusher-Over-the-Ear-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S6CRW-K591-Headphone-Headsets-491378158-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDg3MXxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDg2LzkwNTQ5Nzg4MDE2OTQuanBnfDQ2ZGM4NjA5NjFhMmQ4ZmIxNWNiN2YzMzBhMTg5Y2MzMTk1MWRmOWJlOGZlOTkyOThkZmIzOTk1YTZhY2JmZTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "40 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Crusher" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3.5mm Backup AUX Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "275" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f62"), + "name" : "Sony WH-1000XM3 Wireless Headphone, Silver", + "description" : "Sony WH-1000XM3 Wireless Headphone, Silver", + "price" : "435", + "sku" : "Sony-WH-1000XM3-Wireless-Headphone,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-92480111-Headphones-And-Headsets-491431108-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NjQyfGltYWdlL2pwZWd8aW1hZ2VzL2gyZi9oZGIvOTA2OTkyMjY4MDg2Mi5qcGd8MTA3OTg5N2U4YmY2YWZiMmQzMGJjZjEwZmRiOTNlNzgxNWU4MzQwMGYwZmJmOGI0NzY2ZDNkZjc2ZGFkMGJjYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "3" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 30 hours" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-1000XM3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Carrying case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless freedom" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "47" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "101" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "104.5" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Weight", + "attributeValue" : "225" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "30" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f63"), + "name" : "JBL Endurance DIVE Wireless Headphone, Black", + "description" : "JBL Endurance DIVE Wireless Headphone, Black", + "price" : "102", + "sku" : "JBL-Endurance-DIVE-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-DIVE-Headphones-And-Headsets-491431081-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTc2N3xpbWFnZS9qcGVnfGltYWdlcy9oYjgvaDM3LzkwNjk4OTI1OTk4MzguanBnfGEzMmZjNDViZjk3MWY3YzM1OTE2MzVlMGNmMzQ1MjRkMWZmNjFhOGQ5YjNkODBjZDVhZDhjYmUyZGVhYzc0Y2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 8 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Endurance DIVE" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f64"), + "name" : "Philips SHE3905BK/00 Wired Earphone, Black", + "description" : "Philips SHE3905BK/00 Wired Earphone, Black", + "price" : "14", + "sku" : "Philips-SHE3905BK-00-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE3905BK-00-Wired-Earphone-Black-491163870-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODUzNXxpbWFnZS9qcGVnfGltYWdlcy9oYmQvaGMwLzg5Mjc4NDc0NDg2MDYuanBnfGM4YWEwMmNlMGRlNmNmYzdhYmRiYjZlYWViNjRmMmU4MzZjMWI5YjUwZGFiYzgyMmQ1MDQzNjRiZjIyMmY2ZDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE3905BK/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f65"), + "name" : "Philips SHL4600BK Wired Headphone, Black", + "description" : "Philips SHL4600BK Wired Headphone, Black", + "price" : "22", + "sku" : "Philips-SHL4600BK-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-20Headphone-SHL4600-491315536-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjI5N3xpbWFnZS9qcGVnfGltYWdlcy9oYTMvaDYzLzg5Mjc3NDMwNDk3NTguanBnfGFhOTQ1MTNiOGNmOTUyYjU3Y2ViZmFmNzI4MjQzOWIwNmY2N2NhMDU4YWI2Zjk4MzFjMWQ0NGU1Mzg1NzRjY2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL4600BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f66"), + "name" : "Philips SHL4400BK Wired Headphone, Black", + "description" : "Philips SHL4400BK Wired Headphone, Black", + "price" : "12", + "sku" : "Philips-SHL4400BK-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL4400BK-Wired-Headphone-Black-491315532-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzgxN3xpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDE4Lzg5Mjc3MzkwNTIwNjIuanBnfGIwNGE0NmY2OTY3MDZhYTgyOGIzMGUyODhkMjg4MGY3NjlmNGY1NDYwM2Y3NmU4MjUwZjlhYTEyYWUwMjcyM2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL4400BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f67"), + "name" : "Philips SHB4000/00 Bluetooth Stereo Wireless Headphones, Black", + "description" : "Philips SHB4000/00 Bluetooth Stereo Wireless Headphones, Black", + "price" : "44", + "sku" : "Philips-SHB4000-00-Bluetooth-Stereo-Wireless-Headphones,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB4000-00-Bluetooth-Stereo-Wireless-Headphones-Black-491086943-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTA4MnxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaGU0Lzg5Mjc4NDg3NTkzMjYuanBnfDYzZjFmMWIzNTMwZDZkYjE2MDRhM2FmNWUyNDU0ZTRjMDA1MWEyNjNjMmZiODU1MzhlM2NjYTZhOWE0MzBlNzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB4000/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Quick start guide
  • USB cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 100 mW
  • Speaker diameter: 32 mm
  • Call Management: Answer/End Call" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "71" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f68"), + "name" : "Philips SHL3000RD/00 Wired Headphone, Red", + "description" : "Philips SHL3000RD/00 Wired Headphone, Red", + "price" : "15", + "sku" : "Philips-SHL3000RD-00-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3000RD-00-Wired-Headphone-Red-491086936-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjc5M3xpbWFnZS9qcGVnfGltYWdlcy9oYzUvaGJjLzg5Mjc4Mzk1ODQyODYuanBnfDNjODY4ZDNiYjdlZGJjMGRjZGFkYTM1ODNmOTdjMGIyMGYzZmUxOTBlM2NlYzVlMzUzZDQ1NThjOWIxMWI4MTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3000RD/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Closed type acoustic provide good sound isolation
  • 32mm speaker driver delivers powerful and dynamic sound
  • A 1.2m long cable that is ideal for outdoor use
  • Flat foldable for you easy to carry on the go
  • Adjustable earshells and headband fits the shape of any head
  • Soft ear cushions for comfortable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f69"), + "name" : "Skullcandy Uproar Wired Headphone, Black/Gray", + "description" : "Skullcandy Uproar Wired Headphone, Black/Gray", + "price" : "44", + "sku" : "Skullcandy-Uproar-Wired-Headphone,-Black-Gray", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Uproar-Wired-Headphone-Black-Gray-491315302-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQ1M3xpbWFnZS9qcGVnfGltYWdlcy9oM2MvaGI5Lzg5Mjc2ODY0MjY2NTQuanBnfDg1NGJhNWQyMTBiNzMxMWNmMjI4MjMwMmIyN2Q4MDdiMTFmODQ3MzQ5MDI1Y2QxMTJjNDNlYTAxY2RjOTFhOTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Uproar" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Gray" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium materials and Supreme Sound acoustics
  • Soft on-ear cushions for lightweight and comfortable fit
  • Call and track control via the built-in microphone and remote on ear cup
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6a"), + "name" : "Skullcandy Grind Wireless Headphone, Black/Tan", + "description" : "Skullcandy Grind Wireless Headphone, Black/Tan", + "price" : "95", + "sku" : "Skullcandy-Grind-Wireless-Headphone,-Black-Tan", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Grind-Wireless-Headphone-Black-Tan-491315297-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTY5NnxpbWFnZS9qcGVnfGltYWdlcy9oOGMvaDNmLzg5Mjc2ODIxNjY4MTQuanBnfDc1MTYwYzNkMWY1ZDk2MTc5MGMyODQ4ZGExYjQ1YmVmN2JhNDQ0NDJjNDAyMzNkNjQwN2Q3MzVkYjNjM2Q0YjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Grind" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Premium materials and widely celebrated acoustics
  • Bluetooth wireless with 12-hour rechargeable battery
  • Call" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Tan" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6b"), + "name" : "Skullcandy JIB Wired Earphone, Red/Black", + "description" : "Skullcandy JIB Wired Earphone, Red/Black", + "price" : "15", + "sku" : "Skullcandy-JIB-Wired-Earphone,-Red-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wired-Earphone-Red-Black-491315282-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODA5MnxpbWFnZS9qcGVnfGltYWdlcy9oZGIvaDY3Lzg5Mjc2OTY1ODQ3MzQuanBnfGNhYmUzNjhlNzcwZjZkY2U3ZDc1YmM3NTZjOWNmNWQyZDlmYzAyYzk0NGM2NTg5NmIzMWY3NzI0NDBiYjAyZTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red/Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound technology for rich" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6c"), + "name" : "Bose AE2w Wireless Headset, Black", + "description" : "Bose AE2w Wireless Headset, Black", + "price" : "276", + "sku" : "Bose-AE2w-Wireless-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-AE2w-Wireless-Headset-Black-491086598-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjgzNHxpbWFnZS9wbmd8aW1hZ2VzL2hjNy9oNWUvODkyNzYwNjA3OTUxOC5wbmd8MTM1NzE0N2M5M2NmNDRjMDRkNjQ2YjY0MDFhMzk0NTI2YjU0MDU1ZmNlYTMzYTc4YjRhMzdjMmNmN2RhN2UwOQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Model", + "attributeValue" : "AE2w" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Bluetooth Control Module
  • USB Charging Cable
  • Optional Audio Cable
  • Drawstring Carry Bag
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Unwind without wires
  • Better sound built in
  • Wireless convenience
  • Versatile control module
  • Comfort and durability
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "149.6" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6d"), + "name" : "Philips O'Neill SHO3305STKR/00 Wired Headphone, White", + "description" : "Philips O'Neill SHO3305STKR/00 Wired Headphone, White", + "price" : "29", + "sku" : "Philips-O'Neill-SHO3305STKR-00-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-O-Neill-SHO3305STKR-00-Wired-Headphone-White-491073385-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDM2N3xpbWFnZS9wbmd8aW1hZ2VzL2g3Mi9oY2MvODkyNzc2ODM0NjY1NC5wbmd8MWE3MjU1NDE4OTAyYzc2NWZjZTM3NGRhNDdiMTdlZWM0ZGQ2MGRlOTYwYzcwMDFlYmJiZGMyZmFkNmZmYmViZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "O'Neill" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHO3305STKR/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "118" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type - Neodymium
  • Maximum power input - 30 mW
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6e"), + "name" : "Sony MDR-IF245RK Wireless Headphone, Black", + "description" : "Sony MDR-IF245RK Wireless Headphone, Black", + "price" : "73", + "sku" : "Sony-MDR-IF245RK-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-IF245RK-Wireless-Headphone-Black-491072966-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjk2NnxpbWFnZS9wbmd8aW1hZ2VzL2g3Yi9oYWEvODkyNzgxNzY5NTI2Mi5wbmd8YTVhMmVkNGYxNDk2YjYzY2ZkODg2MDQ4MzBiYzIzMjJiYzI4ODNlMmUwMzUxYmIyNzFkOTE5NzkyOTA4MDdhZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "604" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver Unit: 9 mm
  • Magnet: Neodymium
  • Stereo Connecting Cable
  • Battery Life: Approx. 28 hours
  • Battery Charging Time: Approx. 7 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-IF245RK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Transmitter Stand
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f6f"), + "name" : "Skullcandy Ink'd 2 Wired Headphone, Black/Gold", + "description" : "Skullcandy Ink'd 2 Wired Headphone, Black/Gold", + "price" : "21", + "sku" : "Skullcandy-Ink'd-2-Wired-Headphone,-Black-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Ink-d-2-Wired-Headphone-Black-Gold-491064833-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTgxNnxpbWFnZS9wbmd8aW1hZ2VzL2g5Yy9oYjkvODkyNzgyNDI0ODg2Mi5wbmd8YjE0N2QyYmI0ZmE5ZDQ5YTY3Y2QxZWI1ZGQ0ODlkODhlMDI3MWZlNjRmZDQ3OGRkMzcyYWMxZjlhYzdkM2QzYg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Ink'd 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • THD: less than 0.1% (1 mW / 500 Hz)
  • Cable Type: TPE
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f70"), + "name" : "Jabra Wave Wireless Headphone, Black", + "description" : "Jabra Wave Wireless Headphone, Black", + "price" : "58", + "sku" : "Jabra-Wave-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/caf481bf-8c08-4013-9094-245759df652f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ4OXxpbWFnZS9wbmd8aW1hZ2VzL2gxMy9oODYvODgwMjkwNTI5MjgzMC5wbmd8OGVmZTZkYzFjZmQ1MGRiYTUwZDdmODBlN2QyZGE4YWVjNWM1NzcyNzFiNDY0NDM5ODUxNWE0ZjdhNjdkZjc0NA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f71"), + "name" : "LG Tone Active+ HBS-A100 Wireless Earphone, Black/Grey", + "description" : "LG Tone Active+ HBS-A100 Wireless Earphone, Black/Grey", + "price" : "174", + "sku" : "LG-Tone-Active+-HBS-A100-Wireless-Earphone,-Black-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-Tone-Active-HBS-A100-Wireless-Earphone-Black-Grey-491332663-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDMzMHxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDk0Lzg5Mjc2Mjk2MDY5NDIuanBnfGJiMGFiYjU0ODIxNTM5MDJmOWMzYzZmNzQ3YzQxYjg2OTJkMDRjZjkyY2MxOWQxNmVjNzFhNTM5MWQzYjNmODc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Talk Time: Up to 13 hours (Speaker Mode up to 9.5 hours)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "HBS-A100" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Grey" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "144.78 (W) x 147.32 (H) x 17.78 (D) mm" + }, + { + "attributeName" : "Weight", + "attributeValue" : "60" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f72"), + "name" : "JBL T280A Wired Earphone, Gold", + "description" : "JBL T280A Wired Earphone, Gold", + "price" : "44", + "sku" : "JBL-T280A-Wired-Earphone,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T280A-Wired-Earphone-Gold-491099198-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjM2OHxpbWFnZS9qcGVnfGltYWdlcy9oNWMvaDZmLzg5Mjc3MDIyMjA4MzAuanBnfDk2ZGYwZDU2M2FkNDU1MzU3N2YwYTg3NmQwYzM2MGQyMTZjYWQyNmRjYjQyNWY4ODVmN2QzYjNkZmJmOTkzNGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T280A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single Button Mic and Remote
  • Legendary JBL sound
  • Durable tangle resistant flat cable
  • High Performance 9mm Drivers
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f73"), + "name" : "Sony MDR-XB50BS Wireless Earphone, Red", + "description" : "Sony MDR-XB50BS Wireless Earphone, Red", + "price" : "80", + "sku" : "Sony-MDR-XB50BS-Wireless-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB50BS-Wireless-Earphone-Red-491277345-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTUxM3xpbWFnZS9qcGVnfGltYWdlcy9oOTAvaDE0Lzg5Mjc2NjA3MzY1NDIuanBnfGY1ZTc5ZjExM2QwZmNhODAzZThkZjYzMmEwZDVjOTI2NzFmZjNhMGE4OTE1NjBlZmY1ZDk4YzFiYWU5YmJiMmE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "8.5 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB50BS" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f74"), + "name" : "Sennheiser HD 202 II Headphone, Black", + "description" : "Sennheiser HD 202 II Headphone, Black", + "price" : "37", + "sku" : "Sennheiser-HD-202-II-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-202-II-Headphone-Black-491004893-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDczNXxpbWFnZS9wbmd8aW1hZ2VzL2hkNS9oMDIvODkyNzgxNTQwMTUwMi5wbmd8ZDk0ODk4NzEwMTg3MTU2OWE0NjUxNGFlZDIzY2MyM2M2MmExNzQwNDY4NGJhMzJlOTA4YmNhOTk0Y2ZhZDI3Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "HD" + }, + { + "attributeName" : "Model", + "attributeValue" : "202 II" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Weight", + "attributeValue" : "130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1 Cord take-up with Clip
  • 1 Adaptor 3.5/6.3 mm Stereo Jack Plug
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f75"), + "name" : "Philips SHL3075 Wired Headphone, Red", + "description" : "Philips SHL3075 Wired Headphone, Red", + "price" : "26", + "sku" : "Philips-SHL3075-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075-Headphones-and-Headstes-491362708-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzQ3MnxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaGUxLzg5NDY4ODIzMTQyNzAuanBnfDUyNDllYTZiZTczZTc3NzVmYzUzZWFlM2Q0ODI2M2ZmMDhjN2M4YWIwOTlkMjk1Y2M4NWExMDlhOGUwODY1Njc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f76"), + "name" : "Philips ActionFit SHQ1200TLF Wired Earphone, Green/Grey", + "description" : "Philips ActionFit SHQ1200TLF Wired Earphone, Green/Grey", + "price" : "11", + "sku" : "Philips-ActionFit-SHQ1200TLF-Wired-Earphone,-Green-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1200TLF-Wired-Earphone-Green-Grey-491315528-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTkyOXxpbWFnZS9qcGVnfGltYWdlcy9oZTEvaDBlLzg5Mjc2ODc0MDk2OTQuanBnfGMyY2FlMWI3ZTE5MzkxMDhkMzliNTMxYzc3YjJmNzY3ODZmZDM5NGU3YjI3M2YzOTkwOTZjODE1ZThjNzliZjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Running" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1200TLF" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green/Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "18" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f77"), + "name" : "Sony WS Series NW-WS623 Wireless Earphone, Black", + "description" : "Sony WS Series NW-WS623 Wireless Earphone, Black", + "price" : "131", + "sku" : "Sony-WS-Series-NW-WS623-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-NW-WS623-Headphones-and-Headstes-491336183-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjA3M3xpbWFnZS9qcGVnfGltYWdlcy9oNDkvaDY2Lzg5NDY3OTMyNTA4NDYuanBnfDI0OTgxY2IyN2NkOWNlYTg4NDVmNjZiM2JmZjM4OGUzMjc0ZTA4MGRkN2E4M2EyNWJhZjg1MWFhOTY0MDFkZDQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cradle" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "macOS (v10.8-10.12)" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "WS Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "NW-WS623" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Behind-the-neck" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "32" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f78"), + "name" : "JBL T450BT Wireless Headphone, White", + "description" : "JBL T450BT Wireless Headphone, White", + "price" : "51", + "sku" : "JBL-T450BT-Wireless-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450BT-Headphone-and-Headsets-491332667-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzc3NnxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaGY2Lzg5Nzk3MDgxODI1NTguanBnfGQxNDE1OGEyMWU0ODczMDY4N2VlODdkMDk0YzFiOTBiZTE0NDdkNjc2OGI1ZjQ4YjhiMDNmNmY5Njg0N2M3NjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T450BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Dynamic Driver: 32mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f79"), + "name" : "Amkette Trubeats Street X7 Wired Earphone, Red/Black", + "description" : "Amkette Trubeats Street X7 Wired Earphone, Red/Black", + "price" : "8", + "sku" : "Amkette-Trubeats-Street-X7-Wired-Earphone,-Red-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Street-Swagger-Headphones-and-headsets-491320282-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDMwOXxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDBjLzg5OTQ3NTQ4MjIxNzQuanBnfDJiMGUyOWFkYWIzMWYwZDU4YzYxYmEzYmJlY2I3MzZhZjFiNWFmZWEzYzY2ZGNiMGQ2ZTAyZDc5YzFhOWVkYTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats Street" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red/Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 10mm Neodymium dynamic drivers 
  • Powerful bass and stereo sound quality
  • 3.5 mm Stereo
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7a"), + "name" : "Amkette Trubeats X9 Wired Earphone, Glittery Gold", + "description" : "Amkette Trubeats X9 Wired Earphone, Glittery Gold", + "price" : "12", + "sku" : "Amkette-Trubeats-X9-Wired-Earphone,-Glittery-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Trubeats-Earphone-X9-Headphones-and-headsets-491320287-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjY2N3xpbWFnZS9qcGVnfGltYWdlcy9oNGYvaGYyLzg5OTQ3NTkwODIwMTQuanBnfDJiZmQwYTE3MmFjMzNiMjY3ODA1YzMwZmIyZTNhODg4NTVmNzRlZGIzNmZkNzFiNWRiMWFjZjQ3NjQ3MWVhMWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz -20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Glittery Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Isolation
  • li>10 mm neodymium dynamic driver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7b"), + "name" : "Amkette Trubeats X9 Wired Earphone, Bold-Bronze", + "description" : "Amkette Trubeats X9 Wired Earphone, Bold-Bronze", + "price" : "12", + "sku" : "Amkette-Trubeats-X9-Wired-Earphone,-Bold-Bronze", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Trubeats-Earphone-X9-Headphones-and-headsets-491320286-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDc3OXxpbWFnZS9qcGVnfGltYWdlcy9oMmUvaDY3Lzg5OTQ3NTM1MTE0NTQuanBnfGZjY2QxYTU1NzE4MmJhZjY2Mzg1YzBiZjcyZTQ0M2ZhOWUxMDNiYTcwZDliN2U3OGE1OTQwZDI4MWQxNTYyMzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz -20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Bold-Bronze" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Isolation
  • li>10 mm neodymium dynamic driver" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7c"), + "name" : "Itek Stayfit BEB003 Wireless Earphone, Green", + "description" : "Itek Stayfit BEB003 Wireless Earphone, Green", + "price" : "25", + "sku" : "Itek-Stayfit-BEB003-Wireless-Earphone,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-BEB003-Headphones-and-headsets-491378102-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTk1NHxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaGM0Lzg5OTQ3NTAyMzQ2NTQuanBnfDMyYmVlNGY1Njc3NzNmYTNkMjk4MTVjZWEzYzMwYzI3MjFjODdjNTgxNDgwMDVjYTg2ZTc3NjA4ZTY4MjcxOWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "5 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BEB003" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth Connectivity
  • \n
  • 5 Hour Battery Life
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Weight", + "attributeValue" : "99.8" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7d"), + "name" : "Philips ActionFit Sports SHQ3400LF Wired Earphone, Lime Yellow/White", + "description" : "Philips ActionFit Sports SHQ3400LF Wired Earphone, Lime Yellow/White", + "price" : "18", + "sku" : "Philips-ActionFit-Sports-SHQ3400LF-Wired-Earphone,-Lime-Yellow-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ3400LF-Headphones-and-Headsets-491362747-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NjUzNnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDVhLzg5OTQ3NDgwNzE5NjYuanBnfDM2ZDljYWI5MzgyYzkyNjc4YWY2ODE3MWI1YzhjMGI0YzkxZjIxNWU3MTMxYjVkM2Y5MzU1OWRhYTVkNWE5MzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3400LF" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Yellow/White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Eartips: 3 sizes S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Tangle-free Workout
  • \n
  • Ultralight design
  • \n
  • Magnet Type: Neodymium
  • \n
  • Maximum Power Input: 20 mW
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7e"), + "name" : "Amkette Trubeats Street X7 Wired Earphone, Black/Grey", + "description" : "Amkette Trubeats Street X7 Wired Earphone, Black/Grey", + "price" : "8", + "sku" : "Amkette-Trubeats-Street-X7-Wired-Earphone,-Black-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Street-Uber-Headphones-and-headsets-491320284-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDg3MXxpbWFnZS9qcGVnfGltYWdlcy9oNTUvaGVhLzg5OTQ3NDgzOTk2NDYuanBnfDJhZDg1Mzg3OTdlYzhjMDRkMzg3ODVhYmZhODNhNzM2ODA3ODQ2MDQyYmVmN2FmMjU1ODgzNWRmMWVkMGZhZmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats Street" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "41" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Grey" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 10mm Neodymium dynamic drivers 
  • Powerful bass and stereo sound quality
  • 3.5 mm Stereo
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f7f"), + "name" : "Creative Sound BlasterX H3 GH0340 Gaming Headset, Black", + "description" : "Creative Sound BlasterX H3 GH0340 Gaming Headset, Black", + "price" : "87", + "sku" : "Creative-Sound-BlasterX-H3-GH0340-Gaming-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0340-Headphones-and-Headsets-491430847-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTE0N3xpbWFnZS9qcGVnfGltYWdlcy9oODAvaDRiLzg5OTQ3NDExOTA2ODYuanBnfDY3ODY3ZTUxODkwYjE2NjhkZWEwMjE4ZDljM2QyMDRhNzE0YWM3YWVmYjk3OGY0MDhiNTkyNmZlNjJmZTI0ZWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound BlasterX H3" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0340" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 15kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Versatile compatibility
  • Convenient In-line remote control
  • Warm sound signature
  • Detachable noise reduction microphone
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Tethered cable including inline control - 1.2m / 3.9ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f80"), + "name" : "Creative Draco HS880 EF0700 Gaming Headset, Black", + "description" : "Creative Draco HS880 EF0700 Gaming Headset, Black", + "price" : "72", + "sku" : "Creative-Draco-HS880-EF0700-Gaming-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0700-Headphones-and-Headsets-491430848-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzQwNnxpbWFnZS9qcGVnfGltYWdlcy9oMGIvaDY0Lzg5OTQ3NDE4NDYwNDYuanBnfDBiZDQyMTk0MmYxMzQ2OTFmNzFkNTUzZDk4YWRmZDdkNGVmZjc5ZTY0NDA1NjMwZDNiNDFmNWIyYjhkNzBmNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Draco HS880" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0700" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 18kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "268" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Detachable Mic
  • Swivel earcups
  • Finely tuned Neodymium drivers
  • Steel Core Headband
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Tethered cable including inline control - 2.5m / 8.2ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f81"), + "name" : "Creative Sound BlasterX H5 GH0310 Gaming Headset, Black", + "description" : "Creative Sound BlasterX H5 GH0310 Gaming Headset, Black", + "price" : "174", + "sku" : "Creative-Sound-BlasterX-H5-GH0310-Gaming-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0310-Headphones-and-Headsets-491430846-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NTcyNHxpbWFnZS9qcGVnfGltYWdlcy9oYTEvaGIzLzg5OTQ3NDE1MTgzNjYuanBnfGI5ODU0ZWYxMWY3MmViYWU3ZDE4ZDRlNzgwN2E3YzA0YTAxYzE3YmI3NDYwY2RmM2VmZDBlZjI0YzdhZjcxOTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound BlasterX H5" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0310" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 15kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Windows 10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "338" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • BlasterX Acoustic Engine Lite
  • 50 mm fullspectrum audio driver
  • Detachable microphone
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Crystalline capsule carry case
  • \n
  • 1.2m Y-splitter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f82"), + "name" : "Creative Sound Blaster Blaze GH0320 Gaming Headset, Black", + "description" : "Creative Sound Blaster Blaze GH0320 Gaming Headset, Black", + "price" : "58", + "sku" : "Creative-Sound-Blaster-Blaze-GH0320-Gaming-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0320-Headphones-and-Headsets-491430849-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDUwNnxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaDQ2Lzg5OTQ3NDA4NjMwMDYuanBnfDFiZTJlYjllMWY0N2IwMTYyOWEyZTQ1NTg4NzdmMWVlZWY5MTdmYjUwZGI3ZGYyMDFiODhjM2E2MzBmMDU3YzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound Blaster Blaze" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0320" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 18kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight
  • Detachable microphone
  • Noise-reduction
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Detachable microphone and in-line volume control - 2.5m / 8.2ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f83"), + "name" : "Creative Outlier Sports EF0730 Wireless Earphone, Fiery Orange", + "description" : "Creative Outlier Sports EF0730 Wireless Earphone, Fiery Orange", + "price" : "102", + "sku" : "Creative-Outlier-Sports-EF0730-Wireless-Earphone,-Fiery-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0730-Headphones-and-Headsets-491430842-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTI1MHxpbWFnZS9qcGVnfGltYWdlcy9oZmEvaDFjLzg5OTQ3Mzc5MTM4ODYuanBnfDM0ZmQyNWNjZTY2NDE1ZjYwMGM3OTZhNjdlOTliOWQ1Yzc1ZTc0MDNlNzRmOTI4MWEwYTFhNjAwMzkwNzc5Y2Y", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 11 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Outlier" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0730" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6mm Neodymium Drivers
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Fiery Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f84"), + "name" : "Creative Flex EF0710 Wired Headphone, Black", + "description" : "Creative Flex EF0710 Wired Headphone, Black", + "price" : "44", + "sku" : "Creative-Flex-EF0710-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0710-Headphones-and-Headsets-491430844-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTM3MHxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDJjLzg5OTQ3MzU5NDc4MDYuanBnfDg4ZWIyYTYzMWQ0Y2QyYjdiOWM5NTYyZDEwMjdjMGMxMmM0NDA4OWQyYjliNjAyY2NjNTMxMWE0MzZjNmNiYTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Flex" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0710" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "136" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 32mm Neodymium Drivers
  • 90 Degree Swivel Earcups
  • \n
  • Cable Length: 1.2 m
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Four Pairs of Changeable Color Tabs" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f85"), + "name" : "Creative Sound Blaster Jam GH0300 Wireless Headphone, Black", + "description" : "Creative Sound Blaster Jam GH0300 Wireless Headphone, Black", + "price" : "51", + "sku" : "Creative-Sound-Blaster-Jam-GH0300-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0300-Headphones-and-Headsets-491430843-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTI3NHxpbWFnZS9qcGVnfGltYWdlcy9oNWYvaDhkLzg5OTQ3MzY5MzA4NDYuanBnfGJmZDYzM2IwNjY1NTQwNmY3NTE2MDkwNjZiYzYwZTUwZGMyYjY1NDAzMzRkODUxMjU0NmY1ODM4YWU1YWFhNWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "12 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0300" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sound Blaster Jam" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "1m USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Thick Foam Ear Cushions 
  • Near Field Communication (NFC) 
  • Ultra Light weight
  • \n
  • Cable Length: 1 m
  • \n
  • 32 mm Neodymium Magnet
  • \n
  • Bluetooth 4.1
  • \n
  • Operating Range: Up to 15 m
  • \n
  • Play time: 12 hours
  • " + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "83" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Foam" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Windows" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "12" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f86"), + "name" : "Creative Outlier Sports EF0730 Wireless Earphone, Midnight Blue", + "description" : "Creative Outlier Sports EF0730 Wireless Earphone, Midnight Blue", + "price" : "102", + "sku" : "Creative-Outlier-Sports-EF0730-Wireless-Earphone,-Midnight-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0730-Headphones-and-Headsets-491430840-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDA2NXxpbWFnZS9qcGVnfGltYWdlcy9oMmQvaGM2Lzg5OTQ3MzM5ODE3MjYuanBnfDdkZDhmZTA2MzJmOTA1MzRiZDUzOTE5M2JjMzQ5MTJiY2QyNmZlM2RiNGViZmI4NzMzZjJlMWYxZTA1MDFmYzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Pair of S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 11 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Outlier" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0730" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 6mm Neodymium Drivers
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Midnight Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "42" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "11" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f87"), + "name" : "JBL T110 Wired Earphone, White", + "description" : "JBL T110 Wired Earphone, White", + "price" : "19", + "sku" : "JBL-T110-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphone-and-Headsets-491315591-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM3OXxpbWFnZS9qcGVnfGltYWdlcy9oYjcvaGJmLzg5Nzk3MDYxNTA5NDIuanBnfDljOWQzYzAwMmZmMWMzZGU3ZjhiNzRhZmQ3NGNhOWVhOTUyNDYyYmY1MGJmMDNkMDdlYjQyMDJjMmZlZTJkZWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug: 3.5mm
  • \n
  • Dynamic Driver: 9mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f88"), + "name" : "JBL T110 Wired Earphone, Black", + "description" : "JBL T110 Wired Earphone, Black", + "price" : "19", + "sku" : "JBL-T110-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110-Headphone-and-Headsets-491315590-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQzNXxpbWFnZS9qcGVnfGltYWdlcy9oNDQvaDJiLzg5Nzk3MTI1MDc5MzQuanBnfDM2ZTg3M2U5N2E4NTFlZjdmODkyMjViODFjOGIwMzM0NDc5YmQ2NjEzZjk3OTBiYzE3YThkNmUzYjA3MzQyN2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug: 3.5mm
  • \n
  • Dynamic Driver: 9mm
  • \n
  • Frequency Response: 20Hz - 20kHz
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f89"), + "name" : "Sony MDR-EX31BN/B Wireless Bluetooth Headset, Black", + "description" : "Sony MDR-EX31BN/B Wireless Bluetooth Headset, Black", + "price" : "102", + "sku" : "Sony-MDR-EX31BN-B-Wireless-Bluetooth-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX31BN-B-Wireless-Bluetooth-Headset-Black-491158987-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTI2OHxpbWFnZS9qcGVnfGltYWdlcy9oN2YvaGEyLzg5Mjc2MDE4MTk2NzguanBnfDNkNTlhYTY2YTJkYWMxYzQ2OWI3NjY2MmQwMTA5ZjRlNDg0NjNmMjFjMjdkYmRjZWEzNDg2ZTk3NzdjNDQyOWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB Cable
  • Hybrid silicone earbuds (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX31BN/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 13.5mm high sensitivity driver
  • Maximum Communication Range - Line of sight approx. 30ft (10m)
  • Omnidirectional Microphone
  • Battery Life - (NC ON) Approx. 9.0 Hours" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8a"), + "name" : "Samsung EHS64 Wired Earphone, White", + "description" : "Samsung EHS64 Wired Earphone, White", + "price" : "7", + "sku" : "Samsung-EHS64-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EHS64AVFWECINU-Headphone-and-Headset-491430863-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDU1fGltYWdlL2pwZWd8aW1hZ2VzL2gyMi9oYjgvOTAxMTM5OTAzMjg2Mi5qcGd8YTFkMWY4MWQxMmI1NTU5YTQ5MjM0NmVkOTRiOWVhMDdjYzAwNzI1MmQ2MDMyOTA4ZjczY2ExYTEzNTUxNjAwMw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EHS64" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8b"), + "name" : "Sony WI-C400 Wireless Earphone, Blue", + "description" : "Sony WI-C400 Wireless Earphone, Blue", + "price" : "58", + "sku" : "Sony-WI-C400-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-WI-C400-BL-Headphone-and-Headsets-491431214-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzA5MXxpbWFnZS9qcGVnfGltYWdlcy9oYTgvaDkxLzkwODc3MTk3MzUzMjYuanBnfDE1ODZmZWZmZDc3YmMwMDBkNjczNmU4ZjdjYzNhYTc1N2MwYzhmNjljYWRkNjdmYTI3ZjBjYzFiMGU2ODMyOTM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8c"), + "name" : "Skullcandy JIB Wired Earphone with Mic, Gray/Hot Lime", + "description" : "Skullcandy JIB Wired Earphone with Mic, Gray/Hot Lime", + "price" : "15", + "sku" : "Skullcandy-JIB-Wired-Earphone-with-Mic,-Gray-Hot-Lime", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wired-Earphone-with-Mic-Gray-Hot-Lime-491315281-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTMyOXxpbWFnZS9qcGVnfGltYWdlcy9oOTkvaDE5Lzg5Mjc2OTkyMDYxNzQuanBnfGVlZDFkOGMwMTg5ZGQxZDM3MGE5MDMwN2ViZDY5MmNjNDZjNzczMzBhMjdkNWZjZTI2MmM1YjZlMjAwYTI5ZDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gray/Hot Lime" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound technology for rich" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8d"), + "name" : "Skullcandy Grind Wired Headphone, Ill Famed Royal Blue", + "description" : "Skullcandy Grind Wired Headphone, Ill Famed Royal Blue", + "price" : "58", + "sku" : "Skullcandy-Grind-Wired-Headphone,-Ill-Famed-Royal-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/3f0bb654-cf8a-46c0-9ec1-820b24622101-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTE0MXxpbWFnZS9qcGVnfGltYWdlcy9oMTMvaDhmLzg4MTc5MjQ2MDM5MzQuanBnfDAxZDUxMTRlYjM3Yzc3Y2ZlNmI5NmIxNGFlMGEwYTMyMzEyYzdiMzBkMWExZDlmNDJkZGQ1Y2RkMjZiNjM5M2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Grind" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Ill Famed Royal Blue" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8e"), + "name" : "Sony WI-C400 Wireless Earphone, White", + "description" : "Sony WI-C400 Wireless Earphone, White", + "price" : "58", + "sku" : "Sony-WI-C400-Wireless-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-WI-C400-WHT-Headphone-and-Headsets-491431213-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjA3fGltYWdlL2pwZWd8aW1hZ2VzL2g1Yy9oNjYvOTA4NzcyMDM5MDY4Ni5qcGd8ZGI5NjljNWI0NWU1MDdmYWVlOTVmZDlkMTgwZTNhMDhiYTM2Y2YxNzgwMWFmYzdlODhiMzdjMmVhYWFlYmQ2Yg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f8f"), + "name" : "Jabra Sport Coach Wireless Bluetooth Earphone, Blue", + "description" : "Jabra Sport Coach Wireless Bluetooth Earphone, Blue", + "price" : "131", + "sku" : "Jabra-Sport-Coach-Wireless-Bluetooth-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/4578b2da-48bf-4da9-b226-86f3748189b5-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTA5MnxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDhjLzg4MDUwMDAwODU1MzQuanBnfDlmNWI0NDU5NzI2Mjk3YmQ2ODVlMGNkNWM4MTQxMjQ2MzA1YTM4YTkwZGQ5N2QzMWYyMGUxYjRjMjg2MjQxNmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 4 sets of EarGels
  • 3 sets of EarWings
  • 2 FitClips
  • Protective Pouch
  • USB cable
  • Jabra Sound App unique registration leaflet
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Sport Coach" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • NFC for easy pairing
  • Answer/end call
  • Reject call
  • Voice dialling
  • Last number redial
  • Volume control
  • Track control
  • Play/pause music
  • Voice guidance
  • Dolby sound enhancement via application
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "94" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f90"), + "name" : "Sony WI-C400 Wireless Earphone, Red", + "description" : "Sony WI-C400 Wireless Earphone, Red", + "price" : "58", + "sku" : "Sony-WI-C400-Wireless-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-WI-C400-RD-Headphone-and-Headsets-491431212-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjA1fGltYWdlL2pwZWd8aW1hZ2VzL2hkYi9oNmEvOTA4NzcyMTA0NjA0Ni5qcGd8Mjg5ZGY3NjAyNTM5NDVjZWUzZWZiYTkxNmNkYTRiZmVjYWZiMjc4YjA0OWI0MzczNDJjMWNhYTQ1NTE5ZGM1Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "USB cable: Micro-USB cable (approx. 50 cm / 19 3/4)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "4.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C400" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "35" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "8 Hz - 22000 Hz" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "20" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f91"), + "name" : "Philips SHQ1400LF Wired Earphone, Lime Yellow/White", + "description" : "Philips SHQ1400LF Wired Earphone, Lime Yellow/White", + "price" : "14", + "sku" : "Philips-SHQ1400LF-Wired-Earphone,-Lime-Yellow-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ1400LF-Headphone-and-Headsets-491362748-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQxfGltYWdlL2pwZWd8aW1hZ2VzL2g4Mi9oOGEvOTA4NzcyNDMyMjg0Ni5qcGd8YjNhMDhiY2Q3NDczMmZlODYxNjk3N2I5ZTM1YTlhZDk3MTIxOTRiZGJmZjViY2I3NjQ0ZTMxMjJhNDUyNmIxNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1400LF" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Yellow/White" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f92"), + "name" : "JBL Endurance Run Wired Earphone, Teal", + "description" : "JBL Endurance Run Wired Earphone, Teal", + "price" : "24", + "sku" : "JBL-Endurance-Run-Wired-Earphone,-Teal", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550855-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTc1fGltYWdlL2pwZWd8aW1hZ2VzL2g1ZS9oNjgvOTExNDUwODY4OTQzOC5qcGd8YzI5NzgyNTVlNmExOWVmZTZkYmMwMDA5NWI0NzI2ZTI5ZjlkNDQwY2YxNDMxN2Q4M2EzMWMzMmE0OGY1YzY0ZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Teal" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f93"), + "name" : "JBL Endurance Run Wired Earphone, Yellow", + "description" : "JBL Endurance Run Wired Earphone, Yellow", + "price" : "24", + "sku" : "JBL-Endurance-Run-Wired-Earphone,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550853-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTY4fGltYWdlL2pwZWd8aW1hZ2VzL2hiOS9oOTMvOTExNDUwMDEwNDIyMi5qcGd8MmU0ZWYwMGI4NjkzMjkyYjllMWRjM2IxYzUwNmU5NjY4ZTkwODAzZDc2N2IzMjI2YzY0MWU4ODMzNGY5NTMxMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f94"), + "name" : "JBL TUNE 500BT Wireless Headphone, White", + "description" : "JBL TUNE 500BT Wireless Headphone, White", + "price" : "56", + "sku" : "JBL-TUNE-500BT-Wireless-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT500BTWHT-Headphone-and-Headset-491431264-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg0OHxpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDIzLzkxMjA3NDI1NzIwNjIuanBnfDhjM2EzYjAxMmRiMDBjNDk2OTVmYTE1MTFjZDg2YWQ5N2UzNzNlZDI1MmZmMzRhOWE4NDk1M2Q1NTdjM2NiYzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE 500BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "155" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "16" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f95"), + "name" : "JBL TUNE 500BT Wireless Headphone, Black", + "description" : "JBL TUNE 500BT Wireless Headphone, Black", + "price" : "56", + "sku" : "JBL-TUNE-500BT-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT500BTBLK-Headphone-and-Headset-491431262-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzIxOXxpbWFnZS9qcGVnfGltYWdlcy9oOWMvaDJjLzkxMjA3NDA5MzM2NjIuanBnfDE2OTY3MzQ0NjEzY2E0MjhiYWUxZDdhOTQ1NDJjNzk2N2NjNDZiMmZjODJlZjg5MTViZDYyYjQ1N2MxMDlhZmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE 500BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "155" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "16" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f96"), + "name" : "JBL Endurance Run Wired Earphone, Blue", + "description" : "JBL Endurance Run Wired Earphone, Blue", + "price" : "24", + "sku" : "JBL-Endurance-Run-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550852-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NDkxfGltYWdlL2pwZWd8aW1hZ2VzL2g3ZC9oY2QvOTExNDUwMDc1OTU4Mi5qcGd8MmM5NWY3MWQyNTRmMmJlOTg4MzBlN2VjYmQ1MzUwZWEyYmM1MjM0NzAwODA2NTE3ODhjODg0NTI2MjUyNzMyNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f97"), + "name" : "Philips SHB3060BK/00 Wireless Headphone, Black", + "description" : "Philips SHB3060BK/00 Wireless Headphone, Black", + "price" : "46", + "sku" : "Philips-SHB3060BK-00-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/73e3c5af-75d9-4a39-8185-b25cf3e753e3-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODI2N3xpbWFnZS9qcGVnfGltYWdlcy9oNDQvaGZhLzg4MDQ5OTEyMzgxNzQuanBnfGJhZmU5ZmFjNjFlZjYzNGY1YzliZTY5OWY5NWE2YjBhMGRlYjY2NGEwNDNiMWQwZWM2M2VhODk0MmU0OWJiNDA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3060BK/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB cable
  • Quick start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 30 mW
  • Music playtime: 11 hours
  • Standby time: 200 hours
  • Talk time: 11 hours
  • " + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "141" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f98"), + "name" : "Philips SHE5305BK/00 Wired Earphone, Black", + "description" : "Philips SHE5305BK/00 Wired Earphone, Black", + "price" : "21", + "sku" : "Philips-SHE5305BK-00-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/f2b97562-e997-47c4-a517-d01f5ad70328-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDQ2M3xpbWFnZS9qcGVnfGltYWdlcy9oNzUvaDdlLzg4MDUwMTQwNDQ3MDIuanBnfGZjODJkOTliZWMzYTliMTViZmVmNDI4ZWU4N2IxNTM0YWZkODg2ZmNhMzE2NjI3YWViNzkwYWFhZjIwNjg5Zjc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE5305BK/00" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Speaker diameter: 8.6 mm
  • Maximum power input: 20 mW
  • Finishing of connector: gold-plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f99"), + "name" : "Philips SHQ6500BL Wireless Headphone, Blue", + "description" : "Philips SHQ6500BL Wireless Headphone, Blue", + "price" : "53", + "sku" : "Philips-SHQ6500BL-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ6500BL-Wireless-Headphone-Blue-491277057-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODQzOHxpbWFnZS9qcGVnfGltYWdlcy9oOGEvaDJjLzg5Mjc3OTM4NDAxNTguanBnfGE1YWExMzJhMWUzNmFlZjRlM2M4ZjljNWYxZGIyMTMzNDg4MGY1YmY4MzQwMjhmNzU3ZmVmZjg5NGNiMzNkZmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Quick start guide
  • USB cable
  • Ear fit stabilizer
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ6500BL" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Best for outdoor use
  • Bluetooth
  • Sweat/ water proof
  • Earbud
  • Acoustic system: Semi-closed
  • Call Management: Answer/End Call" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9a"), + "name" : "JBL C300SI Wired Headphone, Black", + "description" : "JBL C300SI Wired Headphone, Black", + "price" : "44", + "sku" : "JBL-C300SI-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C300SI-Wired-Headphone-Black-491281253-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzYwNHxpbWFnZS9qcGVnfGltYWdlcy9oNTMvaGM0Lzg5Mjc3MzcwODU5ODIuanBnfDJhNDIxYzg4OTA5MWM0MzVmZDQzZGMzNWE4N2U4MWE3NDdjZmM5MDZhNTE0ZDhmODI0NGE1MGRiNTQ1Y2IyMjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "C300SI" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power drivers deliver JBL sound with bass you can feel
  • Lightweight construction
  • Self-adjust ear-cups for a comfortable fit
  • 3.5mm gold plated connector for high quality music reproductions
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9b"), + "name" : "Sony MDR-HW300K Wireless Headphone, Black", + "description" : "Sony MDR-HW300K Wireless Headphone, Black", + "price" : "116", + "sku" : "Sony-MDR-HW300K-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-HW300K-Wireless-Headphone-Black-491134889-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODM5NHxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaGM1Lzg5Mjc4Mzc5NDU4ODYuanBnfDBmMDNiMTQ3ZTAzNmFkNjJlM2NhZWFiNThlYzliNTY5YzhkOWUwNWVjZTdlZmI1NzM1NmY1MjJiOWQxOWU3YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Frequency Response: 10Hz-22" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-HW300K" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • AC Power Adaptor(1)
  • Connection Cable (1)
  • USB Cable (1)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9c"), + "name" : "Sony MDRXB50AP/LQIN Wired Headphone, Blue", + "description" : "Sony MDRXB50AP/LQIN Wired Headphone, Blue", + "price" : "37", + "sku" : "Sony-MDRXB50AP-LQIN-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDRXB50AP-LQIN-Wired-Headphone-Blue-491134887-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDM5NnxpbWFnZS9qcGVnfGltYWdlcy9oODMvaGNlLzg5Mjc4MzM0ODk0MzguanBnfDIzOGUwOThiZjhhZDJjMzg1ZjBkMjE3YWRkYWViN2E4MDEyY2I2ZjZiZjkzMGQ0YmQ1M2E5MTRiZDM3ODBjNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDRXB50AP/LQIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Hybrid silicone rubber earbuds: SS (1 line) (2)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Type: Electret condenser
  • Open circuit voltage level: -40 dB (0 dB = 1 V/Pa)
  • Effective frequency range: 20 Hz - 20" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9d"), + "name" : "Jabra PLAY Wireless Headset, White", + "description" : "Jabra PLAY Wireless Headset, White", + "price" : "48", + "sku" : "Jabra-PLAY-Wireless-Headset,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-PLAY-Wireless-Headset-White-491072802-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzg5OXxpbWFnZS9qcGVnfGltYWdlcy9oM2IvaDQwLzg5Mjc2MjM3MDg3MDIuanBnfGE3MzY3OTIwZDc2NzJmYTg5NGJmM2IwYzQ4Zjk1NzIyY2MzNzY0YjNhYjI0MGM2ZDlmNWM4YWI1NDI4YjE5OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Rubber USB Cable
  • Eargel Pack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "PLAY" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Clip Wearing Style
  • USB Charging
  • Mute function
  • Hifi Frequency Response
  • Auto Pairing
  • AVRCP
  • Talk Time: Up to 6 hours
  • Standby Time: Up to 192 hours
  • Music Play Time: 6 hour
  • Supports Bluetooth for wireless connectivity
  • MultiUse
  • Play/Pause music
  • Frequency Response: Hifi
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "10.6" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9e"), + "name" : "Sony MDR-XB450 Wired Headphone, Black", + "description" : "Sony MDR-XB450 Wired Headphone, Black", + "price" : "29", + "sku" : "Sony-MDR-XB450-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB450-Wired-Headphone-Black-491064847-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTM2OXxpbWFnZS9qcGVnfGltYWdlcy9oY2QvaGZmLzg5Mjc4MTU3MjkxODIuanBnfDc1NDgyMDkxNjZhMmIxMTI1OTM2NTk1NzJlZmU0NmVmNjFhNWQxNzcxNTZlN2VjMjBhMjcyMjU3OTI0YmUyMDc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Weight", + "attributeValue" : "165" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30 mm driver reproduces powerful bass
  • Plug : Gold-plated L-shaped stereo mini
  • Electro Bass Booster enhances deep beats without distorting vocals
  • Bass Booster delivers powerful bass
  • Swivel design for listening on the go
  • Cushioned earpads for extra comfort
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637f9f"), + "name" : "Skullcandy 2XL Shakedown X5SHFZ-819 Wired Headphone, White", + "description" : "Skullcandy 2XL Shakedown X5SHFZ-819 Wired Headphone, White", + "price" : "22", + "sku" : "Skullcandy-2XL-Shakedown-X5SHFZ-819-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-2XL-Shakedown-X5SHFZ-819-Wired-Headphone-White-491064774-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTc4MXxpbWFnZS9qcGVnfGltYWdlcy9oODcvaDNkLzg5Mjc4NjE3MzU0NTQuanBnfGUzNWVkYzQzYTJkMWU5YjU3ZDMzM2EwZWRlZjU5N2M1NDkzYzZmYzMzNGQ5NzY1YjkzODQ1NTI5M2I0NzM0YWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Shakedown" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Model", + "attributeValue" : "X5SHFZ-819" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm gold plated Plug
  • Driver Diameter: 30 mm
  • Max. Input Power: 100 mW
  • Magnet Type: NdFeb
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa0"), + "name" : "Sony MDR-XB450 Wired Headphone, Red", + "description" : "Sony MDR-XB450 Wired Headphone, Red", + "price" : "32", + "sku" : "Sony-MDR-XB450-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491167020-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0OTc4N3xpbWFnZS9wbmd8aW1hZ2VzL2gzZi9oMWIvODkyNzg3NzEzNjQxNC5wbmd8ZmU5NDczNzgzMWVlZGJkNmJkYzNjNjIxN2Q3MjQyMzRhMjU4ZjUxM2UxMmQxZDMwMDU2ZTIzN2EwNjI1M2EzOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm dynamic driver unit for powerful sound
  • Portable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa1"), + "name" : "Philips SHB7000WT/00 Wireless Headphone, White", + "description" : "Philips SHB7000WT/00 Wireless Headphone, White", + "price" : "58", + "sku" : "Philips-SHB7000WT-00-Wireless-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB7000WT-00-Wireless-Headphone-White-491163851-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjU5NHxpbWFnZS9qcGVnfGltYWdlcy9oM2UvaDUwLzg5Mjc4NTM2NzQ1MjYuanBnfDg5ZjI5MzE1ZDJiM2EwZjQ3NzQwZGE1ODQwMDU2N2YyMjk3Njk0MzM0ZTM0ZTJmMmE2YjY5ZDY2ODExODBmYzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB7000WT/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB cable charging
  • 1.2 m audio cable
  • Quick start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth profiles: A2DP" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "176" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa2"), + "name" : "Apple Headset, White", + "description" : "Apple Headset, White", + "price" : "61", + "sku" : "Apple-Headset,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Headset-White-490540759-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzk0MHxpbWFnZS9qcGVnfGltYWdlcy9oODMvaDJjLzg5Mjc2MTgyNjkyMTQuanBnfDM1OWFhMjU0N2I0YWQxODZkMGM2NjY3NjE5ZmU4YzgzOTg0MzcyOTNkMmNmNTcwNTNhMzRkMmRmMWMwNWYzNTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "23" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "109" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "10.2" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Remote and Mic
  • Carrying Case
  • Three Sets of Silicone Ear Tips (Small" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Drivers: Custom Two-Way Balanced Armature (Woofer and Tweeter In Each Earpiece)
  • Cable Length: 1065 mm from Audio Jack to Splitter; 330 mm to Earpiece
  • Four-Conductor 3.5 mm Audio Jack
  • Compatibility Information: the Remote and Mic are Supported Only by iPod Nano (4Th Generation or Later)" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa3"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Navy Blue", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Navy Blue", + "price" : "211", + "sku" : "Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Apple-devices,-Navy-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Apple-devices-Navy-Blue-491228934-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDYzM3xpbWFnZS9qcGVnfGltYWdlcy9oZmUvaDBhLzg5Mjc2OTk4NjE1MzQuanBnfGNjNDRmMzM1ZmYyZTQ0NzA0OWI4MDI2YmM0NzA5NGRkODVjNGEyNjI3ZjEwNGIzYjU4YmY3OGEyOTcyNGU3YWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Apple" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Navy Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa4"), + "name" : "Jabra Sport Coach Wireless Bluetooth Earphone, Red", + "description" : "Jabra Sport Coach Wireless Bluetooth Earphone, Red", + "price" : "131", + "sku" : "Jabra-Sport-Coach-Wireless-Bluetooth-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Sport-Coach-Wireless-Bluetooth-Earphone-Red-491228919-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzA0NXxpbWFnZS9qcGVnfGltYWdlcy9oN2UvaDA4Lzg5Mjc2ODM4MDUyMTQuanBnfDkzYWY1ZjMyMDZmZjQ4Mjg2ZGQ5MmU5YWUzNmFkMmE3OThkNTYyOGJmYmYyMmU0MTFiODZhNzQ2OTc1OGUwNGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 4 sets of EarGels
  • 3 sets of EarWings
  • 2 FitClips
  • Protective Pouch
  • USB cable
  • Jabra Sound App unique registration leaflet
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Sport Coach" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • NFC for easy pairing
  • Answer/end call
  • Reject call
  • Voice dialling
  • Last number redial
  • Volume control
  • Track control
  • Play/pause music
  • Voice guidance
  • Dolby sound enhancement via application
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "94" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa5"), + "name" : "Sennheiser PX 30 II Headphone, Black", + "description" : "Sennheiser PX 30 II Headphone, Black", + "price" : "22", + "sku" : "Sennheiser-PX-30-II-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491004798-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjQ0MXxpbWFnZS9qcGVnfGltYWdlcy9oNzQvaDU4Lzg5Mjc4MjE5NTUxMDIuanBnfDcwOTNiZjFjMzY5ZmJlNGZiZWQwZGNmZDNmYjY3ODRiMWVmMDdjMDc5YWJjNTkyNjRmNDkzMjIxNmRiN2VhY2U", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "PX" + }, + { + "attributeName" : "Model", + "attributeValue" : "30 II" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Weight", + "attributeValue" : "65" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Transducer principle: Dynamic" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa6"), + "name" : "Jabra Talk Wireless Bluetooth Headset, Grey", + "description" : "Jabra Talk Wireless Bluetooth Headset, Grey", + "price" : "28", + "sku" : "Jabra-Talk-Wireless-Bluetooth-Headset,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/1f0bff29-7afb-443f-9c1f-40fc056b7edc-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzE0MHxpbWFnZS9wbmd8aW1hZ2VzL2hmNi9oODYvODgwMjkwNzI1ODkxMC5wbmd8MDU0NTI2ZTM2MzU0Mzc1MGJmNmFlMmQ0NjNiYmM2ZGFmZGE1MDEzODllOTIxNGYyYTlkMTI2MzZiOTU3Yjg3Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa7"), + "name" : "Philips SHL3060BK Wired Headphone, Black", + "description" : "Philips SHL3060BK Wired Headphone, Black", + "price" : "16", + "sku" : "Philips-SHL3060BK-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/ee55de6c-8c22-4711-8ccb-01bab1abc7dc-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTc3N3xpbWFnZS9qcGVnfGltYWdlcy9oNzMvaGE1Lzg4MDQ5OTM1MzE5MzQuanBnfDEwMTgxNmIzZjU0NzlkMWE3YWYyODE1ZjQyODZhMzA3ZDRkYWJiZDU0YzY0NGNiMzg2ZTAwYTY2ZTUxYjE3ODE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3060BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "125" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa8"), + "name" : "B&O BeoPlay Form 2i Wired Headphone, Grey", + "description" : "B&O BeoPlay Form 2i Wired Headphone, Grey", + "price" : "182", + "sku" : "B&O-BeoPlay-Form-2i-Wired-Headphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/296b9db8-8e14-4038-8124-a4c557b9af11-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMjc4OHxpbWFnZS9qcGVnfGltYWdlcy9oNGIvaDI5Lzg4MTc5MjU0NTU5MDIuanBnfDk4ZmJjMTc0MjUzY2MxZjI3ZTA2ZDdmODEzZDE4OGQ3OWZkZDg3NTcyN2U4MjlmZWU5ZDcyNjQxZDlmMDc4OWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "Form 2i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "90" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fa9"), + "name" : "Bang & Olufsen Form 2i Wired Headphone, Blue", + "description" : "Bang & Olufsen Form 2i Wired Headphone, Blue", + "price" : "182", + "sku" : "Bang-&-Olufsen-Form-2i-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bang-Olufsen-Form-2i-Wired-Headphone-Blue-491159197-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY5OXxpbWFnZS9wbmd8aW1hZ2VzL2hlZS9oYjEvODkyNzg0MDU2NzMyNi5wbmd8NTYzZTk4NDU3ZTgwMGM4M2UwMGY5MTE2Y2FiOTcyMzhmMjMyNDZlZTkyNmJkZDUxYzU3N2RlMzVjZmVlNWExMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Form 2i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "90" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Portable Quality
  • True Design Icon
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bang", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637faa"), + "name" : "Sony SBH52 Smart Wireless Bluetooth Headset, Black", + "description" : "Sony SBH52 Smart Wireless Bluetooth Headset, Black", + "price" : "109", + "sku" : "Sony-SBH52-Smart-Wireless-Bluetooth-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/cda3f60c-1068-42b8-9748-36ccb2f2d813-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODc4M3xpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDIxLzg4MDcxMTE1NTcxNTAuanBnfGUyZjlmMzM0YWJkYWJmY2Q0NWI4M2U5OTZlZTQ0ZmQ4YjYzYTk4MjAzY2Q0YjcyMzkyOTZlYTgzZGZmOGMzZWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SBH52" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth 3.0
  • NFC
  • Multipoint connectivity
  • FM radio with RDS
  • Android app enabled
  • HD Voice ready
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fab"), + "name" : "Sony SBH20 Stereo Bluetooth Wireless Headset, Black", + "description" : "Sony SBH20 Stereo Bluetooth Wireless Headset, Black", + "price" : "39", + "sku" : "Sony-SBH20-Stereo-Bluetooth-Wireless-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-SBH20-Stereo-Bluetooth-Wireless-Headset-Black-491158981-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIxMHxpbWFnZS9wbmd8aW1hZ2VzL2g5OC9oNGQvODkyNzYyNDY5MTc0Mi5wbmd8NDllNjk0ZjQ4NmYwMzA1MzRhMmY2ZDExYTk0N2FkMDJkNWRkOTNmYmYzYTgxMWNiOGJkNTMxMDJhNTlhYzhmMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SBH20" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12.3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Micro USB charger connector
  • 3.5 mm headphone connector
  • Speaker type: 9.2 mm dynamic" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fac"), + "name" : "Jabra Sport - Corded Wired Headphone, Yellow/Black", + "description" : "Jabra Sport - Corded Wired Headphone, Yellow/Black", + "price" : "58", + "sku" : "Jabra-Sport---Corded-Wired-Headphone,-Yellow-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491134824-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDQ5MXxpbWFnZS9qcGVnfGltYWdlcy9oMDAvaDYyLzg5Mjc4MzgyNzM1NjYuanBnfGNjZmM1ZDQzNWVmODJkNWI5NzIyM2FhNTAzMTE5NjQxNjBjNzdjYzEyNjM2MGRlNDM2NmIyYWZlODhmMTAyZGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "Sport - Corded" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow/Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Phone Adapter Cable
  • Extension cable
  • 3 different pairs of Ultimate Comfort Eargels
  • Quick Start Manual
  • Carry case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Water Resistant
  • Life Proof
  • Listen to music and talk
  • Adjustable earhooks
  • Microphone wind-noise protection
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fad"), + "name" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Blue", + "description" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Blue", + "price" : "34", + "sku" : "Amkette-Trubeats-Pulse-Wireless-Bluetooth-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/96c1d4c8-85ce-4d7e-823c-9cece35cfeee-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2NTI3NXxpbWFnZS9wbmd8aW1hZ2VzL2g2OS9oZDIvODgwMjgwNzA4NzEzNC5wbmd8MTYyMjUyNjljNWMzNDQ1NGJmOTgyMTExN2Y3ODk5MmM0MWNkMDVhZjc4MDYyMDY1NjNlYmQyZjZkNjUyNmYyZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Battery: 120 mAh
  • Wireless Range: Upto 10m
  • " + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Micro USB Charging Cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fae"), + "name" : "Philips O'Neill SHO3305BOARD/00 Wired Headphone, Blue/Red", + "description" : "Philips O'Neill SHO3305BOARD/00 Wired Headphone, Blue/Red", + "price" : "29", + "sku" : "Philips-O'Neill-SHO3305BOARD-00-Wired-Headphone,-Blue-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-O-Neill-SHO3305BOARD-00-Wired-Headphone-Blue-Red-491073383-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDE5NXxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaGJkLzg5Mjc3ODcwODk5NTAuanBnfDg3NWNjZWVmMGJhNDgwODljNTljZTA1NGJhNzhiYzRjYjdmZTRiYzU4YThjMTJiOTdkMzBkMWM1ODYzZDJlNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "O'Neill" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHO3305BOARD/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "118" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Red" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type - Neodymium
  • Maximum power input - 30 mW
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637faf"), + "name" : "JBL C150SI Wired Headphone, Black", + "description" : "JBL C150SI Wired Headphone, Black", + "price" : "29", + "sku" : "JBL-C150SI-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/6f3664f2-71b4-462a-8c3d-874c2a779013-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDM5NXxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDgzLzg4MDY0MzUzNTY3MDIuanBnfGI3ZjAyZWE2Mjg2ZDc0MDYwMjQwODNhMTM2MWU2YWI4MjYwNGZjNWEyYzE2OWU2Mzg4NWE0OGZiNzE4NTkwZDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C150SI" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb0"), + "name" : "Skullcandy JIB Wired Earphone, Black/Green", + "description" : "Skullcandy JIB Wired Earphone, Black/Green", + "price" : "15", + "sku" : "Skullcandy-JIB-Wired-Earphone,-Black-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wired-Earphone-Black-Green-491315283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU5NnxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaGJiLzg5Mjc3MDkwMzY1NzQuanBnfDE3ZTAxOWUyMzI4Y2Q0OGVlZDZhODFiZmMyOGEzMGY5MWNhOGU1MzQzZTIwZTQ4NWY3NmU5OGQxNTVmYWE5NzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound technology for rich" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb1"), + "name" : "Sony MDR-EX100LP/R Wired Headphone, Red", + "description" : "Sony MDR-EX100LP/R Wired Headphone, Red", + "price" : "15", + "sku" : "Sony-MDR-EX100LP-R-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX100LP-R-Wired-Headphone-Red-491042550-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTcxM3xpbWFnZS9wbmd8aW1hZ2VzL2gyOC9oMTMvODkyNzgzMzE2MTc1OC5wbmd8MjRlMGE4YmIzNzNmMTAzMTlhMjk5NjU3YjA2NWUxODYxMDEzMGUyYzFlN2IyOTljNTI5MTBjZGVmMDE1YzI4Nw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX100LP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Headphone Cord Length Adjuster X1
  • Hybrid Silicone Earbuds (Ss X2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet: Neodymium
  • Plug: Gold-plated L-shaped Stereo Mini
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb2"), + "name" : "Logitech H340 Headset, Black", + "description" : "Logitech H340 Headset, Black", + "price" : "31", + "sku" : "Logitech-H340-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Logitech-H340-Headset-Black-491018323-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjk5MnxpbWFnZS9wbmd8aW1hZ2VzL2hmNy9oZjUvODkyNzYxMzk0MzgzOC5wbmd8ZWYzYTRiNzE5OGM0N2U5NzAyMTQ0NjZmZDk2MjhmZDY5OGYyY2U3NDcwYTI2NTIxN2EyOWQ3NTJkYjU4MGFjZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "H340" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • System Requirements: Windows or Mac OS" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • User Documentation
  • " + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Logitech", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb3"), + "name" : "Skullcandy Uprock S5URDZ-074 Wired Headphone, White", + "description" : "Skullcandy Uprock S5URDZ-074 Wired Headphone, White", + "price" : "29", + "sku" : "Skullcandy-Uprock-S5URDZ-074-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/491009089-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTk0OXxpbWFnZS9wbmd8aW1hZ2VzL2gyZi9oNGUvODkyNzg1ODQ1ODY1NC5wbmd8YTY5NzhkN2NjOTc4NGM4ZGUwN2Q1ZGU2NDFjMzNjNzJlNzgwOWMyNGFlYTU4OTE5MjlhMzYxMDE4OThkN2I0Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Uprock" + }, + { + "attributeName" : "Model", + "attributeValue" : "S5URDZ-074" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb4"), + "name" : "Skullcandy Uprock S5URFZ-033 Wired Headphone, Black", + "description" : "Skullcandy Uprock S5URFZ-033 Wired Headphone, Black", + "price" : "29", + "sku" : "Skullcandy-Uprock-S5URFZ-033-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491009085-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDU3MnxpbWFnZS9wbmd8aW1hZ2VzL2hjYS9oODgvODkyNzg2MTA4MDA5NC5wbmd8OTI5MTc4ZDM5YzE2Nzk2ODA3NDI1ZWJhYTI0OWQ3NDQ1MmE2YTgxMjdlM2MwMDE5NzczZjcwYmU2NWZkYmM4OQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Uprock" + }, + { + "attributeName" : "Model", + "attributeValue" : "S5URFZ-033" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb5"), + "name" : "Sennheiser HD 461G Wired Headphone, Black", + "description" : "Sennheiser HD 461G Wired Headphone, Black", + "price" : "87", + "sku" : "Sennheiser-HD-461G-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-461G-Wired-Headphone-Black-491005019-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDQ2NnxpbWFnZS9wbmd8aW1hZ2VzL2hiZi9oYzQvODkyNzg4OTU4ODI1NC5wbmd8M2I2NzY1ZjI2MGQyMjcyNzMwOTE5M2MyMDQxMzMxOGYwNzBhYTA0YjExMzEzZGI0OWU3MDI3ZjQ1NDg2YzMxOQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 461G" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfortable fit due to the ergonomic design
  • Improved freedom of movement and convenience thanks to the detachable" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Angled plug HD 461G
  • 1.4m audio cable with integrated smart remote and microphone
  • Manuals
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb6"), + "name" : "Sennheiser HD 461i Wired Headphone, Black", + "description" : "Sennheiser HD 461i Wired Headphone, Black", + "price" : "87", + "sku" : "Sennheiser-HD-461i-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-461i-Wired-Headphone-Black-491005018-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDY4MnxpbWFnZS9qcGVnfGltYWdlcy9oNjUvaDUxLzg5Mjc2NTk3NTM1MDIuanBnfDQ5YTdiMzQyYzNjZjI1ZDU4MDU4MGJmMWViZmU3NzJmNWVkMGU5MDQxZGM4MGEyMTg1M2YzZTRmOThhODhlM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 461i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfortable fit due to the ergonomic design
  • Improved freedom of movement and convenience thanks to the detachable" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Straights plug HD 461i
  • 1.4m audio cable with integrated smart remote and microphone
  • Manuals
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb7"), + "name" : "Sennheiser HD 4.30G Wired Headphone, Black", + "description" : "Sennheiser HD 4.30G Wired Headphone, Black", + "price" : "116", + "sku" : "Sennheiser-HD-4.30G-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-HD-4.30G-Wired-Headphone-Black-491320580-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzcxOHxpbWFnZS9qcGVnfGltYWdlcy9oNWIvaDExLzg5Mjc2NTc5ODQwMzAuanBnfDAxNjhkMjJkYjkzYWNiMGM3MGY1NTcwYTlmZDFkODBjZGMxNzRhNTE1NzMxYjY1MTZhM2QyYmJiMmYzYjliZTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "HD 4.30G" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Speaker Distortion", + "attributeValue" : "0.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RCA 4.30 - 1.4m detachable single-sided cable with 3-button remote/ 3.5 mm plug
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb8"), + "name" : "Plantronics ML2 Bluetooth Wireless Headphone, Black", + "description" : "Plantronics ML2 Bluetooth Wireless Headphone, Black", + "price" : "18", + "sku" : "Plantronics-ML2-Bluetooth-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/52777069-605c-4515-b933-39a85a92735f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDYxN3xpbWFnZS9wbmd8aW1hZ2VzL2hkNi9oNDgvODgwMjkzMTA0ODQ3OC5wbmd8ZDU2OGQzZDc5MzRjMzc3YzRkM2M4OTczNmQ3M2E4YjVlYzUzNzEzMWJiMjFkNTkwNjQ3OTBlMjYyYjJlNDk5OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Reduces noise and echo
  • Pairs with two phones
  • Fits either ear comfortably
  • Optional earloop
  • Voice dialing (Smartphone dependent)
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "ML2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Plantronics" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Plantronics", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fb9"), + "name" : "Samsung HM1700 Wireless Headphone, Black", + "description" : "Samsung HM1700 Wireless Headphone, Black", + "price" : "34", + "sku" : "Samsung-HM1700-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/2152b69d-2f87-4fff-91ca-dd44a3824416-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzQ0MnxpbWFnZS9wbmd8aW1hZ2VzL2gwZi9oZWEvODgwMjkyMzMxNTIzMC5wbmd8NWNiMDJiZTIyNTg0ZTE4ZTEzZGUwNDVhYTJjMzcwOWMzNTExZDNhNjE4N2FhMDE4MzQ5NmI2ZWQyY2QwNWY2MA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "10" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk Time: Up to 9 hours
  • Play Time: Up to 8 hours
  • Standby Time: Up to 350 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "HM1700" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Two Removable Earhooks
  • Three Ear Gel
  • Micro USB Charger
  • User Manual
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fba"), + "name" : "Jabra Drive Wireless Headphone, Black/ Grey", + "description" : "Jabra Drive Wireless Headphone, Black/ Grey", + "price" : "58", + "sku" : "Jabra-Drive-Wireless-Headphone,-Black--Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/7895fed2-b441-4be2-a4fa-37898d19f32a-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzYwNHxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaDM1Lzg4MDI5NDk3OTE3NzQuanBnfGM5ZTBiOTEzZTgzODNmODY1NTRjZjAxM2Y1M2NiMWU4ZTMwYzQxOTA3MzdkODJhYmJjNTZjYzQwMGZmZDhkMWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbb"), + "name" : "Samsung BHM1100 Wireless, Black", + "description" : "Samsung BHM1100 Wireless, Black", + "price" : "15", + "sku" : "Samsung-BHM1100-Wireless,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/99cd805d-67aa-42cc-a277-6e28b0039960-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTUzM3xpbWFnZS9wbmd8aW1hZ2VzL2hhYy9oZGMvODgwMjg5OTcyMjI3MC5wbmd8Mzk0YzNjMTk1M2JlOGI0OGIyODU0NTJiMGI4MGFjMzE4NGNhMTg2NGYxNWYxNDU5ZTJiMGJlMmM2NmEyNjliYg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth: BT ver. 2.1 + EDR
  • Bluetooth Profiles: HSP1.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "BHM1100" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbc"), + "name" : "Plantronics Discovery 975 Wireless Headphone, Black", + "description" : "Plantronics Discovery 975 Wireless Headphone, Black", + "price" : "80", + "sku" : "Plantronics-Discovery-975-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/80fd9a41-7822-401a-81b2-137ad4dbb5e7-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk0OXxpbWFnZS9qcGVnfGltYWdlcy9oZWYvaGRiLzg4MDI5MjY5MTk3MTAuanBnfGU0ZGZhMjcyZmU3MGM4MGY1NmUxNWY3ZTMzYjIzMmM0NWVjMzYzMDNhNzY2N2FlYWU3M2Q4ZTNiNjJjYWEzMDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Talk Time: Up to 5 hours from one charge
  • Standby Time: Up to 7 days from one charge
  • Audio IQ2 Technology: Two omni-directional microphones
  • Active Digital Signal Processing (DSP) Internal
  • Adaptive 20-band equalizer Acoustic echo cancellation
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "Discovery 975" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Plantronics" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Plantronics", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbd"), + "name" : "Sennheiser CX 213 Wired Headphone, White", + "description" : "Sennheiser CX 213 Wired Headphone, White", + "price" : "19", + "sku" : "Sennheiser-CX-213-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-213-Wired-Headphone-White-491181102-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODkzN3xpbWFnZS9qcGVnfGltYWdlcy9oMDcvaDY4Lzg5Mjc4NjU5OTUyOTQuanBnfDM5NTg4MDQ4NDMyZWJhZmQxNWJiMTBkYTQ0YzVkMDY4NzY4MzIxMDBmYTg5MThiZDQxNjVmOTgyMzIxMTIyNDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 213" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbe"), + "name" : "JBL T100A In-Ear Wired Headphone, Red", + "description" : "JBL T100A In-Ear Wired Headphone, Red", + "price" : "15", + "sku" : "JBL-T100A-In-Ear-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T100A-In-Ear-Wired-Headphone-Red-491173093-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjcxOHxpbWFnZS9wbmd8aW1hZ2VzL2hiMS9oYTkvODkyNzg1NDMyOTg4Ni5wbmd8ZWRlMDBkNTBiYjNkNGY3ZmMwZmUzM2YxMDg2NjY4NGI1N2IwZWM4MDVlMTE1Y2M1YzgwM2QxNzkwYTIwMWI0Mg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T100A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of silicone ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single button remote/mic
  • PureBass performance
  • High sensitivity" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fbf"), + "name" : "JBL J303BT Wireless Bluetooth Headset, Black", + "description" : "JBL J303BT Wireless Bluetooth Headset, Black", + "price" : "29", + "sku" : "JBL-J303BT-Wireless-Bluetooth-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/040d4559-22c8-4103-8759-2c6c26cb8fa7-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTQ2MHxpbWFnZS9qcGVnfGltYWdlcy9oOWEvaDBkLzg4MTk0NTEwMDI5MTAuanBnfGZhYTZhYzM4ZDhmY2E2ZWFhMGRmNzY1YzE1M2I5MDJkNTU3NmEwMGYxMTFjYzZjNjg5NTA3NzFlODM2ZGRmZjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise reduction for clear voice
  • A2DP listening to music or audio book
  • Multipoint to pair with two phones
  • Bluetooth Range: 10 meters
  • Talk Time: 5 hours
  • Standby Time: 168 hours
  • Charging Time: 2 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "J303BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc0"), + "name" : "Skullcandy Method S2CDGY-411 Wired Headphone, Yellow", + "description" : "Skullcandy Method S2CDGY-411 Wired Headphone, Yellow", + "price" : "37", + "sku" : "Skullcandy-Method-S2CDGY-411-Wired-Headphone,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/491167110-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI3OXxpbWFnZS9wbmd8aW1hZ2VzL2gzZC9oMWQvODkyNzg2MDQyNDczNC5wbmd8M2NjOTIyZjY0Y2E5ZTAzMTI3ZmJmYTAyMTZhODNhOTZhNmNjZTBjNjQ1NWJiMzE2ODVlMDVmMzA3MDRmNGEzZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDGY-411" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc1"), + "name" : "Skullcandy Method S2CDGY-401 Wired Headphone, Blue", + "description" : "Skullcandy Method S2CDGY-401 Wired Headphone, Blue", + "price" : "37", + "sku" : "Skullcandy-Method-S2CDGY-401-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/65f2a8ea-5689-4c48-a258-cdf55f2370ea-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDY4NnxpbWFnZS9qcGVnfGltYWdlcy9oZWUvaGRlLzg4MDQ5ODk5Mjc0NTQuanBnfDg5M2IzNjE4NDdjMDhiNGMyYTE5NjY1YTJkZTY1NWNhOGY4OGQwOTIxOWU4YWIwZjU3ZTQ2NDE1ZjM4MTNlZTM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Method S2CDGY-401" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc2"), + "name" : "Skullcandy 2XL Spoke X2SPFY-835 Wired Headphone, Black", + "description" : "Skullcandy 2XL Spoke X2SPFY-835 Wired Headphone, Black", + "price" : "16", + "sku" : "Skullcandy-2XL-Spoke-X2SPFY-835-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491167099-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzYxM3xpbWFnZS9wbmd8aW1hZ2VzL2gzNi9oNzMvODkyNzg2NDM1Njg5NC5wbmd8MzQxNTM3YmRlYTQyMWIyNGEwZDA5ZTE4NTMyZTA5OTU0Y2U4MDdmNjY3Mjc4YjkzM2YzMTU4ZTRhYjdmOWMzYg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spoke" + }, + { + "attributeName" : "Model", + "attributeValue" : "X2SPFY-835" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm gold plated plug
  • Max. Input Power: 30 mW
  • Driver Diameter: 10 mm
  • Magnet Type: NdFeb
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc3"), + "name" : "Skullcandy 2XL Spoke X2SPFY-839 Wired Headphone, Blue", + "description" : "Skullcandy 2XL Spoke X2SPFY-839 Wired Headphone, Blue", + "price" : "16", + "sku" : "Skullcandy-2XL-Spoke-X2SPFY-839-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-2XL-Spoke-X2SPFY-839-Wired-Headphone-Blue-491167098-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU0N3xpbWFnZS9qcGVnfGltYWdlcy9oMGQvaDJhLzg5Mjc4NzAyNTUxMzQuanBnfGFhYzFlZGY1OGQyZTE1Njk2MWY3ODRhNDJiYzg5ZDhlZDUxN2JjNmIyYTE3MTljYzAzODdhYzRhYjliNWRiZjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spoke" + }, + { + "attributeName" : "Model", + "attributeValue" : "X2SPFY-839" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm gold plated plug
  • Driver Diameter: 10 mm
  • Max. Input Power: 30 mW
  • Magnet Type: NdFeb
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc4"), + "name" : "Jabra Step Wireless Headset, Black", + "description" : "Jabra Step Wireless Headset, Black", + "price" : "58", + "sku" : "Jabra-Step-Wireless-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Step-Wireless-Headset-Black-491167096-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc4MHxpbWFnZS9wbmd8aW1hZ2VzL2hiMC9oYTkvODkyNzYyNjMzMDE0Mi5wbmd8NmJjNjQzMmQ1ODg5OGRhY2NhNDRjYzk5YjE5YjQ4M2NkMDJiNWVhZDliNzQ5YTVlYTQwM2QyNDgxYzg3NmU0Zg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earhook Pack
  • Rubber USB Cable
  • Eargel Pack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Step" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Bluetooth version: 4.0
  • AVRCP
  • Talk Time: Up to 4 hours
  • Standby Time: Up to 144hour(s)
  • USB Charging
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.44" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc5"), + "name" : "Sony MDR-XB250 Wired Headphone, Violet", + "description" : "Sony MDR-XB250 Wired Headphone, Violet", + "price" : "22", + "sku" : "Sony-MDR-XB250-Wired-Headphone,-Violet", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB250-Wired-Headphone-Violet-491167024-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjI5MXxpbWFnZS9wbmd8aW1hZ2VzL2g5NS9oZTAvODkyNzg3MzUzMTkzNC5wbmd8OGE2OTBmZjFkNzEzMjJjZjE2YWY1OTFlMDQzYzcwOGM4OTMwM2YyMjc2YjhlYmRkZTZiODQxYzk1MDI1ODVkMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB250" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Violet" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30 mm dynamic driver unit for powerful sound
  • Swivel folding-style for listening on the go
  • Cushioned ear pads for long-wearing comfort
  • Double-sided cord prevents tangles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc6"), + "name" : "Sony MDR-XB250 Wired Headphone, Black", + "description" : "Sony MDR-XB250 Wired Headphone, Black", + "price" : "22", + "sku" : "Sony-MDR-XB250-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB250-Wired-Headphone-Black-491167023-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzE2NnxpbWFnZS9wbmd8aW1hZ2VzL2hjNy9oN2YvODkyNzg4NjMxMTQ1NC5wbmd8ZDUzZmZlZjZjOTVkYTRkYmM2MDFlZWM2MWRmMmEyOTA0NTdhODAyMjU0MDZmNjZiOTRjMTQ3N2IyNzg0YmE1Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB250" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30 mm dynamic driver unit for powerful sound
  • Swivel folding-style for listening on the go
  • Cushioned ear pads for long-wearing comfort
  • Double-sided cord prevents tangles
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc7"), + "name" : "Sony MDR-XB450 Wired Headphone, Blue", + "description" : "Sony MDR-XB450 Wired Headphone, Blue", + "price" : "32", + "sku" : "Sony-MDR-XB450-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB450-Wired-Headphone-Blue-491167021-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjY5NHxpbWFnZS9wbmd8aW1hZ2VzL2hjYy9oYzIvODkyNzg2NDY4NDU3NC5wbmd8OGRkNzQyNWU4MGEzMzUwNzczYWNjZWZmYmMxMDdjYjQzNzMzMmFjOTNhNWEwZmRmYjFmYzJiYjBjODE2Y2MzMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB450" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 30mm dynamic driver unit for powerful sound
  • Portable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc8"), + "name" : "Sony Active Series MDR-AS200/L Wired Earphone, Orange", + "description" : "Sony Active Series MDR-AS200/L Wired Earphone, Orange", + "price" : "12", + "sku" : "Sony-Active-Series-MDR-AS200-L-Wired-Earphone,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/491166863-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc0OXxpbWFnZS9wbmd8aW1hZ2VzL2g2Ny9oNDAvODkyNzgwNzYwMjcxOC5wbmd8ZjQ5MjFjOTgwNTA2MWJjOTU0OGM0MzAyNTUzODEzNWQwYzc2ZjY5NGZjMzU5NTY5OWYwYTkwMzlkYzY2NzA2Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Active Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS200/L" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip x1
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Gold-plated L-shaped Stereo Mini
  • Y-shape Cord
  • Type - Opened" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fc9"), + "name" : "Sony Active Series MDR-AS200/L Wired Earphone, Blue", + "description" : "Sony Active Series MDR-AS200/L Wired Earphone, Blue", + "price" : "12", + "sku" : "Sony-Active-Series-MDR-AS200-L-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-Active-Series-MDR-AS200-L-Wired-Earphone-Blue-491166862-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDI3NHxpbWFnZS9wbmd8aW1hZ2VzL2hjYy9oZGYvODkyNzgwODI1ODA3OC5wbmd8MDczMTI5ZDZkNGU3OTU0OWFjNTdiNmM4YTFmMzZiNWQ3NDFjZTBjZDQ4ZmQ4YzVmN2NhZGQ0MTI3ZjM2MmM2Zg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Active Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS200/L" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip x1
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Gold-plated L-shaped Stereo Mini
  • Y-shape Cord
  • Type - Opened" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fca"), + "name" : "Samsung BHS3000 Wireless Headphone, Black", + "description" : "Samsung BHS3000 Wireless Headphone, Black", + "price" : "51", + "sku" : "Samsung-BHS3000-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/46c77dee-ac2e-42f4-94d6-6fee20bc784e-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjA5M3xpbWFnZS9qcGVnfGltYWdlcy9oOWUvaDYzLzg4MDQ5ODc2MzM2OTQuanBnfDE1MjZhOTdhYjQxMDViOWMzMmVkYjBhNDE2NGQ1MzM0NzE4ZmJkNThmNmUxYjAxZjgzYWI2MTNlNzA2YzA3MjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BHS3000" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Battery Stand-by Time - 7 / 170 hours
  • Battery Level Check (3 Color LED)
  • Dialed/Missed/Received Calls
  • Call Receiving
  • Mute/Reject Function
  • Voice Functions - Voice Prompt: English / Spanish / French / German (US) / English / Spanish / French / German / Chinese (EU)
  • Auto Volume Control
  • Volume Up/Down
  • Audio Streaming
  • Active Pairing
  • Initial Pairing
  • LED On/Off Mode
  • Multipoint
  • NR/EC - 1 Mic NR/EC
  • Play Time (Stereo Headset) - 6 hours
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "13.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcb"), + "name" : "BOWERS & WILKINS P3 Wired Headphone, White", + "description" : "BOWERS & WILKINS P3 Wired Headphone, White", + "price" : "261", + "sku" : "BOWERS-&-WILKINS-P3-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/BOWERS-WILKINS-P3-Wired-Headphone-White-491183505-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjgxMnxpbWFnZS9qcGVnfGltYWdlcy9oYzUvaDA2Lzg5Mjc3MTg4NjY5NzQuanBnfDE5N2FiMTUyZTdjODY2MzBmN2UyODlmYzI4MjMwZGJkODgyOWRjNDhhZjkwYzg4ZjNlYjAxNzAwNDI0OTUyNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "P3" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "BOWERS & WILKINS" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "34" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "111" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "130" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Universal cable
  • Hard case
  • Literature pack (Quick start guide" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "BOWERS", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcc"), + "name" : "Philips ActionFit SHQ2300OR/00 Sports Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ2300OR/00 Sports Wired Headphone, Orange", + "price" : "15", + "sku" : "Philips-ActionFit-SHQ2300OR-00-Sports-Wired-Headphone,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ2300OR-00-Sports-Wired-Headphone-Orange-491183205-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTU2NXxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oNGMvODkyNzg2ODYxNjczNC5wbmd8YWNkYzU3ZDdhMTI0OGQ0NDZhYzU5ZDAxZWEwZTZlMTM1MDgwYTg5YTY0NDljMzFiZWQxMzM4OTE0NjQxZjg4Mg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ2300OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "18.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable clip
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcd"), + "name" : "Jabra Sport Rox Wireless Headphone, White", + "description" : "Jabra Sport Rox Wireless Headphone, White", + "price" : "102", + "sku" : "Jabra-Sport-Rox-Wireless-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Sport-Rox-Wireless-Headphone-White-491182466-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjY4NnxpbWFnZS9wbmd8aW1hZ2VzL2hiNS9oOWQvODkyNzg3ODc3NDgxNC5wbmd8OWY4ODJlNDM3MWU2ZjY5MTYzNTEyYTkyZTMxODRjMDU2NmY1MzA3OTE4NzVjOThkMjNkMWI2MzQwM2NmODZmNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Protective Bag
  • Earwings
  • Eargel Pack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sport" + }, + { + "attributeName" : "Model", + "attributeValue" : "Rox" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Multiuse
  • 6 mm dynamic speaker
  • NFC for easy pairing
  • MEMs microphone solution
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "19" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fce"), + "name" : "Sony MDR-EX150AP Wired Headphone, White", + "description" : "Sony MDR-EX150AP Wired Headphone, White", + "price" : "22", + "sku" : "Sony-MDR-EX150AP-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150AP-Wired-Headphone-White-491229313-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzIzNnxpbWFnZS9qcGVnfGltYWdlcy9oMzAvaDFmLzg5Mjc4ODUzMjg0MTQuanBnfDljMTI5NjZkNzhlZWUxMGM4ZjViOTJhYTc2OTk2YTQyMzM4ZmNkYmRhMGRjN2JiMDFhYmRlY2NlYWNlYzdjNWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Gold-plated L-shaped Stereo Mini
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fcf"), + "name" : "Sony MDR-EX150AP/R Wired Headphone, Red", + "description" : "Sony MDR-EX150AP/R Wired Headphone, Red", + "price" : "22", + "sku" : "Sony-MDR-EX150AP-R-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150AP-R-Wired-Headphone-Red-491229312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjAyOHxpbWFnZS9qcGVnfGltYWdlcy9oZDMvaGNmLzg5Mjc4OTE1NTQzMzQuanBnfGI5MzZjY2FlOTE4Mjc2NTRhMjA3ZDAxODk3Njk2YmYwMDU4MDA0NWE1MTRmMGZkN2U0YmMxNDY5MWFjODQ5OTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150AP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd0"), + "name" : "Sony MDR-EX150AP/LI Wired Headphone, Dark Blue", + "description" : "Sony MDR-EX150AP/LI Wired Headphone, Dark Blue", + "price" : "22", + "sku" : "Sony-MDR-EX150AP-LI-Wired-Headphone,-Dark-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150AP-LI-Wired-Headphone-Dark-Blue-491229310-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzY5NXxpbWFnZS9qcGVnfGltYWdlcy9oZGYvaDgxLzg5Mjc4ODQzNDUzNzQuanBnfGM4MmI4N2JmNGEyOGQ2NDcxNzVhYmY4MzYwN2NhNzYyYWY1ZTI2ZDkzMWY3MGU4MWFjMDQyMDBkOTczZmNjMjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150AP/LI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Dark Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd1"), + "name" : "Sony MDR-EX250AP/B Wired Headphone, Black", + "description" : "Sony MDR-EX250AP/B Wired Headphone, Black", + "price" : "29", + "sku" : "Sony-MDR-EX250AP-B-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX250AP-B-Wired-Headphone-Black-491229304-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTM2NHxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaDhmLzg5Mjc4NzgxMTk0NTQuanBnfDUzMzNhNDRkMDg4NjAxZmFiNmYwNDExYmUxYWJkZTc3NWU0M2I4Y2I1YTMyNWE4MWM5OGY0NjkwZWNlN2NhMTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX250AP/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd2"), + "name" : "Sony MDR-EX750AP Wired Earphone, Cinnabar Red", + "description" : "Sony MDR-EX750AP Wired Earphone, Cinnabar Red", + "price" : "102", + "sku" : "Sony-MDR-EX750AP-Wired-Earphone,-Cinnabar-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX750AP-Wired-Earphone-Cinnabar-Red-491229300-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjQ4M3xpbWFnZS9qcGVnfGltYWdlcy9oNTUvaDk3Lzg5Mjc3ODk5MDc5OTguanBnfGM5YmVmN2FkYWU3OGI1MTcyYjdiODk0MDE2MzViZGRmYzBmMTM5Y2U3MDUzNjNkOGFmYmE4ZGNiYzU5MzIzYzE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX750AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Cinnabar Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carring Pouch
  • Headphone cable Length Adjuster
  • Earbuds - SS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd3"), + "name" : "Sony MDR-EX750AP Wired Earphone, Charcoal Black", + "description" : "Sony MDR-EX750AP Wired Earphone, Charcoal Black", + "price" : "102", + "sku" : "Sony-MDR-EX750AP-Wired-Earphone,-Charcoal-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX750AP-Wired-Earphone-Charcoal-Black-491229299-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTQzNnxpbWFnZS9qcGVnfGltYWdlcy9oNzMvaDBjLzg5Mjc3ODQ0Njg1MTAuanBnfGRjMWY3YTQ2ZDBjYjkwMDI3OWI3M2RiOTU3YjgyMmMzNzg1NmQwN2UwZWRjMTU0MjFkZDFkYzg5MzI5Y2YwMTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX750AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Charcoal Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carring Pouch
  • Headphone cable Length Adjuster
  • Earbuds - SS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd4"), + "name" : "Jabra Sport Pace Wireless Headset, Yellow", + "description" : "Jabra Sport Pace Wireless Headset, Yellow", + "price" : "87", + "sku" : "Jabra-Sport-Pace-Wireless-Headset,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/22a44922-f5aa-496a-a6f6-70cafb59e0fd-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTE2MHxpbWFnZS9qcGVnfGltYWdlcy9oMjEvaGY3Lzg4MDQ5OTE4OTM1MzQuanBnfDNiMjVmYjY1NTA4Y2UxOGM2MWNmNDgwNTc5MTkzMTQ4NDM2N2Y1ZWU2MGI2ZTdhMDRlZGU0YzRhZDBlMzhjYjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of EarGels
  • FitClip
  • USB cable
  • Quick Start Guide
  • Warranty leaflet
  • Warning leaflet
  • Registration leaflet
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "Sport" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pace" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Standby time - Up to 5 days
  • Charging time - Approximately 2 hours
  • Talk/Music time - Up to 5 hours
  • Operating range - Up to 10 meters (33 feet)
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impact Resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "109" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd5"), + "name" : "Amkette Trubeats Pulse S6 Wired Headphone, Grey", + "description" : "Amkette Trubeats Pulse S6 Wired Headphone, Grey", + "price" : "11", + "sku" : "Amkette-Trubeats-Pulse-S6-Wired-Headphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/cd88d2e4-33cd-4cd8-b3e0-c6f2d9a76057-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDYzOHxpbWFnZS9qcGVnfGltYWdlcy9oNWEvaGMyLzg4MDQ5OTY4MDg3MzQuanBnfDcwOTE0ZDJiZDUzZWViNDI2OWM4Mzk1NGZkMWYzZjkyMTM3ZTI0MjY1YjUyNzczOWVkYjBhY2M0NzFkM2YzYWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse S6" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 Eartips
  • Mobile Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - Neodymium magnet
  • Driver Diameter - 10mm
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd6"), + "name" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Black", + "description" : "Amkette Trubeats Pulse Wireless Bluetooth Headphone, Black", + "price" : "34", + "sku" : "Amkette-Trubeats-Pulse-Wireless-Bluetooth-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/ae245b2d-f3e5-4247-a54a-092879ce0303-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NzUwMXxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDMxLzg4MTc5MjY3NjY2MjIuanBnfDJkZjE5NDY2NGNkNWYzNTY4YWRlZmZiNzEzMGM4YzZiNzdmZTdkNzM3NDZjODI2OWUwZmViOGRjNzlhMWRmNzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Battery: 120 mAh
  • Wireless Range: Upto 10m
  • " + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Micro USB Charging Cable
  • Quick Start Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd7"), + "name" : "Skullcandy 2XL Barrel Wired Headphone, Black", + "description" : "Skullcandy 2XL Barrel Wired Headphone, Black", + "price" : "44", + "sku" : "Skullcandy-2XL-Barrel-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/bc9db891-a591-4d0d-89d0-002484f0a953-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODE2OHxpbWFnZS9qcGVnfGltYWdlcy9oZTgvaDE1Lzg4MDQ5OTM4NTk2MTQuanBnfDY3MGNlMzlhYWQwNjExZDc4MDFiZDE1NGM4M2Y0ZWRiOGY3YjJjMTM4Y2VmZWQ2NjAzMjIzMjllNjZjMTAwYTA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Model", + "attributeValue" : "Barrel" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd8"), + "name" : "Jabra Boost Wireless Bluetooth Headset, Black", + "description" : "Jabra Boost Wireless Bluetooth Headset, Black", + "price" : "32", + "sku" : "Jabra-Boost-Wireless-Bluetooth-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/21a97d2b-70a8-46c6-ae5d-2f2b3ed5f868-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDA1OXxpbWFnZS9qcGVnfGltYWdlcy9oZmMvaDI2Lzg4MDY0MTE3NjM3NDIuanBnfDgyMGVlZDM2NzY4M2EwZjcwNmZjMDE3YjhlN2I2MzQwNmJlZjMyZTg2N2U0ZWM1OGJjYzgzZDk1Y2I2NzMxMWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fd9"), + "name" : "Sony NWZ-WH303/B Headphone, Black", + "description" : "Sony NWZ-WH303/B Headphone, Black", + "price" : "131", + "sku" : "Sony-NWZ-WH303-B-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491064869-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MjY2MHxpbWFnZS9wbmd8aW1hZ2VzL2hkZS9oYTcvODkyNzc0MTczOTAzOC5wbmd8ODRmODU1NDA0OTBhODg3OTZjNzMwNDU0YmFjZTBlZjg4YTE3NTllNTk0YzhkYTMxYTk5YmQ5NDRlNzI5MzkwOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "WH Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "NWZ-WH303/B" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "No" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "290" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "60" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "20 Hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Headphones Cable " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fda"), + "name" : "Logitech H150 Headset, Black", + "description" : "Logitech H150 Headset, Black", + "price" : "14", + "sku" : "Logitech-H150-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/490888011-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDU4OHxpbWFnZS9wbmd8aW1hZ2VzL2g5Mi9oMTIvODkyNzYxMjYzMzExOC5wbmd8NGU2MTkxMTQzYjI5Y2YwODI5ZWVkMzI5NTI3ZDFmOTgzZWU0ZWVkMzRlMGZjODNmNDc0MmQ2NmIzZDVjZDA2NQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "H150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sky Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • System Requirements: Analog Connection with 3.5 mm Input and Output Jacks" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • User Documentation
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Logitech", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdb"), + "name" : "Sennheiser CX 213 Wired Headphone, Blue", + "description" : "Sennheiser CX 213 Wired Headphone, Blue", + "price" : "19", + "sku" : "Sennheiser-CX-213-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/cb38d8e9-96d3-429e-87de-a73967d93733-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTkwM3xpbWFnZS9wbmd8aW1hZ2VzL2g3NC9oZGIvODgwMjc4NDE0OTUzNC5wbmd8NWIwOWQ1ZGYyYWRjMzc3NjZhZmNkNDg1NzZhOTY5NzkzZWUyZGIyYzdjYzUxMTE4MmQ1MDQyMDZmOWJiY2RiZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 213" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdc"), + "name" : "JBL T100A In-Ear Wired Headphone, White", + "description" : "JBL T100A In-Ear Wired Headphone, White", + "price" : "15", + "sku" : "JBL-T100A-In-Ear-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T100A-In-Ear-Wired-Headphone-White-491173094-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzYyOXxpbWFnZS9wbmd8aW1hZ2VzL2hlYS9oYmEvODkyNzg0OTc0MjM2Ni5wbmd8ZDZkM2Q3MGQ3N2MwM2RjN2I5YmM4ODYzZGM5MWYyYjE2YmUxNDc5NmIyYWNhODRhZjQ2MTNhODhkN2U2MzBjZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T100A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of silicone ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single button remote/mic
  • PureBass performance
  • High sensitivity" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdd"), + "name" : "JBL T200A Wired Headphone, Yellow/Green", + "description" : "JBL T200A Wired Headphone, Yellow/Green", + "price" : "29", + "sku" : "JBL-T200A-Wired-Headphone,-Yellow-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T200A-Wired-Headphone-Yellow-Green-491167174-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTU1MXxpbWFnZS9qcGVnfGltYWdlcy9oMjQvaDZkLzg5Mjc4OTA1NzEyOTQuanBnfGE2MDcxMGQ3OTZkZDk1NDNmMzc0MWE0MzhlNWFkNWEwMjdkNTNjODY4MWE2MzZlNDQ1ODY2YTg0ZWM4MGFjMjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T200A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow/Green" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - 9 mm
  • Headphone Jack - 3.5mm jack
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fde"), + "name" : "JBL T150A In-Ear Wired Headphone, White", + "description" : "JBL T150A In-Ear Wired Headphone, White", + "price" : "27", + "sku" : "JBL-T150A-In-Ear-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T150A-In-Ear-Wired-Headphone-White-491167173-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDkwOHxpbWFnZS9wbmd8aW1hZ2VzL2g1OS9oMTYvODkyNzg2NzYzMzY5NC5wbmd8YTY2YTgxYmU3YmE4MTNlNDA1YTI4NGI5ZTM3YThlMzg0MTkxOTA3MThmNTdiN2JhMWVlNjBhMTk4YzI1Mjc1NQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T150A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 pairs latex-free of silicone sleeves (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • PureBass performance
  • High sensitivity" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fdf"), + "name" : "JBL T150A In-Ear Wired Headphone, Black", + "description" : "JBL T150A In-Ear Wired Headphone, Black", + "price" : "27", + "sku" : "JBL-T150A-In-Ear-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491167172-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDQ1NnxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oOWUvODkyNzg1NjgyMDI1NC5wbmd8MzlhZjA2Mjc5NDhiZmRjZTRiYTY0YmYxMmQyOTA5Njk4NjllYWQxYjY2MGM1MjQ3ZjQ4MDNjNjg1MWMzMDc2Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T150A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 pairs latex-free of silicone sleeves (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • PureBass performance
  • High sensitivity" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe0"), + "name" : "itek Soundlogic BEB001_BK Wireless Bluetooth Headphone, Black", + "description" : "itek Soundlogic BEB001_BK Wireless Bluetooth Headphone, Black", + "price" : "22", + "sku" : "itek-Soundlogic-BEB001_BK-Wireless-Bluetooth-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-Soundlogic-BEB001-BK-Wireless-Bluetooth-Headphone-Black-491183559-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMzgzNnxpbWFnZS9wbmd8aW1hZ2VzL2gxNS9oYjYvODkyNzg2OTU5OTc3NC5wbmd8NjY5YjcxOTM5YWQxYWFjMDNhYTU2NDA4OGI3ZGE0ODNiMzk1ODZiYmI4MzI0OTQ1MTk1NDgzNTgzOTVmODliMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sub-brand", + "attributeValue" : "Soundlogic" + }, + { + "attributeName" : "Model", + "attributeValue" : "BEB001_BK" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "itek", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe1"), + "name" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Yellow", + "description" : "Reconnect BTH BT-S-MIC Bluetooth Headset, Yellow", + "price" : "44", + "sku" : "Reconnect-BTH-BT-S-MIC-Bluetooth-Headset,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-BTH-BT-S-MIC-Bluetooth-Headset-Yellow-491183515-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzI5OHxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaDliLzg5Mjc2MDU0MjQxNTguanBnfDU3MDJjYzA5NTU4ZTFjMmYyOGQxMzRhOGJhN2ViNTU0YmUwMjQxYTQzYjBkYWFmODJkZTJmNTQ3MWY4MmY2NWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "60" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTH BT-S-MIC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Comfort fit - Suitable while Sports activity & Travel
  • Music on the GO - Interrupted music for 8 hrs
  • " + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Customer care address", + "attributeValue" : "For feedback/complaints write to Customer manager at Reliance Retail Limited, 3rd Floor, Court House, LT Marg, Dhobi Talao, Mumbai - 400 002" + }, + { + "attributeName" : "Customer care Phone", + "attributeValue" : "1800 103 1044" + }, + { + "attributeName" : "Country of origin", + "attributeValue" : "India" + }, + { + "attributeName" : "Customer care email", + "attributeValue" : "customersupport@resq.in" + }, + { + "attributeName" : "Name and address of Packer", + "attributeValue" : "Reliance Retail Limited, Shed No. 111 & 120, Indian Corporation, Mankoli Naka, Village Dapode, Taluka Bhiwandi, Dist. Thane - 421 302" + }, + { + "attributeName" : "Service Centre Toll Free No.", + "attributeValue" : "18001031044" + }, + { + "attributeName" : "Service Centre Address", + "attributeValue" : "Locate Service Centre" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "3 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe2"), + "name" : "JBL C150SI Wired Headphone, Red", + "description" : "JBL C150SI Wired Headphone, Red", + "price" : "29", + "sku" : "JBL-C150SI-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C150SI-Wired-Headphone-Red-491281252-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM0MHxpbWFnZS9qcGVnfGltYWdlcy9oMGUvaGZlLzg4NzcwODkxOTQwMTQuanBnfGFmMjMyNjVlMWNiMDlkMWYxMGE4YmU0YzRjNWVkYzdlNTQxNTczZWJiYWI2OWE3MjQ5NjQ3M2U2ZjkzOGZiZmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "C150SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe3"), + "name" : "JBL C100SI Wired Headphone, Red", + "description" : "JBL C100SI Wired Headphone, Red", + "price" : "19", + "sku" : "JBL-C100SI-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C100SI-Wired-Headphone-Red-491281249-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjMyMXxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaDhjLzg5Mjc3NTY2ODEyNDYuanBnfDY2NmJmMjM0Njg4ZTQ5OGZhM2Y4NmIxM2EwZDliNjY2YTg1Y2YxNjA2NDdjYjQ2NGMxN2Q0N2ZkMDFmM2EyNDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C100SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Compatible with all Android and iOS devices
  • Driver Sensitivity - 100 +/-3dBSPL
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe4"), + "name" : "Sony MDR-AS210 Wired Earphone, Grey", + "description" : "Sony MDR-AS210 Wired Earphone, Grey", + "price" : "12", + "sku" : "Sony-MDR-AS210-Wired-Earphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/7e185b35-b5e2-4d46-ad73-4f5d10d92bb8-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjI4N3xpbWFnZS9qcGVnfGltYWdlcy9oMjEvaDg5Lzg4MDUwMTE0MjMyNjIuanBnfGYyZDQ5OGNjZTNhYjFjMDNhYjg2OGEyYzExNjg1ZTVmZjVlYzdjYWMwYTI2OTY3YzdmMDc3YmQwZWI2MDI1MGY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Running" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS210" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Splashproof for all-weather listening
  • Open acoustics help air flow through for natural sound quality
  • 13.5 mm driver provides clear and detailed sound" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe5"), + "name" : "Philips ActionFit SHQ3305OR/00 Sports Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ3305OR/00 Sports Wired Headphone, Orange", + "price" : "24", + "sku" : "Philips-ActionFit-SHQ3305OR-00-Sports-Wired-Headphone,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3305OR-00-Sports-Wired-Headphone-Orange-491183211-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDM4MnxpbWFnZS9wbmd8aW1hZ2VzL2gwMy9oYWMvODkyNzg3NTk1Njc2Ni5wbmd8ZjNjYmE5MWE3NWYyNzg4NWJjZDNjNjVhMjdhMWY0ODM2YTViMGY1MTI1NjhkODUxNzQxN2IwNTlmOTAxYzE1Yg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3305OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23.1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable management: Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type : Neodymium
  • Speaker diameter : 8.6 mm
  • Diaphragm : PET
  • Acoustic system : Closed
  • Finishing of connector : Gold plated
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe6"), + "name" : "Philips ActionFit SHQ3300OR/00 Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ3300OR/00 Wired Headphone, Orange", + "price" : "18", + "sku" : "Philips-ActionFit-SHQ3300OR-00-Wired-Headphone,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3300OR-00-Wired-Headphone-Orange-491183209-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MzE4MnxpbWFnZS9wbmd8aW1hZ2VzL2gwNi9oM2IvODkyNzg3Nzc5MTc3NC5wbmd8YThmM2IzYjQ2Y2QwZTNiMTI4YmI4M2Y5ZDc4NTU2NjdiZTdlMWM5MzM5NDIxZmQ4M2I0ZGVkMjUwMDdlZjM2Yg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3300OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "21.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 20 mW
  • Speaker diameter: 8.6 mm
  • Cable Connection: two-parallel" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe7"), + "name" : "Philips ActionFit SHQ3300LF/00 Wired Headphone, Lime", + "description" : "Philips ActionFit SHQ3300LF/00 Wired Headphone, Lime", + "price" : "18", + "sku" : "Philips-ActionFit-SHQ3300LF-00-Wired-Headphone,-Lime", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3300LF-00-Wired-Headphone-Lime-491183208-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTAzOXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDI3Lzg5Mjc4NzIyMjEyMTQuanBnfGRiNjMxYmU5Mzk3ZTY4NjU3MjJlNmJkYTgxMDVlNWNhZmFkNWVjMWY0MDFkMWI4MDlmNjkyMDg4Njc2ZGUwYjg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3300LF/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime" + }, + { + "attributeName" : "Weight", + "attributeValue" : "21.5" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet type: Neodymium
  • Maximum power input: 20 mW
  • Speaker diameter: 8.6 mm
  • Cable Connection: two-parallel" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe8"), + "name" : "Philips ActionFit SHQ1300OR/00 Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ1300OR/00 Wired Headphone, Orange", + "price" : "14", + "sku" : "Philips-ActionFit-SHQ1300OR-00-Wired-Headphone,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1300OR-00-Wired-Headphone-Orange-491183200-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MTE1OXxpbWFnZS9wbmd8aW1hZ2VzL2g4YS9oNGQvODkyNzg3NjYxMjEyNi5wbmd8OTc3NjVkNTRlN2FkNmJlM2FjMTkzMTYwY2U5YjMxMTJkYzhjNjg3ODE0YjNkYTE2ZjBjZWJhM2JmZTAxZTkzYQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1300OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fe9"), + "name" : "Philips ActionFit SHQ1300LF/00 Sports Wired Headphone, Lemon", + "description" : "Philips ActionFit SHQ1300LF/00 Sports Wired Headphone, Lemon", + "price" : "14", + "sku" : "Philips-ActionFit-SHQ1300LF-00-Sports-Wired-Headphone,-Lemon", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1300LF-00-Sports-Wired-Headphone-Lemon-491183199-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDgwM3xpbWFnZS9wbmd8aW1hZ2VzL2hlNy9oOGUvODkyNzg3MTg5MzUzNC5wbmd8N2UyMTdiMDQwZjQyNTEyNjIzODk4MjRhYmUwNGU3MzVkYTRlZmZmM2Q0OWU4NjI1YzMwZTA4ZTE4ZWNmZTBjZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1300LF/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lemon" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22.8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable management - Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Speaker diameter - 13.6 mm
  • Acoustic system - Semi-closed
  • Magnet type - Neodymium
  • Connector - 3.5 mm
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fea"), + "name" : "Sennheiser CX 3.00 Wired Headphone, Black", + "description" : "Sennheiser CX 3.00 Wired Headphone, Black", + "price" : "51", + "sku" : "Sennheiser-CX-3.00-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-3.00-Wired-Headphone-Black-491182186-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIzM3xpbWFnZS9wbmd8aW1hZ2VzL2g1YS9oZjAvODkyNzg3NjI4NDQ0Ni5wbmd8M2IxZjY0Y2E3ZjI5ZjcyZjA1ZTQyNjMxZWZlNzczOGQ4OWM4MTMwMTY2MjJiMmQwNDliZjQyYTIzY2VkYTllMA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "CX" + }, + { + "attributeName" : "Model", + "attributeValue" : "3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "12" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Ear adapter set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637feb"), + "name" : "Sony MDR-EX110AP/R Wired Earphone, Red", + "description" : "Sony MDR-EX110AP/R Wired Earphone, Red", + "price" : "22", + "sku" : "Sony-MDR-EX110AP-R-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX110AP-R-Wired-Earphone-Red-491181321-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTk3NHxpbWFnZS9wbmd8aW1hZ2VzL2g4Ny9oMTYvODkyNzcxMzI5NjQxNC5wbmd8ZDM3YzExMWNhYzQ2Zjk0MTUzNWFhYjEyZGIxMDQwZmI1YmY4MzhkNGI4ZmJkNzIxNmIzZTAwMmM3MjZjZTc5MQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX110AP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "3" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Four-conductor gold-plated L-shaped stereo mini plug
  • Cord - Y-shape
  • Magnet - Neodymium
  • Driver Unit - 9mm
  • Power Handling Capacity - 100mW
  • Type - Closed" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fec"), + "name" : "JBL T250SI Wired Headphone, Black", + "description" : "JBL T250SI Wired Headphone, Black", + "price" : "37", + "sku" : "JBL-T250SI-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T250SI-Wired-Headphone-Black-491181137-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjcyOXxpbWFnZS9wbmd8aW1hZ2VzL2hlZC9oYjIvODkyNzg1MjY5MTQ4Ni5wbmd8NTVlYjkyNDQ3ZTA4YzcyYzk5MGU1NjA3OWE3ZDhkNmY3MmNjZGM0NjIxYjE1OGIwZTM0OTg0YWQ1MjRjYWIwYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T250SI" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power magnetic drivers
  • Plug: 3.5mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fed"), + "name" : "JBL T26C Wired Headphone, Red", + "description" : "JBL T26C Wired Headphone, Red", + "price" : "29", + "sku" : "JBL-T26C-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T26C-Wired-Headphone-Red-491181136-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTI5MnxpbWFnZS9wbmd8aW1hZ2VzL2hkMy9oNmMvODkyNzg2MDc1MjQxNC5wbmd8ZWVjMTAyMDdjOGIzNGFmYzhjMWFiN2ZjMWM0ZDVmMzFkMzQyMTQ5NjQ5MjRlMGI0NjAzY2EwZjE5ZDZmNTgzMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T26C" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power magnetic drivers
  • Plug: 3.5mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fee"), + "name" : "Altec Lansing MZX145 Wired Headphone, Black", + "description" : "Altec Lansing MZX145 Wired Headphone, Black", + "price" : "20", + "sku" : "Altec-Lansing-MZX145-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Altec-Lansing-MZX145-Wired-Headphone-Black-491229643-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjY2N3xpbWFnZS9qcGVnfGltYWdlcy9oNzEvaDM1Lzg5Mjc4MDcyNzUwMzguanBnfDhmMjdiNDI4ZTk0ZWI0NWYyYWIzNDI2M2I3MTU2ZWZlZjY4YWJmZDlhZDIyMTYyYjM3NzgzYTAzZWViNzg1OGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MZX145" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable
  • Pouch
  • Freebit Ear Tips (Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm neodymium drivers
  • Onboard microphone
  • 3 size ear tip
  • Flat tangle free cable
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fef"), + "name" : "Altec Lansing MZX656 Headphone, Blue", + "description" : "Altec Lansing MZX656 Headphone, Blue", + "price" : "49", + "sku" : "Altec-Lansing-MZX656-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Altec-Lansing-MZX656-Headphone-Blue-491229640-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDA3MXxpbWFnZS9qcGVnfGltYWdlcy9oM2EvaDNlLzg5Mjc2NTc2NTYzNTAuanBnfDlkYTgyMzY4YjM3NzMyMzRiNzM3ZGJlNWFjZGIzYjg2MjlmNjhlNWIwMTM4ZmJmNzdiMzc5NzMwYzMwNjU5YTQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MZX656" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Altec Lansing" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ultra Comfortable
  • High quality material
  • 40 mm Neodymium drivers
  • Onboard microphone and song and navigation/ telephony button
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Altec", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff0"), + "name" : "Sony MDR-EX150 Wired Headphone, Black", + "description" : "Sony MDR-EX150 Wired Headphone, Black", + "price" : "15", + "sku" : "Sony-MDR-EX150-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150-Wired-Headphone-Black-491229314-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTM1OXxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaDk1Lzg4NjMwMDM2MDcwNzAuanBnfDc3ZDYyYjU4YTE1MDg3YjE3ZWE0OTFmNWYzNmJlNjM2ODRjMGRmN2UyMTAzNDEzOTYxNTA5Mjg4ZjhjOTFmYzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "5-24000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff1"), + "name" : "Amkette Trubeats Pulse S8 Wired Headphone, Black", + "description" : "Amkette Trubeats Pulse S8 Wired Headphone, Black", + "price" : "15", + "sku" : "Amkette-Trubeats-Pulse-S8-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/f2bcf90b-2a18-44c9-a930-51a0c8a4221d-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTc3MHxpbWFnZS9qcGVnfGltYWdlcy9oNTAvaGFlLzg4MDQ5OTUxNzAzMzQuanBnfDc2ZDk1M2M0MzA4ZGI2NDY3YTg5ZDEzNGZlM2ExMmNmOWI1YWY1ZmY3ZTBiYzk1ZWYwZjE4ZjljZGU4YmQxYmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse S8" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 Eartips
  • Mobile Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - Neodymium Magnet
  • Driver Diameter - 10 mm
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff2"), + "name" : "Philips SHS390/97 Headphone, Black", + "description" : "Philips SHS390/97 Headphone, Black", + "price" : "8", + "sku" : "Philips-SHS390-97-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHS390-97-Headphone-Black-490302482-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDM2OXxpbWFnZS9wbmd8aW1hZ2VzL2g3ZC9oMzgvODkyNzgwNzkzMDM5OC5wbmd8NDliYWYzZjk0YmEwMWQ2NWMxOWZkMzYzYzZkYjJlNTIyNDM0NmNkNmI0YTZlNGZmNTdiNmQyYmJhMzgxN2Q4Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHS390/97" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "52" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Acoustic system: Open
  • Diaphragm: Mylar dome
  • Magnet type: Neodymium
  • Voice coil: Copper
  • Maximum power input: 100 Mw
  • Speaker diameter: 32 mm
  • Type: Dynamic
  • Connectivity:
  • Cable Connection: Two-parallel" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff3"), + "name" : "Philips SHL3000/00 Headphone, Black", + "description" : "Philips SHL3000/00 Headphone, Black", + "price" : "15", + "sku" : "Philips-SHL3000-00-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/b63ba2b9-8c75-424d-819f-8ba9588a68f0-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjU3NnxpbWFnZS9qcGVnfGltYWdlcy9oMjUvaGRjLzg4MTc5MjIzMTAxNzQuanBnfDA4N2FiY2UyZmI1NTlmMjdhYjU5MmY2NjkyN2M1ODc1Y2Y2YzFkYmI3MTk4YjdmMjgzZDZkMzRkMDhhMWMzZWU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3000/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 32 mm Speaker driver delivers powerful and dynamic sound
  • Closed type acoustic provide good sound isolation
  • DJ monitoring style for tuning in and out environment
  • Flat foldable for you easy to carry on the go
  • Adjustable earshells and headband fits the shape of any head
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff4"), + "name" : "Sennheiser RS 110 II Wireless Headphone, Silver", + "description" : "Sennheiser RS 110 II Wireless Headphone, Silver", + "price" : "66", + "sku" : "Sennheiser-RS-110-II-Wireless-Headphone,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-RS-110-II-Wireless-Headphone-Silver-490122400-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTY1NHxpbWFnZS9wbmd8aW1hZ2VzL2g2ZC9oMDcvODkyNzgyOTQ5MTc0Mi5wbmd8ZmU2NWRjZjhkYTkzNDBhYjA5ZmZmMGMyOGFkODYwZmUxYjI5MWJlZWJjZWNhZDc3Y2M0MDdkZmIwMzc3MTJjNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Connector: 3.5 mm / 6.3 mm stereo
  • THD" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "RS 110 II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Tr 110 Ii Transmitter with Audio Connecting Cable
  • Mains Unit
  • Two Batteries" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff5"), + "name" : "Bose SoundTrue Around Ear Wired Headphone, Black", + "description" : "Bose SoundTrue Around Ear Wired Headphone, Black", + "price" : "195", + "sku" : "Bose-SoundTrue-Around-Ear-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-Wired-Headphone-Black-491163940-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjExNHxpbWFnZS9wbmd8aW1hZ2VzL2g0YS9oMzIvODkyNzg4NDAxNzY5NC5wbmd8NzA3MmY1M2ViMzczNjBhMTYyNWZiY2U4N2FiYzdlNTE0NDhkNjBmZGNhZGM4YzdjMzAwMWRlOTJiYmRkZjIzNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "140" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Inline remote/microphone cable (66\")
  • Carrying Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff6"), + "name" : "Philips CitiScape SHL5705BKP/00 Wired Headphone, Black", + "description" : "Philips CitiScape SHL5705BKP/00 Wired Headphone, Black", + "price" : "58", + "sku" : "Philips-CitiScape-SHL5705BKP-00-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491163874-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDI1NXxpbWFnZS9wbmd8aW1hZ2VzL2hhZi9oYzQvODkyNzgzOTI1NjYwNi5wbmd8M2JkODBiNTY3MDJiOTVmMTI4ODVhZGE5OTk4MTIxNWM4MzhhNmM1MjhmODY1NzljMGVjZjE0ODY4NmJmMmNmMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "CitiScape" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHL5705BKP/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "117" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff7"), + "name" : "Philips SHL3210BK/00 Wired Headphone, Black", + "description" : "Philips SHL3210BK/00 Wired Headphone, Black", + "price" : "29", + "sku" : "Philips-SHL3210BK-00-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491163854-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDYwNnxpbWFnZS9wbmd8aW1hZ2VzL2g0Yy9oZjMvODkyNzg0MTg3ODA0Ni5wbmd8NWVmOWJiYjEwOTMxODljZTkwY2Q4MmMzNDUwZWU0YzU4YmFjMGViYWNjNDBhNjg5YTM5ZGE5YzhiOTEwYzg0YQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3210BK/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Weight", + "attributeValue" : "609" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff8"), + "name" : "JBL C150SI Wired Earphone, White", + "description" : "JBL C150SI Wired Earphone, White", + "price" : "29", + "sku" : "JBL-C150SI-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C150SI-Wired-Earphone-White-491281251-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODAzOXxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaGQ4Lzg5Mjc3NjQyMTc4ODYuanBnfGFiOWU5ZDNiM2MwNzkzMjgwODIzYWQ3MjUzNzM0OWEwNTIzYzc3ZmQxZTM0MWY2NDJhZjk0ZWY4ODg4ZWI2NGU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C150SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • JBL Signature Sound
  • One-button Universal Remote with Mic
  • Compatible with all Android and iOS devices
  • Driver : Advanced 9mm driver
  • Maximum SPL : 5 mW
  • Rated power input : 3 mW
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ff9"), + "name" : "Jabra Storm Wireless Bluetooth Headset, Black", + "description" : "Jabra Storm Wireless Bluetooth Headset, Black", + "price" : "66", + "sku" : "Jabra-Storm-Wireless-Bluetooth-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/2a332cd1-923a-4ecb-a9b5-b1d51bf60001-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTkzOHxpbWFnZS9wbmd8aW1hZ2VzL2gwZi9oYWMvODgwMjk0Nzc2MDE1OC5wbmd8ZmUxYTUxMDliZjg2Yjc4N2Y2ZjE4OTExMDU2NmE3Yzc0MDU4ZThlMzJmNTQyOGMwOTI4YTM1NzQ2MjkyNmFhNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffa"), + "name" : "Sennheiser Momentum In-Ear Wired Headphone for iOS, Black/Red", + "description" : "Sennheiser Momentum In-Ear Wired Headphone for iOS, Black/Red", + "price" : "102", + "sku" : "Sennheiser-Momentum-In-Ear-Wired-Headphone-for-iOS,-Black-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-Momentum-In-Ear-Wired-Headphone-for-iOS-Black-Red-491182189-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTQyM3xpbWFnZS9wbmd8aW1hZ2VzL2hhMy9oZGMvODkyNzg4MTcyMzkzNC5wbmd8NzgwZjlkMzllYTAzYjliODczMDU5MjBkMWY4MTIyZDY4YWU0ZTJiODAzYTUzOWQ5ODBiODQxNjEyZmZiNTlkZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Momentum" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "18" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "44" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Ear-adapter set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffb"), + "name" : "Sony MDR-AS600BT Wireless Headphone, Blue", + "description" : "Sony MDR-AS600BT Wireless Headphone, Blue", + "price" : "87", + "sku" : "Sony-MDR-AS600BT-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-AS600BT-Wireless-Headphone-Blue-491182183-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzMzM3xpbWFnZS9wbmd8aW1hZ2VzL2gxYi9oMjYvODkyNzg2MjA2MzEzNC5wbmd8OWMzMTgzYjVhMTE5YzBiOWVmYjZhZDkxZmQ1ZDAxNWYzZDkxYjNiMTFhOTQxNjAxYWM5YzExOWU3ZjQyM2EyZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS600BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Waterproof Rating: IPX 4 Standard
  • Magnet: Neodymium
  • Music playback time: Max. 8.5h
  • Output: Bluetooth Power Class 2
  • Near Field Communication (NFC)
  • Electret Condenser Microphone
  • " + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "21" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffc"), + "name" : "Sony MDR-AS600BT Wireless Bluetooth Headphone, Black", + "description" : "Sony MDR-AS600BT Wireless Bluetooth Headphone, Black", + "price" : "87", + "sku" : "Sony-MDR-AS600BT-Wireless-Bluetooth-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-AS600BT-Wireless-Bluetooth-Headphone-Black-491182181-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTk4M3xpbWFnZS9wbmd8aW1hZ2VzL2gzZC9oYzYvODkyNzc4OTU4MDMxOC5wbmd8MTMxZTdlNmQ4OTlkYzNjMWI1MDY5YTg3NzBhOThmNTdmODUwNjljYTNkOTdkMmEyNDYxOTc0YWYwY2VlMDBjZg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Micro-USB cable (Approx. 50 cm)
  • Long Hybrid silicone rubber earbuds (SS/S/M/L 2 each)
  • Arc supporters (S/M/L 2 each)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-AS600BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium magnet
  • Battery Life - Music playback time: Max. 8.5 hours; Communication time:Max. 8 hours; Standby Time: Max. 250 hours
  • Battery Charging Time - Approx. 2.5 hours
  • Driver Unit - 9mm Dynamic
  • " + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffd"), + "name" : "Philips Flite SHL4805DC/00 Wired Headphone, Black", + "description" : "Philips Flite SHL4805DC/00 Wired Headphone, Black", + "price" : "32", + "sku" : "Philips-Flite-SHL4805DC-00-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/-Philips-Flite-SHL4805DC-00-Wired-Headphone-Black-491315538-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5NjIxfGltYWdlL2pwZWd8aW1hZ2VzL2g5Ny9oNTAvODg3NzEyNjM1MjkyNi5qcGd8M2VmNGJmMGQzMzE5YzUxZTIyNzEwN2VhOGEzYmUwZGU3MGM0MTQ4MDc3ODZiOTlmZjdiZmU1MDFiMDQ1NTA4NA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Flite" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHL4805DC/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637ffe"), + "name" : "Zoook ZB-Jazz Claws Bluetooth Neckband Earphone, Black", + "description" : "Zoook ZB-Jazz Claws Bluetooth Neckband Earphone, Black", + "price" : "51", + "sku" : "Zoook-ZB-Jazz-Claws-Bluetooth-Neckband-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Zoook-ZB-Jazz-Claws-Bluetooth-Neckband-Earphone-Black-491362695-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTEyMXxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaDdhLzg4NzcxOTIyMTY2MDYuanBnfDJmYTZmNTI1MWE3ZjAwYzNkODAxM2M1OTdmZGUyNzlkOTNhZmI5N2Q0MjM4ZDU0OTdhNzZmOWJlYTU0ZDA5MDY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Extra Pairs of Earbuds
  • Micro USB Charging Cable
  • User Guide
  • Certificate of Authenticity
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes (Micro USB Charging Cable)" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "ZB-Jazz Claws" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Zoook" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "27" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Zoook", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8637fff"), + "name" : "JBL J303BT Wireless Bluetooth Headset, White", + "description" : "JBL J303BT Wireless Bluetooth Headset, White", + "price" : "29", + "sku" : "JBL-J303BT-Wireless-Bluetooth-Headset,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-J303BT-Wireless-Bluetooth-Headset-White-491167181-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDU4MHxpbWFnZS9qcGVnfGltYWdlcy9oZGQvaGE5Lzg5Mjc2MjMzODEwMjIuanBnfDE4MDBkY2EzNjkzNTg3ZmI0NGRlYTE1YTQ0YzQyZGI2YzFjMDUzMzA1MjRmOTcyZDYyMGIyYzgyYTg0NTYyMjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise reduction for clear voice
  • A2DP listening to music or audio book
  • Multipoint to pair with two phones
  • Bluetooth Range: 10 meters
  • Talk Time: 5 hours
  • Standby Time: 168 hours
  • Charging Time: 2 hours
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "J303BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638000"), + "name" : "Sony MDR-XB70AP Wired Earphone, Black", + "description" : "Sony MDR-XB70AP Wired Earphone, Black", + "price" : "58", + "sku" : "Sony-MDR-XB70AP-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/321bfb02-ce53-49d2-a593-80c858814f5a-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzExOXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDg4Lzg4NDA1OTc0NzEyNjIuanBnfDljYjQ2NDU0ZGU2N2I2YjM4OTA1ZjUyZmE0MTlkMzQyNWY4YWIxMjdiMjUxNDczNmQ0ZGZkZjNlYWI3ZWU4NDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB70AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "112" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "9" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • Carrying Pouch
  • Earbuds SS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 12 mm neodymium driver units
  • Gold-plated L-shaped Stereo Mini
  • Powered Bass Duct++ for extra deep bass
  • Capacity - 100 mW
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638001"), + "name" : "Sony MDR-ZX750AP/R Wired Headphone, Red", + "description" : "Sony MDR-ZX750AP/R Wired Headphone, Red", + "price" : "95", + "sku" : "Sony-MDR-ZX750AP-R-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX750AP-R-Wired-Headphone-Red-491163821-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDA0N3xpbWFnZS9qcGVnfGltYWdlcy9oNjMvaGZjLzg5Mjc4NDIyMDU3MjYuanBnfGViNmIwMzJjNDVmMTA0YmZmODgzYjMwNDgzNGJjYTk1ZjE3MTQwMGNhMTU1Y2MyNTM5MjQ2YWQwZjJhMTY2OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX750AP/R" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "40" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "205" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638002"), + "name" : "Sennheiser MM 30 IP Headset, Black", + "description" : "Sennheiser MM 30 IP Headset, Black", + "price" : "58", + "sku" : "Sennheiser-MM-30-IP-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491004802-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDIzMXxpbWFnZS9qcGVnfGltYWdlcy9oMDIvaGE1Lzg5Mjc2MjA3NTk1ODIuanBnfDllYjg3ZDcxYzc2YTFjMWM2NTk2NzMyMTVlYmQwMzc4YjM2NzYzODhiZmZiODYyYzExNzFlZGIwMDQ0NGE3MDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MM" + }, + { + "attributeName" : "Model", + "attributeValue" : "30 IP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Smart in-line remote control with microphone (change the volume" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638003"), + "name" : "Sony MDR XB910 Headset, Silver", + "description" : "Sony MDR XB910 Headset, Silver", + "price" : "187", + "sku" : "Sony-MDR-XB910-Headset,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/491086595-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MTQwMnxpbWFnZS9wbmd8aW1hZ2VzL2hmNi9oNTcvODkyNzYyMDQzMTkwMi5wbmd8NTY3M2Y0Y2U2OTM1YTY3NGE1MTMwMTdjNTE5MjJhZTFjMzg4Y2IyNGNmM2E1NTJiOWZjYWZlNzY5YTFjZjViOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "XB910" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Hear all your songs with natural" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connecting Cable
  • Inline Remote
  • Microphone Cable
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638004"), + "name" : "Sony MDR-V55/B Headphone, Black", + "description" : "Sony MDR-V55/B Headphone, Black", + "price" : "73", + "sku" : "Sony-MDR-V55-B-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/491086862-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjk0MXxpbWFnZS9wbmd8aW1hZ2VzL2g1Zi9oYjEvODkyNzgxMDQ4NjMwMi5wbmd8ZjViYzY3ZTFjY2I5YzNhMWVjODE4YmVkMzk4ZGNjNjBlMzUwZDg3OWM1NzE2NGEyYjJlMWYwYjBiNzBmY2JjMg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-V55/B" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "40" + }, + { + "attributeName" : "Weight", + "attributeValue" : "220" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium Drivers
  • Rugged Cord
  • folding DJ style with reversible earcups
  • flexibility and easy portability
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Operating Instructions
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638005"), + "name" : "Promate ProHarmony.1 Wireless Headphone, Black", + "description" : "Promate ProHarmony.1 Wireless Headphone, Black", + "price" : "87", + "sku" : "Promate-ProHarmony.1-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Promate-ProHarmony.1-Wireless-Headphone-Black-491018489-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjIxNXxpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDczLzg5Mjc4MzIxNzg3MTguanBnfGFjZjMwODMwMzJjOTA4MDNmZWNiZTgzNzEzZmIzMjRkMWU0ODYyOWVlM2ZiNWYyOWIwZmVmOTNjZWQwZTg0NDg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Effective range: 10m
  • Transmit power: Class 2 (Max 2dBm)
  • " + }, + { + "attributeName" : "Model", + "attributeValue" : "ProHarmony.1" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Promate" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Promate", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638006"), + "name" : "Nokia Coloud Pop WH-510 Wired Earphone, Red", + "description" : "Nokia Coloud Pop WH-510 Wired Earphone, Red", + "price" : "21", + "sku" : "Nokia-Coloud-Pop-WH-510-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491164219-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzc5NHxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaGExLzg5Mjc4NDM1MTY0NDYuanBnfDA2YTY2OWM3ZjYyZmQ1MzFjYWZjNjhiNWQ2YWVmY2I2ZDNjNDliMGMzMjczZWU1N2JjNjExMDg0MjNiOThlOTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Coloud Pop" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-510" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Audio features - Stereo
  • Directional microphone
  • Multifunction key
  • 3.5 mm stereo headphone connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638007"), + "name" : "Nokia Coloud Boom WH-530 Wired Headphone, Yellow", + "description" : "Nokia Coloud Boom WH-530 Wired Headphone, Yellow", + "price" : "29", + "sku" : "Nokia-Coloud-Boom-WH-530-Wired-Headphone,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/491164225-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjY5OHxpbWFnZS9wbmd8aW1hZ2VzL2gzNC9oZjEvODkyNzg0Mzg0NDEyNi5wbmd8MTAwMGIwOTRlYTdlNmYwNTMzYTYzYTMxZGM5ZWYwOGY1NThlZTdlNjJmZjg2ZDYwNjBkNDZkMDM2MGMzNzdhYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Coloud Boom" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-530" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Audio features - Stereo
  • Directional microphone
  • Multifunction key
  • 3.5 mm stereo headphone connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638008"), + "name" : "Skullcandy JIB Wireless Earphone, Blue", + "description" : "Skullcandy JIB Wireless Earphone, Blue", + "price" : "11", + "sku" : "Skullcandy-JIB-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-JIB-Wireless-Earphone-Blue-490924363-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODI1OXxpbWFnZS9qcGVnfGltYWdlcy9oMzYvaGJlLzg4NzcxNDEwOTg1MjYuanBnfGUxNmRmNzA5ZWYwNzJjNzA4MzE5MzhmNWZkMDk3ZDc2ODY1NDc3ODU1Y2U4ODQwYThlOTMyMzI5ZDIwMWIwM2M", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "JIB" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638009"), + "name" : "Nokia BH-222 Wireless Bluetooth Headset, White", + "description" : "Nokia BH-222 Wireless Bluetooth Headset, White", + "price" : "24", + "sku" : "Nokia-BH-222-Wireless-Bluetooth-Headset,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/adea6697-d050-497e-80f1-e2d072313a52-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTI4MXxpbWFnZS9wbmd8aW1hZ2VzL2g0My9oZWIvODg0MDU5ODQ1NDMwMi5wbmd8OGU1YjM4ZGZkOTcyNzFkYWUyMTVlZTIxNmEyNGRmNjhkZGZlYjVlZjFmNGQ5ZDljOTMzMDlhYThjZDFjY2I3ZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • UI features: Charging indicator" + }, + { + "attributeName" : "Model", + "attributeValue" : "BH-222" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800a"), + "name" : "Sony MDR-ZX110NC Wired Headphone, Black", + "description" : "Sony MDR-ZX110NC Wired Headphone, Black", + "price" : "44", + "sku" : "Sony-MDR-ZX110NC-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110NC-Wired-Headphone-Black-491134953-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDk2OHxpbWFnZS9qcGVnfGltYWdlcy9oZWIvaDk1Lzg5Mjc3MTYyNDU1MzQuanBnfDJiNTEwZWQ3ZmI0NzEzYzYxNjY2OGUzZDVjNTlkMGRkMTk0MmU0ZjM3YTUwZmFkYjQ0MmFmOGE3OTlmYjM3NWQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX110NC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "220" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "115" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "80 hours" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Plug adaptor for in-flight use Operating instructions
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800b"), + "name" : "Sony MDR-EX250AP Wired Earphone, Blue", + "description" : "Sony MDR-EX250AP Wired Earphone, Blue", + "price" : "29", + "sku" : "Sony-MDR-EX250AP-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX250AP-Wired-Earphone-Blue-491229307-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NDMyfGltYWdlL2pwZWd8aW1hZ2VzL2g4Ny9oY2UvODkyNzY3MDc2MzU1MC5qcGd8MjQzYTQ4NTFkNmY2YjFiYmUyY2Y0ZjAwNjdiZWMzMzNlZmUzMjZkYmViMDlmMWJmNDI2MjJjNWI0M2E0NzQ5YQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX250AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800c"), + "name" : "Philips SHL5000/00 Wired Headphone, Black", + "description" : "Philips SHL5000/00 Wired Headphone, Black", + "price" : "16", + "sku" : "Philips-SHL5000-00-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL5000-00-Wired-Headphone-Black-490783929-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDQzOXxpbWFnZS9qcGVnfGltYWdlcy9oY2MvaDRiLzg4NzcyMDg4NjI3NTAuanBnfDlkZGQwNjAwMDU0MGUzMjEyYzdmY2VkZjkyMGE1NTlhN2I3M2ZlNzFkNjY3MzdkYWQ2ZTU5YTQyY2QyMmFmZjk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL5000/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "104" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800d"), + "name" : "Nokia Coloud Boom WH-530 Wired Headphone, Red", + "description" : "Nokia Coloud Boom WH-530 Wired Headphone, Red", + "price" : "29", + "sku" : "Nokia-Coloud-Boom-WH-530-Wired-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/491164224-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDY5NHxpbWFnZS9wbmd8aW1hZ2VzL2gwNi9oYjQvODkyNzg0MjUzMzQwNi5wbmd8MGI3ZjQxYThlMDU1OTM2MmZjMjNlNWE5ZTMzZmI0NWI2YjA3OTFmMGMwODEwZmYwNGEyZmRiZGEzYzc4NGU4Zg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Coloud Boom" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-530" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Nokia" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Audio features - Stereo
  • Directional microphone
  • Multifunction key
  • 3.5 mm stereo headphone connector
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Nokia", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800e"), + "name" : "JBL T26C Wired Headphone, White", + "description" : "JBL T26C Wired Headphone, White", + "price" : "29", + "sku" : "JBL-T26C-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/491181135-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTMxMnxpbWFnZS9wbmd8aW1hZ2VzL2gzOC9oMmMvODkyNzcyNzU4MzI2Mi5wbmd8NTc0YjgzZjZiZGY2ZTgxZTMwODE0MzcxZTU0NGY4Mjg0OGJhNmE5YjMyZjMyMGViMTZiNDFiYWZkMTg3OWZkNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T26C" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • High power magnetic drivers
  • Plug - 3.5mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863800f"), + "name" : "Jabra EasyGo Wireless Headphone, Black", + "description" : "Jabra EasyGo Wireless Headphone, Black", + "price" : "31", + "sku" : "Jabra-EasyGo-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-EasyGo-Wireless-Headphone-Black-490902675-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjM2N3xpbWFnZS9wbmd8aW1hZ2VzL2hkNy9oZmMvODkyNzgxODM1MDYyMi5wbmd8MzA2M2FjOTE1ZjZiZTA1YWZiMmY5ZGE3Y2ZlOTU5NWJjZWVlZjdlYTE3ZDRlOGQ5YzY0NDRjYzQ2YWZlZDJiNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8.4" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless Technology: Supports Bluetooth for Wireless Connectivity
  • Bluetooth Version: Supports Bluetooth Version 3.0
  • AVRCP: This Device Does Not Support Avrcp" + }, + { + "attributeName" : "Model", + "attributeValue" : "EasyGo" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638010"), + "name" : "Sennheiser HD 229 Headphone, Black/ Maroon", + "description" : "Sennheiser HD 229 Headphone, Black/ Maroon", + "price" : "66", + "sku" : "Sennheiser-HD-229-Headphone,-Black--Maroon", + "imageUrl" : "https://www.reliancedigital.in/medias/490925253-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NDU5OXxpbWFnZS9wbmd8aW1hZ2VzL2hjYS9oNjEvODkyNzgxMDE1ODYyMi5wbmd8Yjk4MTExYTMyYWZjZDE4ZTEzNjBiMTQ3ZWY5NjZkMDk2YjI3ZTg3NTNmYTIwZjYwYWNiN2M4ZDI1OTFkYzk5Mw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "HD" + }, + { + "attributeName" : "Model", + "attributeValue" : "229" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "110" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/ Maroon" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Jack plug: 3.5 mm
  • Transducer principle: Dynamic" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638011"), + "name" : "Skullcandy Aviator Headset, Brown/ Gold", + "description" : "Skullcandy Aviator Headset, Brown/ Gold", + "price" : "174", + "sku" : "Skullcandy-Aviator-Headset,-Brown--Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/491086767-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTA3MXxpbWFnZS9qcGVnfGltYWdlcy9oYmIvaGIyLzg5Mjc2MjE3NDI2MjIuanBnfDZkZThlZjY0OWZmMzQ1MzlhMTI3ZmQxNDk5YjA4Yzk4MjQ0ZDNiZGFiY2IzMTMzYTU1ODI4OWZiMTA3NmY4YzM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Aviator" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "34" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Brown/ Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Optics inspired design
  • Attacking bass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Aviator Travel Bag
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638012"), + "name" : "Sony MDR XB60EX Headphone, Gold", + "description" : "Sony MDR XB60EX Headphone, Gold", + "price" : "29", + "sku" : "Sony-MDR-XB60EX-Headphone,-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/491064857-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODA3NnxpbWFnZS9wbmd8aW1hZ2VzL2hlZC9oMDQvODkyNzgxMzQzNTQyMi5wbmd8MWNhZTlhOGViNzkzYzcwMzM3MTJkYTU3N2EwZDdjMDk0YmM5ZjQ0NzNlYzliZDYwODAwOGI1ODNmOTk0OTUxNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "MDR" + }, + { + "attributeName" : "Model", + "attributeValue" : "XB60EX" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "105" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Gold" + }, + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver Unit: 13.5 mm" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638013"), + "name" : "Sony MDR-EX150 Wired Earphone, Red", + "description" : "Sony MDR-EX150 Wired Earphone, Red", + "price" : "15", + "sku" : "Sony-MDR-EX150-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX150-Wired-Earphone-Red-491229316-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxODY1NXxpbWFnZS9qcGVnfGltYWdlcy9oYWUvaDdlLzg4NzcxODQwMjQ2MDYuanBnfDU1Y2FjZDAzNjdlNDZmMGQ5NmY3MDJiZGYyZmU4ZDQ0ZjRiOTc5NDVmOTUwZjQ2MmMzMzM4MmQzYWI2MjZlNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX150" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638014"), + "name" : "LG Tone Active+ HBS-A100 Wireless Earphone, Silver", + "description" : "LG Tone Active+ HBS-A100 Wireless Earphone, Silver", + "price" : "174", + "sku" : "LG-Tone-Active+-HBS-A100-Wireless-Earphone,-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/LG-Tone-Active-HBS-A100-Wireless-Earphone-Silver-491332664-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjUyM3xpbWFnZS9qcGVnfGltYWdlcy9oYjEvaGUzLzg5Mjc2Mjk5MzQ2MjIuanBnfDhiMWRiODEwZWE2NjRhZjA4ZGE0NDUwMjg1ODdkNThmZmJmZWQ0NDczNWE4ZmE4OWEwMDRjMDBkNmYzNDMyZDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Talk Time: Up to 13 hours (Speaker Mode up to 9.5 hours)" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Model", + "attributeValue" : "HBS-A100" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "LG" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Silver" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "144.78 (W) x 147.32 (H) x 17.78 (D) mm" + }, + { + "attributeName" : "Weight", + "attributeValue" : "60" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "LG", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638015"), + "name" : "JBL C100SI Wired Earphone, Black", + "description" : "JBL C100SI Wired Earphone, Black", + "price" : "19", + "sku" : "JBL-C100SI-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-C100SI-Wired-Headphone-Black-491281247-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDg4NnxpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDJjLzg5Mjc3NjIyNTE4MDYuanBnfGExYWUzZDEzZDliODRhODVkMDE5ZGEwNzFlMzIwNTEzMmZkOTk5MDNmZTNjNGQyNjJmNWYyMDk1MGMzMmJhMGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "C100SI" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Compatible with all Android and iOS devices
  • Driver Sensitivity - 100 +/-3dBSPL
  • Driver : Advanced 9mm driver
  • Rated power input : 3mW
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638016"), + "name" : "Amkette Trubeats Pulse S6 Wired Headphone, Blue", + "description" : "Amkette Trubeats Pulse S6 Wired Headphone, Blue", + "price" : "11", + "sku" : "Amkette-Trubeats-Pulse-S6-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Trubeats-Pulse-S6-Wired-Headphone-Blue-491229190-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTg2M3xpbWFnZS9qcGVnfGltYWdlcy9oNjcvaDc5Lzg5Mjc2NTMwNjg4MzAuanBnfDdjZTM2MzUyYjAwYjY2NjNmODFlMTE2MmQ4ZjFhMTlkZGExYWQ3NmJmNDU0MmE2ZGUxOTBiYzVmMDJhODkyMDk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Series", + "attributeValue" : "Trubeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "Pulse S6" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 Eartips
  • Mobile Adapter
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Driver - Neodymium magnet
  • Driver Diameter - 10mm
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638017"), + "name" : "B&O BeoPlay Form 2i Wired Headphone, Green", + "description" : "B&O BeoPlay Form 2i Wired Headphone, Green", + "price" : "182", + "sku" : "B&O-BeoPlay-Form-2i-Wired-Headphone,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/39179143-9a41-4dd6-ae3e-e05543b568d4-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjIxNnxpbWFnZS9qcGVnfGltYWdlcy9oMGEvaDBkLzg4MDQ5OTU0OTgwMTQuanBnfDM2YTlmZTBkNWY5ZWQzZjZiZWM1YzFmZTlmNWNlMjNjMmIyYWQ2Yjk0NDUzNWJmMDcxMjQ5NjBlMzQwNDRlYzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "Form 2i" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "90" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638018"), + "name" : "Skullcandy Skullcrusher Headphone, Black", + "description" : "Skullcandy Skullcrusher Headphone, Black", + "price" : "64", + "sku" : "Skullcandy-Skullcrusher-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Skullcrusher-Headphone-Black-491086773-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyOTE5NXxpbWFnZS9qcGVnfGltYWdlcy9oYmUvaDVlLzg5Mjc4MTA4MTM5ODIuanBnfGM4ZTViZGUyMDY0YTk5NzYzYmNjYzRjOGM3N2IwZjcxNDMxZjdmMTQ2NDIyOTAwMWQzNDRlMjk1YTg3ZGZlNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Skullcrusher" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme sound delivers attacking bass" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Satin Drawstring Bag
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638019"), + "name" : "Skullcandy Hesh 2 S6HSDZ-072 Wired Headphone, White/ Gun Metal", + "description" : "Skullcandy Hesh 2 S6HSDZ-072 Wired Headphone, White/ Gun Metal", + "price" : "69", + "sku" : "Skullcandy-Hesh-2-S6HSDZ-072-Wired-Headphone,-White--Gun-Metal", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Hesh-2-S6HSDZ-072-Wired-Headphone-White-Gun-Metal-491009071-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODkyNHxpbWFnZS9wbmd8aW1hZ2VzL2gxNC9oMzgvODkyNzg2MjM5MDgxNC5wbmd8YjdmNmQyNjAwMWI3ZDM4NjdmZjYwYTA0N2YxZTgwY2I4NmViZjYwNmY4YzI4NjRlOThlZDkzMWYzMzQ5NDRiYQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Hesh 2" + }, + { + "attributeName" : "Model", + "attributeValue" : "S6HSDZ-072" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/ Gun Metal" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801a"), + "name" : "Philips SHL3300BK/00 Wired Headphone, Black", + "description" : "Philips SHL3300BK/00 Wired Headphone, Black", + "price" : "37", + "sku" : "Philips-SHL3300BK-00-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3300BK-00-Wired-Headphone-Black-491163855-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODI4NnxpbWFnZS9qcGVnfGltYWdlcy9oMWIvaGFkLzg5Mjc4NTAzOTc3MjYuanBnfDFhMDM5MGQ1ZWQ4NDQwMDAyNTEwYjI1YWUxYjkyZTRhZGY0MTg5MzlhMGU4ZGE5ZGNlN2E5ZjIwZTQ4ZTY5MzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3300BK/00" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "108" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Weight", + "attributeValue" : "306" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801b"), + "name" : "Philips ActionFit SHQ3305WS/00 Wired Earphone, White", + "description" : "Philips ActionFit SHQ3305WS/00 Wired Earphone, White", + "price" : "24", + "sku" : "Philips-ActionFit-SHQ3305WS-00-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ3305WS-00-Wired-Earphone-White-491183212-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM1OXxpbWFnZS9qcGVnfGltYWdlcy9oNjAvaDNjLzg5Mjc2Njc4MTQ0MzAuanBnfDdiNWI3ZDIzNGI1ODI0MzUzN2RiMjVlZjRmZDYyYjUwMzhiYTdhMzExZjU2ZmJjZmE0ZTJiMTQ0NGNkYzEyYmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ3305WS/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "23.1" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable management : Cable clip
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Maximum power input : 20 mW
  • Magnet type - Neodymium
  • Acoustic system : Closed
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801c"), + "name" : "Philips ActionFit SHQ1305OR/00 Wired Headphone, Orange", + "description" : "Philips ActionFit SHQ1305OR/00 Wired Headphone, Orange", + "price" : "19", + "sku" : "Philips-ActionFit-SHQ1305OR-00-Wired-Headphone,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-ActionFit-SHQ1305OR-00-Wired-Headphone-Orange-491183202-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0ODcxMnxpbWFnZS9wbmd8aW1hZ2VzL2g4Yy9oZGEvODkyNzg4NTAwMDczNC5wbmd8NWIxNzlmMzQyMDllN2E2M2RjMmZjZjVlZjVjMDlhMjM4Mzc1MzZhMThlY2ZjMzI5ZDM1Nzc4ZjkxOTc3M2QxMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ1305OR/00" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • Cable clip
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Maximum power input: 10 mW
  • Speaker diameter: 13.6 mm
  • Magnet type: Neodymium
  • Cable Connection: two-parallel" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801d"), + "name" : "Jabra Halo Smart Wireless Earphone, Black", + "description" : "Jabra Halo Smart Wireless Earphone, Black", + "price" : "51", + "sku" : "Jabra-Halo-Smart-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Jabra-Halo-Smart-Wireless-Earphone-Black-491277098-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTQ5NXxpbWFnZS9qcGVnfGltYWdlcy9oMzgvaDdlLzg5Mjc3MzkzNzk3NDIuanBnfGRiMWQ2YzViNTU1OTM0ZWZlNmU1MjQwZWRiYmU5NTQyOTM4NWM1OTkxNDdkMDJkMTliYTlkMzUxNDc5NGM5MDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sets of extra EarGels (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Halo Smart" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Jabra" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Operating range - Up to 10 meters (33 feet)
  • Call Vibration Alert
  • Talk time - Up to 17 hours
  • Standby time - Up to 22 days
  • Magnetic in-ear headphones
  • Voice button
  • Answer/end call
  • Reject call
  • Voice dialling
  • Last number redial
  • Volume control
  • Track control
  • Play/pause music
  • Voice guidance
  • " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "38" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "97" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Jabra", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801e"), + "name" : "Philips ActionFit SHQ4300LF/00 Wired Earphone, Lime Yellow & Grey", + "description" : "Philips ActionFit SHQ4300LF/00 Wired Earphone, Lime Yellow & Grey", + "price" : "22", + "sku" : "Philips-ActionFit-SHQ4300LF-00-Wired-Earphone,-Lime-Yellow-&-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/3685a299-485c-4e22-ab46-a145347ab87c-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzgyMHxpbWFnZS9wbmd8aW1hZ2VzL2hhZi9oNjMvODgwNTAwMjcwNjk3NC5wbmd8M2UwNGVkYWJiYzgyYTc1NTk4Zjc2MmQwZGZhNDk3MmMxNTk0M2Y2OTQ1OGRlYmE4ZGI3NDEzNDUwMjE0N2IxNQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "ActionFit" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ4300LF/00" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Lime Yellow & Grey" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Maximum power input : 20 mW
  • Magnet type - Neodymium
  • Acoustic system : Closed
  • " + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "6 Months" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863801f"), + "name" : "Sony MDR-ZX110APW Wired Headphone, White", + "description" : "Sony MDR-ZX110APW Wired Headphone, White", + "price" : "25", + "sku" : "Sony-MDR-ZX110APW-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-ZX110APW-Wired-Headphone-White-491181322-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzY1NXxpbWFnZS9qcGVnfGltYWdlcy9oYjkvaGNlLzg5Mjc4MDM2NzA1NTguanBnfDE2NGY0ODVhYzJkOTdhNTVjMzlmZmJlY2E5OTkzOTIzYWJiZGRkNTU2YjE0OGRmN2U0ODlmMDRmNjUzZTZhNTU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-ZX110APW" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "120" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Plug - Four-conductor gold-plated L-shaped stereo mini plug
  • 30mm Dynamic Driver Unit
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638020"), + "name" : "Philips SHB5950BK Wireless Earphone, Black", + "description" : "Philips SHB5950BK Wireless Earphone, Black", + "price" : "53", + "sku" : "Philips-SHB5950BK-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB5950BK-Headphones-Headsets-491277055-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTc2NXxpbWFnZS9qcGVnfGltYWdlcy9oNzYvaGJkLzg4Nzk2NjUwODY0OTQuanBnfGJlYmE0NjdlNTI0ODczMTUzN2Y1OGNiYjMxNTJhMmYwOWUxNzc4OTVhYzkzZTZjNmNkNDM4YzM1MjAyZTY4YmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB5950BK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "30" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 -21 000 Hz" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638021"), + "name" : "JBL T100A Wired Earphone, Black", + "description" : "JBL T100A Wired Earphone, Black", + "price" : "15", + "sku" : "JBL-T100A-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T100A-Wired-Headphone-Black-491173092-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDAwMnxpbWFnZS9wbmd8aW1hZ2VzL2gxMS9oYTcvODkyNzg0NDE3MTgwNi5wbmd8OTYzYjA4NTUyZmM0YWQyNmYxZGNiZjYwZGQwYTAzNjY5YzI1MzNlYTk4MWU5NmJhNGIyZGUyNzJkN2VmY2E5OA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T100A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 sizes of silicone ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Single button remote/mic
  • PureBass performance
  • High sensitivity" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638022"), + "name" : "Skullcandy 2XL Barrel Wired Headphone, White/Black", + "description" : "Skullcandy 2XL Barrel Wired Headphone, White/Black", + "price" : "44", + "sku" : "Skullcandy-2XL-Barrel-Wired-Headphone,-White-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/8ad4fdc0-f839-4d4f-8c8c-95f94f18af2f-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjEyN3xpbWFnZS9qcGVnfGltYWdlcy9oMGUvaDA2Lzg4MDQ5OTQxODcyOTQuanBnfDUxOGExY2E0MThlZTNjMzhiYmY5ZjEzYTRiZTI5ZWRjMTM3NjMzZDA4ZjBlMDI5NmU5MzQwZDNjYWY3MGQ0OTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Model", + "attributeValue" : "Barrel" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White/Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638023"), + "name" : "Skullcandy 2XL Spoke X2SPFY-836 Wired Headphone, White", + "description" : "Skullcandy 2XL Spoke X2SPFY-836 Wired Headphone, White", + "price" : "16", + "sku" : "Skullcandy-2XL-Spoke-X2SPFY-836-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/661bf712-8f8b-4f10-852f-b5841821b328-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjQwN3xpbWFnZS9qcGVnfGltYWdlcy9oZWEvaDRmLzg4MDQ5OTAyNTUxMzQuanBnfGU5MjhhZDM0Yjc2YWM0OGJhZDMyZmNiYzdmZDkxYmY2NTZiZDIwN2Q4ZmU5NDgxMmZkNTZhZDM1MDBlNzA2ZTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "2XL" + }, + { + "attributeName" : "Series", + "attributeValue" : "Spoke" + }, + { + "attributeName" : "Model", + "attributeValue" : "X2SPFY-836" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Magnet Type: NdFeb
  • Plug Type: 3.5 mm gold plated
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638024"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Red", + "description" : "JBL Reflect Mini BT Wireless Earphone, Red", + "price" : "87", + "sku" : "JBL-Reflect-Mini-BT-Wireless-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLREFMINIBTRED-Headphones-Headsets-491377977-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNzk1MHxpbWFnZS9qcGVnfGltYWdlcy9oYjQvaDNiLzg4ODk4NjI3MTc0NzAuanBnfGEyMjM0MDc4OTVlZWJiYzNhZjA1YjUyNjFlNjEyYmQ1NmNlMTRlMTNiMmI5ZmFlNWRlZDk1NGE4YmJlMGM0MTE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 Button In-Line Control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "5.8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638025"), + "name" : "JBL T450BT Wireless Headphone, Black", + "description" : "JBL T450BT Wireless Headphone, Black", + "price" : "51", + "sku" : "JBL-T450BT-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT450BTBLK-Headphones-Headsets-491332665-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODQwN3xpbWFnZS9qcGVnfGltYWdlcy9oYmYvaDk3Lzg4ODk4NDcyNTA5NzQuanBnfGI5NWZjOGQ3MDUwNDZmZDQ0OTQyZDZlY2RkMjgyMmVhNzEyYzcwMGVkYTU3Njc0ZmY4ZGY0NDE5ODVjNDhlZWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "11 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T450BT" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638026"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Black", + "description" : "JBL Reflect Mini BT Wireless Earphone, Black", + "price" : "87", + "sku" : "JBL-Reflect-Mini-BT-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-BT-Headphones-and-Headsets-491377975-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTU4NHxpbWFnZS9qcGVnfGltYWdlcy9oYWYvaGJhLzg5MzY4MzkwNTMzNDIuanBnfDhhNGY5NzY0ODBjY2VjNGIxNTBhZjQ5NzQ0NDg5ZWQ0MWVjMmM0YzdmYTQ5MjEzYjhkZTIwNWRjZTcwZDc0ZjY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 button in-line control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10-22" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638027"), + "name" : "JBL T110BT Wireless Earphone, Grey", + "description" : "JBL T110BT Wireless Earphone, Grey", + "price" : "37", + "sku" : "JBL-T110BT-Wireless-Earphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110BT-Headphones-and-Headsets-491377969-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMjI1MnxpbWFnZS9qcGVnfGltYWdlcy9oNDMvaGMwLzg5MzY4Mjc5Nzc3NTguanBnfDYzODYxMzFjNzgyMDdlZDhhNjk3ODcwM2MwNTIwMTUyNmJmOGZjNzhhYTEwMWRjYjQ1YTU0NTViMzI3MWZhYWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.2" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "96" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638028"), + "name" : "JBL E25BT Wireless Earphone, White", + "description" : "JBL E25BT Wireless Earphone, White", + "price" : "51", + "sku" : "JBL-E25BT-Wireless-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E25BT-Headphones-and-Headsets-491377974-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTgzNnxpbWFnZS9qcGVnfGltYWdlcy9oYzQvaDU1Lzg5MjIzMjY1MzIxMjYuanBnfDAxYjkzM2MwYTI3ZTEwOTE5Y2MxNTE5NGU1N2I4YjMxMjFhOTUwNmNjYjhlNzZjNzhiZWU1OTNiYTQxNzUyMmQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "E25BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638029"), + "name" : "JBL T110BT Wireless Earphone, White", + "description" : "JBL T110BT Wireless Earphone, White", + "price" : "37", + "sku" : "JBL-T110BT-Wireless-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T110BT-Headphones-and-Headsets-491377970-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxOTA5MHxpbWFnZS9qcGVnfGltYWdlcy9oZTIvaDQwLzg5MjIyODIwOTg3MTguanBnfDFjZWZjYzI5MTMwNzQ3MDZiODljNTk2NzY5YjE3MDU5YzFiY2I3ZDU5OTY3ZmRiZDViY2FhMWZjNDdmZjE5OTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 x sizes of ear tips (S" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.0" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "T110BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.2" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "96" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802a"), + "name" : "Sennheiser Momentum Free Wireless Earphone, Black", + "description" : "Sennheiser Momentum Free Wireless Earphone, Black", + "price" : "218", + "sku" : "Sennheiser-Momentum-Free-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-MOMENTUM-Free-Headphones-and-Headsets-491378225-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDE2N3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDk5Lzg5MjIzMzMwODU3MjYuanBnfDAwMzBmNjdlYTQ3YWNjYTYzMDhlODMzNTcyY2M5ZWFkZDcwODcwZWU0YmY4ODgzMmEyNWFkMTQzOWQwMWZkNGI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "
  • USB Charging Cable
  • \n
  • Ear Adaptor Set (XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "6 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Momentum Free" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "40" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15-22" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802b"), + "name" : "Philips SHB3075 Wireless Headphone, Blue", + "description" : "Philips SHB3075 Wireless Headphone, Blue", + "price" : "51", + "sku" : "Philips-SHB3075-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB3075-Headphones-and-Headstes-491362697-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzUyMHxpbWFnZS9qcGVnfGltYWdlcy9oNjQvaDdmLzg5NDYzNjQ4NDIwMTQuanBnfDY4OWM5NjhlZDE2YWUxMWQ3OTA1ODI4MzFhNWM3NmFmODRiNGFlZWQzNDRhNTAzNjg2ZjI4ZWQ3MzUxM2I0NmU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "166" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3075" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 21000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "163" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "12" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802c"), + "name" : "Philips SHE4305 Wired Earphone, Blue", + "description" : "Philips SHE4305 Wired Earphone, Blue", + "price" : "19", + "sku" : "Philips-SHE4305-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE4305-Headphones-and-Headstes-491362701-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMjc5NnxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDhiLzg5NDY4OTQ4MzE2NDYuanBnfDM1YTA0ZTVkNDZiZmMxYWNlMDNmZTE5NzFmOGVkZWM2MTcxMzcyZDEzMDBiMTM3OWM0OGQ4MzMyMzZmZjRkN2E", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE4305" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "3 cms (W) x 2.8 cms (D) x 8 cms (H)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802d"), + "name" : "Samsung U-Flex EO-BG950CLEGIN Wireless Earphone, Blue", + "description" : "Samsung U-Flex EO-BG950CLEGIN Wireless Earphone, Blue", + "price" : "73", + "sku" : "Samsung-U-Flex-EO-BG950CLEGIN-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Samsung-EO-BG950CLEGIN-Headphones-and-Headstes-491362829-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0Mjc1MHxpbWFnZS9qcGVnfGltYWdlcy9oMWEvaDg1Lzg5NDY5NTM3NDg1MTAuanBnfDQ5MzVkMjM2NTM2OTBkYmU5OWYzYzYwOTAzZGQ5MGFlMGIxM2I0MTQ4OGE5YjEwNTM4ZTJiMDM0ZTg4Yzg1Nzg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earphones" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "U-Flex" + }, + { + "attributeName" : "Model", + "attributeValue" : "EO-BG950CLEGIN" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Samsung" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Samsung", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802e"), + "name" : "Skullcandy Method S2CDW-J520 Wireless Earphone, White", + "description" : "Skullcandy Method S2CDW-J520 Wireless Earphone, White", + "price" : "80", + "sku" : "Skullcandy-Method-S2CDW-J520-Wireless-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-S2CDW-J520-Headphones-and-Headstes-491336156-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTIwMXxpbWFnZS9qcGVnfGltYWdlcy9oZjgvaDgzLzg5NDY5NDI0MTA3ODIuanBnfGQxYzQ1N2I4ZDg0OGYyYWUyNjQyMGViOTY4ZDZiYzZiN2Y4ZDNiY2ZhNWM3NDMzODQwOGIzM2ZkZjcwY2IxMzc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Earbud" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "9 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Method" + }, + { + "attributeName" : "Model", + "attributeValue" : "S2CDW-J520" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863802f"), + "name" : "Sony MDR-EX14AP Wired Earphone, Black", + "description" : "Sony MDR-EX14AP Wired Earphone, Black", + "price" : "19", + "sku" : "Sony-MDR-EX14AP-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-EX14AP-Headphones-and-Headstes-491378312-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNzkzMXxpbWFnZS9qcGVnfGltYWdlcy9oZjUvaDc4Lzg5NDY4MTc0MzM2MzAuanBnfDQ0M2MxYzEzNTUzZGFkZDdkYThhOWZiYjU1Yjc2Y2I0NDM3YzBiNzRjMzljNDcxZTc0YmEwNDg0NDVjNmEyNzY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-EX14AP" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "8 - 22000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Medical grade silicon" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Earbuds - S x2" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 1.2 m Cord Length
  • \n
  • Gold-plated L-shaped four-conductor stereo mini
  • \n
  • Y-type Cord Type
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638030"), + "name" : "Amkette Truebeats X9 Wired Earphone, Sleek Silver", + "description" : "Amkette Truebeats X9 Wired Earphone, Sleek Silver", + "price" : "12", + "sku" : "Amkette-Truebeats-X9-Wired-Earphone,-Sleek-Silver", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X9-Headphones-and-Headstes-491320285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDg4NXxpbWFnZS9qcGVnfGltYWdlcy9oYzYvaDFhLzg5NDY5MTk4NjYzOTguanBnfDA1ZWU1OGUzYjgzOGIwMjc2ZjI3MDNhYjYzZTJlYWU3YmE2YzNiYjA2MGE4MjdlYThkNTQyZjVmZjA1YjA3YzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Sleek Silver" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638031"), + "name" : "Amkette Truebeats X7 Street Hipster Wired Earphone, White-Red-Black", + "description" : "Amkette Truebeats X7 Street Hipster Wired Earphone, White-Red-Black", + "price" : "8", + "sku" : "Amkette-Truebeats-X7-Street-Hipster-Wired-Earphone,-White-Red-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Headphones-and-Headstes-491320281-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzU4OXxpbWFnZS9qcGVnfGltYWdlcy9oMDIvaDg0Lzg5NDY5MTkyMTEwMzguanBnfDIwZjg5Yjg0M2JjZWUwODgxZjRmYmQ1NDI0N2MwOTU0MWVkYmRkMGYzYmIzMzU2MzhjNjdhNjYyYjEwMjk5YTY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White-Red-Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638032"), + "name" : "Amkette Truebeats X7 Street Chiller Wired Earphone, Blue", + "description" : "Amkette Truebeats X7 Street Chiller Wired Earphone, Blue", + "price" : "8", + "sku" : "Amkette-Truebeats-X7-Street-Chiller-Wired-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X7-Headphones-and-Headstes-491320283-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjM4MHxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDc1Lzg5NDY5MTg1NTU2NzguanBnfGRmNzRlNzUwOWNkYjc1MmIyN2ExODQ2MDFiMzVlOGZlZDFmODA1NjFmY2NlNTVmODk4MzQ2NDIzNTYxMThjNTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X7" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black-Red-Blue" + }, + { + "attributeName" : "Features", + "attributeValue" : "Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638033"), + "name" : "Amkette Truebeats X9 Wired Earphone, Real Rose Gold", + "description" : "Amkette Truebeats X9 Wired Earphone, Real Rose Gold", + "price" : "12", + "sku" : "Amkette-Truebeats-X9-Wired-Earphone,-Real-Rose-Gold", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-X9-Headphones-and-Headstes-491320288-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNDQwN3xpbWFnZS9qcGVnfGltYWdlcy9oMTIvaDYwLzg5NDY5MDYyMzQ5MTAuanBnfDVhZjhkMjVkNjZlZThiMmUzMGVlNTdmY2UzNzUyOWIyZjM2MWNkMzZjZDY5MWQ3MzE5ZTI5NTRkODk2NjQ5OTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Truebeats" + }, + { + "attributeName" : "Model", + "attributeValue" : "X9" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "92" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Real Rose Gold" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Extra earbuds in Small" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638034"), + "name" : "Philips SHB3075 Wireless Headphone, Red", + "description" : "Philips SHB3075 Wireless Headphone, Red", + "price" : "51", + "sku" : "Philips-SHB3075-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB3075-Headphones-and-Headstes-491362698-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MjY0M3xpbWFnZS9qcGVnfGltYWdlcy9oOTEvaDNkLzg5NDY5MDIzMDI3NTAuanBnfGUwNTE0ZTMyZTNlOTgxNzE1NDgzYzU2NGEwOThlYzJmMDhhNWE0YmEyNDIxYjNkY2E2MDMzZjBhYTc4OTc4YzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "12 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3075" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "User Manual" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 21 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638035"), + "name" : "Philips SHE4305 Wired Earphone, White", + "description" : "Philips SHE4305 Wired Earphone, White", + "price" : "19", + "sku" : "Philips-SHE4305-Wired-Earphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHE4305-Headphones-and-Headstes-491362703-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTI1NXxpbWFnZS9qcGVnfGltYWdlcy9oODkvaDY1Lzg5NDY4OTg2OTgyNzAuanBnfGE3MGViOTQ2YTJkMDQ4MDM3Mjk4ZGExYjc3ZTM5Mjg0MzNkMjg0NDA1ODFmM2E1NmQ0Njk1M2QxZDFhZDg4MTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHE4305" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "107" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "12.2" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "11.7" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "3 cms (W) x 2.8 cms (D) x 8 cms (H)" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638036"), + "name" : "Philips SHL3070 Wired Headphone, White", + "description" : "Philips SHL3070 Wired Headphone, White", + "price" : "22", + "sku" : "Philips-SHL3070-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3070-Headphones-and-Headstes-491362705-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzUxNXxpbWFnZS9qcGVnfGltYWdlcy9oNGUvaGMwLzg5NDY4OTczODc1NTAuanBnfDM0ZGZhYzhiOGQzYWM4MjgyNDkxZGI5M2Q3NzRlMGZlNzdiYzViYzU5MDU3NmI0NDhhNzQ3YzZiNTdjZmM3NjA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3070" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638037"), + "name" : "Philips SHB3075 Wireless Headphone, White", + "description" : "Philips SHB3075 Wireless Headphone, White", + "price" : "51", + "sku" : "Philips-SHB3075-Wireless-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHB3075-Headphones-and-Headstes-491362699-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzExMnxpbWFnZS9qcGVnfGltYWdlcy9oMmIvaDkwLzg5NDY4OTI4MDAwMzAuanBnfDA0ODZkMzgzYjE0NzQxMjdiZmY0OGE2Y2I5NDMwYmU5ZTEzNmI0OWUxOTVmZjJkNDdjMDFkZjM3MDIwZmM3MDI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "12 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHB3075" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "User Manual" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 21 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "132" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638038"), + "name" : "Philips SHQ 1205 Wired Earphone, Green", + "description" : "Philips SHQ 1205 Wired Earphone, Green", + "price" : "15", + "sku" : "Philips-SHQ-1205-Wired-Earphone,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ-1205-Headphones-and-Headstes-491362746-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODI4MnxpbWFnZS9qcGVnfGltYWdlcy9oMDQvaGNkLzg5NDY4OTI0NzIzNTAuanBnfDIyY2IyOGJmY2RlNmRmNDk4Y2Y2ZWNkNzcxNThlNmZiMDQzNWIwMWE1MjYxOWEyOTk5MTZiMWUzMDgxYWFlODI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ 1205" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15 Hz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638039"), + "name" : "Philips SHQ 1205 Wired Earphone, Black", + "description" : "Philips SHQ 1205 Wired Earphone, Black", + "price" : "15", + "sku" : "Philips-SHQ-1205-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHQ-1205-Headphones-and-Headstes-491362745-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzQ3N3xpbWFnZS9qcGVnfGltYWdlcy9oNmYvaDdkLzg5NDY4OTIxNDQ2NzAuanBnfGYzOTQ1NDI0YjYyNjdjMmZjNjIyMDgxYTRlY2ZkYzJkMWZmMmE1OTMxZTBmMTMyZTZmOTEwN2U5ZDNmMDdjOWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "SHQ 1205" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "15 Hz - 22 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "13.6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "4" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803a"), + "name" : "Philips SHL3075 Wired Headphone, White", + "description" : "Philips SHL3075 Wired Headphone, White", + "price" : "26", + "sku" : "Philips-SHL3075-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075-Headphones-and-Headstes-491362709-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjM3MnxpbWFnZS9qcGVnfGltYWdlcy9oOWUvaDBiLzg5NDY4ODY1NzQxMTAuanBnfDEzYmRmNjg3MTNjMzM2MWVlZjk0Yzg5MmViZmY5MjE4NTgxMWMyMjhlN2E3ZGU4ZjhjMTAwZGRjN2E5ZTY3YWM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 Hz - 23 kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "13.5 cms (W) x 4 cms (D) x 18.5 cms (H)" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803b"), + "name" : "JBL Endurance Run Wired Earphone, Red", + "description" : "JBL Endurance Run Wired Earphone, Red", + "price" : "24", + "sku" : "JBL-Endurance-Run-Wired-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550854-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MDY3fGltYWdlL2pwZWd8aW1hZ2VzL2g1Mi9oNGQvOTExNDUxMjc1MjY3MC5qcGd8YWM5MzlmY2E2OGE5ZWRlMmM4YWNjMDIwYTQxNmNiMWZjNGE3OWRkMzBiNTU2M2E5MTRiNGM3ZDFkYWQ0NjlmOA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803c"), + "name" : "Philips SHL3095BL/94 Wired Headphone, Blue", + "description" : "Philips SHL3095BL/94 Wired Headphone, Blue", + "price" : "20", + "sku" : "Philips-SHL3095BL-94-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3095BL-94-Wired-Headphone-Blue-491229463-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjYxNnxpbWFnZS9qcGVnfGltYWdlcy9oNDgvaDdjLzg5Mjc3Mzg3MjQzODIuanBnfGQ5ZjU4NDc3N2VjYTU5MzQ2YzQzMDYyMTgyNDFmZGU5MzVlYmRkZmJlZTk0MTJlYWRhYjQwYTUyNWQzNTk2MjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3095BL/94" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "106" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803d"), + "name" : "Plantronics M70 Wireless Headsets, Black/ White", + "description" : "Plantronics M70 Wireless Headsets, Black/ White", + "price" : "40", + "sku" : "Plantronics-M70-Wireless-Headsets,-Black--White", + "imageUrl" : "https://www.reliancedigital.in/medias/1b534125-c805-4d02-b664-f0a622f5c4a2-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjUyM3xpbWFnZS9qcGVnfGltYWdlcy9oYTcvaDlhLzg4MTk0NTAwMTk4NzAuanBnfGUzNzE3NzBkODRhMDkxN2RjYzhjYTQ3MjAzYzIzYjUyMGQ0N2FmOTAwOTNiMTg1MTM5MDUxY2NlYzgyYjIzZmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Weight", + "attributeValue" : "8" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/ White" + }, + { + "attributeName" : "Model", + "attributeValue" : "M70" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Plantronics" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Polymer (Li-Poly)" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Plantronics", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803e"), + "name" : "JBL Reflect Mini BT Wireless Earphone, Blue", + "description" : "JBL Reflect Mini BT Wireless Earphone, Blue", + "price" : "87", + "sku" : "JBL-Reflect-Mini-BT-Wireless-Earphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-Reflect-Mini-BT-Headphones-and-Headsets-491377976-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDQzOHxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaGZhLzg5MjIzMjgxNzA1MjYuanBnfDMxZTE1N2E0M2IxMzMwYTBlNmMzYTk1MWUxMDMzMTFjZWY0OWU0OWM3ZmMwOGNkMjgwNzUxNDhiYzQxNjEzYzA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "3 button in-line control" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Model", + "attributeValue" : "Reflect Mini BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "10-22" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863803f"), + "name" : "JBL TUNE 500BT Wireless Headphone, Blue", + "description" : "JBL TUNE 500BT Wireless Headphone, Blue", + "price" : "56", + "sku" : "JBL-TUNE-500BT-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLT500BTBLU-Headphone-and-Headset-491431263-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzM4fGltYWdlL2pwZWd8aW1hZ2VzL2gwNS9oMzcvOTEyMDc0MTI2MTM0Mi5qcGd8ZWFkZTVjNGZiMDlkNDY1NjM1NzgxM2EyZDBkMzdlYTBmMTdiMzViNDRlOWNjN2QyM2ExMWY3YjFiMWRlMjEzZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Li-Ion/Li-Poly" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "16 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "TUNE 500BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "155" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "16" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638040"), + "name" : "Philips SHL3195BK Wired Headphone, Black", + "description" : "Philips SHL3195BK Wired Headphone, Black", + "price" : "27", + "sku" : "Philips-SHL3195BK-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3195BK-Wired-Headphone-Black-491229459-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzg0OHxpbWFnZS9qcGVnfGltYWdlcy9oMjEvaDg1Lzg5Mjc3MDA5MTAxMTAuanBnfDI3MDQ4Njg1NmU0NTAwZGE0ODkzZTRlNmJhZjVhMDM2MDMzYTBhOTM5MjIyYjVmMGIwN2I2NDRlMDMzZGQ2MmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3195BK" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "24" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638041"), + "name" : "Philips SHL3075BK/27 Wired Headphone, Black", + "description" : "Philips SHL3075BK/27 Wired Headphone, Black", + "price" : "26", + "sku" : "Philips-SHL3075BK-27-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Philips-SHL3075BK-Headphones-Headsets-491362706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzkwMnxpbWFnZS9qcGVnfGltYWdlcy9oN2MvaGY4Lzg4Nzk3MDI4MzUyMzAuanBnfDVjYmNhZWI2ZjQ1NjgyNjA4YWMyYTdjNWYzNjk1MmIyNzczMWJiMDA4MTJjMWJmMzExYjZlYjllNDY0MWY5NDA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SHL3075BK/27" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Philips" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "103" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "9 - 23 000  Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Philips", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638042"), + "name" : "Skullcandy Ink'd Wireless Earphone, Black/Grey", + "description" : "Skullcandy Ink'd Wireless Earphone, Black/Grey", + "price" : "58", + "sku" : "Skullcandy-Ink'd-Wireless-Earphone,-Black-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Ink-d-Wireless-Earphone-Black-491315285-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzMxMnxpbWFnZS9qcGVnfGltYWdlcy9oYzkvaDkyLzkwMjY4Nzg0NzIyMjIuanBnfGIzZmI4M2FlYTVhM2RkM2E3MWQwNTc1MmZhMWZlMzc0MWZlN2UyNjc3NGVlNjk4ZTNkZmQ3YTFkNzY0NDNjYTk", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "Model", + "attributeValue" : "Ink'd" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lightweight and low-profile around-the-neck collar
  • Bluetooth \n\nwireless with 8-hour rechargeable battery
  • Call track and volume \n\ncontrol via the built-in microphone and remote
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Grey" + }, + { + "attributeName" : "Weight", + "attributeValue" : "25" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "10" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638043"), + "name" : "Reconnect Probuds2 Ultra RAWEB1003 Wireless Earphone, Red/Black", + "description" : "Reconnect Probuds2 Ultra RAWEB1003 Wireless Earphone, Red/Black", + "price" : "44", + "sku" : "Reconnect-Probuds2-Ultra-RAWEB1003-Wireless-Earphone,-Red-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Wireless-Earphone-RAWEB1003-491430964-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w5MTkzfGltYWdlL2pwZWd8aW1hZ2VzL2gwYi9oMGYvOTA4ODM1NDYxNTMyNi5qcGd8MWE0ZTJhM2NjMGRjMTI1OTAwMzE1MmE0MzhkMDg5MWUxODQyY2U1MDIyZTU1M2FiOGYxYjFhZGQ0ZDM0ZWZhZQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "Up to 2.5" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "300" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Model", + "attributeValue" : "Probuds2 Ultra RAWEB1003" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wireless Music Streaming with Sporty Design Earphones
  • \n
  • Tangle Free Flat Earphone Cables
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red/Black" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "8" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638044"), + "name" : "itek HD BTHP001 MSD Wireless Headphone, Blue", + "description" : "itek HD BTHP001 MSD Wireless Headphone, Blue", + "price" : "37", + "sku" : "itek-HD-BTHP001-MSD-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/itek-BTHP001-MSD-Headphone-and-Headsets-491431365-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMTU3OHxpbWFnZS9qcGVnfGltYWdlcy9oMjcvaGU1LzkxMzAzNTczMjU4NTQuanBnfDczMjE4YmIzNzgyMTk1OGY2MGU5NmZjMTNlOThmODA3MGE3YjhkNGI4NzU3ZTU5MjA3NjFkN2IyMTRmMTZhNDM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "BTHP001 MSD" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "itek" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Memory Card Type", + "attributeValue" : "microSD Card" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "6" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "itek", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638045"), + "name" : "JBL Endurance Run Wired Earphone, Black", + "description" : "JBL Endurance Run Wired Earphone, Black", + "price" : "24", + "sku" : "JBL-Endurance-Run-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-ENDURANCE-RUN-Headphone-and-Headsets-491550851-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTc5fGltYWdlL2pwZWd8aW1hZ2VzL2g4OS9oMzUvOTExNDUwMDQzMTkwMi5qcGd8YzljMGFhNDZmNWQyYjA4YTM5ZWNjYzA1YzY3NTJlOTBmZWZmMjEwOGU4ZTlmMjFmYzU3NTYxNDhhZTMzYmM2Yw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "Endurance" + }, + { + "attributeName" : "Model", + "attributeValue" : "Run" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz – 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8.2" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Non-Slip design", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "3 sizes of ear tips" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5 mm Headphones jack
  • \n
  • Silicon Ear tip material
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638046"), + "name" : "Bose QuietComfort 25 Wired Headphone for iOS models, White", + "description" : "Bose QuietComfort 25 Wired Headphone for iOS models, White", + "price" : "366", + "sku" : "Bose-QuietComfort-25-Wired-Headphone-for-iOS-models,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/491163507-447-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzODcwNHxpbWFnZS9wbmd8aW1hZ2VzL2hkMi9oYjgvODkyNzg0Nzc3NjI4Ni5wbmd8ZDkxZWJlYWZjNWU3N2M5NDc4NjIxNTk0YzU0YmM1ODhmZTE0YTI3NDFhMzNjYTUzNDgyYzEyOWU5MWY0MjllMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "QuietComfort" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "195.6" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • QC 25 inline remote and microphone cable
  • Airline adapter
  • Carrying case
  • AAA battery
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638047"), + "name" : "Bose QuietComfort 25 Wired Headphone for iOS models, Black", + "description" : "Bose QuietComfort 25 Wired Headphone for iOS models, Black", + "price" : "366", + "sku" : "Bose-QuietComfort-25-Wired-Headphone-for-iOS-models,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-QuietComfort-25-Wired-Headphone-for-iOS-models-Black-491163505-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTM5MHxpbWFnZS9wbmd8aW1hZ2VzL2g5Zi9oM2YvODkyNzg2MzcwMTUzNC5wbmd8YjliMzE0MThiODhlNzFkZjVkOWU1YWY0MmRkYjAwMzkwYTliODM5ZjUwZDYwNzIzMDZjZjgwZWU5NDRjZWUwNA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "QuietComfort" + }, + { + "attributeName" : "Model", + "attributeValue" : "25" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "195.6" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • QC 25 inline remote and microphone cable
  • Airline adapter
  • Carrying case
  • AAA battery
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638048"), + "name" : "B&O BeoPlay Earset 3i Wired Headphone, White", + "description" : "B&O BeoPlay Earset 3i Wired Headphone, White", + "price" : "274", + "sku" : "B&O-BeoPlay-Earset-3i-Wired-Headphone,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-Earset-3i-Wired-Headphone-White-491159209-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNDIxN3xpbWFnZS9wbmd8aW1hZ2VzL2hhMi9oZTUvODkyNzY0MzIzODQzMC5wbmd8YmQ1MDU1NjY1ZDRiNjIwM2IzN2Y5OThkMjM0OTdkYWNjY2JkNWNhMjZjNzA4ZTI2OTNiMzFiM2YzNmVjYmIzMQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "Earset 3i" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Exercise" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 x 2 Ear Pads
  • Carrying Pouch
  • Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638049"), + "name" : "B&O BeoPlay H6 Wired Headphone, Natural Leather", + "description" : "B&O BeoPlay H6 Wired Headphone, Natural Leather", + "price" : "579", + "sku" : "B&O-BeoPlay-H6-Wired-Headphone,-Natural-Leather", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-H6-Wired-Headphone-Natural-Leather-491159203-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMDE4MnxpbWFnZS9qcGVnfGltYWdlcy9oYmEvaGJmLzg5Mjc3MTcyMjg1NzQuanBnfGFmNTZmZTEwYjQwMTlhOTIyNDg5NmNlMTQzZTNkNDNjNzFjNDVmNDAxODk4ZjYwM2FkNjMwNTA3ZDdjMzM2ZjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "H6" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "230" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Natural Leather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable with 3-button remote
  • Carrying pouch
  • Quick Start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804a"), + "name" : "B&O BeoPlay H6 Wired Headphone, Black leather", + "description" : "B&O BeoPlay H6 Wired Headphone, Black leather", + "price" : "579", + "sku" : "B&O-BeoPlay-H6-Wired-Headphone,-Black-leather", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-H6-Wired-Headphone-Black-leather-491159193-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDgwN3xpbWFnZS9qcGVnfGltYWdlcy9oN2IvaGUwLzg5Mjc4ODgyNzc1MzQuanBnfGQ3YWJhOTFjZGQ1ZTY4MTBmODdhMmFhYTZmYzNjZDdiNzQ1NGIzZWNmOTI1NTRjY2YyZDY3MzFkYzY2M2ExNjE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "H6" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "230" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black leather" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Cable with 3-button remote
  • Headphone bag
  • Quick Start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804b"), + "name" : "B&O BeoPlay H3 Wired Earphone, Black", + "description" : "B&O BeoPlay H3 Wired Earphone, Black", + "price" : "363", + "sku" : "B&O-BeoPlay-H3-Wired-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-BeoPlay-H3-Wired-Earphone-Black-491159192-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzI4NXxpbWFnZS9qcGVnfGltYWdlcy9oNzUvaGQxLzg5Mjc4ODQ2NzMwNTQuanBnfDRjNWIxNGQyYzRmNTNjNjlhNjRiMDE4ZTg1M2NiYzg3NzU4OWUxNzU1ZWIwN2JkMTNjZDRmYjg3NWU2MTBlYjU", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Sub-brand", + "attributeValue" : "BeoPlay" + }, + { + "attributeName" : "Model", + "attributeValue" : "H3" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Earbuds XS" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804c"), + "name" : "B&O EarSet 3i Wired Earphone, Aluminium Black", + "description" : "B&O EarSet 3i Wired Earphone, Aluminium Black", + "price" : "274", + "sku" : "B&O-EarSet-3i-Wired-Earphone,-Aluminium-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/B-O-EarSet-3i-Wired-Earphone-Aluminium-Black-491159191-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjk1M3xpbWFnZS9qcGVnfGltYWdlcy9oMjkvaDIzLzg5Mjc4Nzc0NjQwOTQuanBnfDU2MjBiYzRmM2Y1MDUyYzNkMDE3ZDkzMDhlMjIzN2E1M2MxOWRmZTU0OTE3MTRkNGFiYTJjN2JjMjYxYjVlYzQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "EarSet 3i" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "B&O" + }, + { + "attributeName" : "Weight", + "attributeValue" : "22" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Aluminium Black" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3 control buttons (up volume" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 3 x 2 ear pads
  • Carrying pouch
  • Manual
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "B&O", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804d"), + "name" : "Sony MDR-XB950BT Wireless Headphone, Black", + "description" : "Sony MDR-XB950BT Wireless Headphone, Black", + "price" : "189", + "sku" : "Sony-MDR-XB950BT-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB950BT-Wireless-Headphone-Black-491134954-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNTM5MXxpbWFnZS9qcGVnfGltYWdlcy9oNzcvaDVlLzg5Mjc2ODc3MzczNzQuanBnfDUxMTBlZWM0MTgxOTNkMzE0MjQ3ZDYzYTQ4MDUwMmU2OTM3NmNjYzdkYzQyMTVhNTE0ZjBmNDQ5YzViNmUyNjM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 20 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB950BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Connection cord
  • USB cord
  • Warranty card
  • Operating instructions
  • Quick start guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Simplified Bluetooth connectivity with NFC One-touch
  • 20 hours of battery life
  • Extra Bass for club-like sound
  • Beat Response Control reduces heavy bass distortion
  • Swivel ear cups for easy portability
  • Driver Unit : 40 mm dynamic
  • Gold-plated L-shaped stereo mini
  • " + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "102" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "280" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804e"), + "name" : "Sony MDR-1000X Wireless Headphone, Black", + "description" : "Sony MDR-1000X Wireless Headphone, Black", + "price" : "435", + "sku" : "Sony-MDR-1000X-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-1000X-Wireless-Headphone-Black-491277340-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1MDk0NnxpbWFnZS9qcGVnfGltYWdlcy9oNDIvaDIxLzg5Mjc3Mjc5MTA5NDIuanBnfDYzYTViNmMxNTFhNDRiNmJlMjA5YjAzOWI2M2NkYjRmZWY0OWQxMzQyOGQzZTI1MjU2MDVmMzQ0YTJiMjliYmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-1000X" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Carrying case
  • Plug adaptor for in-flight use
  • Headphone cable (approx. 1.5 m" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise cancelling beyond compare
  • Clear hands-free calling
  • Ready to travel
  • Luxurious leather
  • High quality wireless listening with LDAC
  • Volume Control : Touch sensor
  • Diaphragm : Aluminium-coated LCP
  • Gold-plated L-shaped stereo mini plug
  • Dynamic Type : Closed" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "275" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863804f"), + "name" : "Beats By Dr.Dre Studio Wireless Headphone, Red", + "description" : "Beats By Dr.Dre Studio Wireless Headphone, Red", + "price" : "434", + "sku" : "Beats-By-Dr.Dre-Studio-Wireless-Headphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Beats-By-Dr.Dre-Studio-Wireless-Headphone-Red-491181990-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzMzMHxpbWFnZS9qcGVnfGltYWdlcy9oMmMvaDZkLzg5Mjc4NTgxMzA5NzQuanBnfDEyNDQ2ZGIyZWQ5OWI0OWYwZDY3ODQyYTU3NmM5MzFlOTQ5NzQ2MTI2NTNlY2ZhZmFkNTY0YmNkYzYxN2ZkODg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Studio Wireless" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended Activity", + "attributeValue" : "Sports" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Beats By Dr.Dre" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "260" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Pair and play with your Bluetooth device with 30 foot range
  • Dual-mode Adaptive Noise Canceling
  • Iconic Beats sound
  • 12 hour rechargeable battery with Fuel Gauge
  • Take hands-free calls with built-in mic
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • RemoteTalk cable
  • 3.5 mm Audio cable
  • USB 2.0 charging cable (USB-A to USB Micro-B)
  • USB Power adapter
  • Hard shell carrying case
  • Quick Start Guide
  • Warranty Card
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Beats", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638050"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Navy Blue", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Navy Blue", + "price" : "211", + "sku" : "Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Android-devices,-Navy-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Android-devices-Navy-Blue-491228936-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1OTIxNHxpbWFnZS9qcGVnfGltYWdlcy9oY2YvaDY1Lzg5Mjc3MDUxMDQ0MTQuanBnfGUzZmViOGMzYTM0ZWNmOGUwNjE0ZDFlZjcyNzJhMTliMWEwZjgwZmUzZmM0ZWM1ZmY5ZTYxMjFjNjM0NjJkZmY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Navy Blue" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638051"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Black", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Android devices, Black", + "price" : "211", + "sku" : "Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Android-devices,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Android-devices-Black-491228935-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzY5OHxpbWFnZS9qcGVnfGltYWdlcy9oNzAvaDQ2Lzg5Mjc2ODkzNzU3NzQuanBnfGQ4NWVhMjA1ZDA3MjJhOGEyZWM2Y2E2MWI0ZmJmOWVjNjYxNzYwZGQ0ZGFlMjg4ZDhjYzk2MWVlMmYyMzE3YzY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Android" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638052"), + "name" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Black", + "description" : "Bose SoundTrue Around-Ear II Wired Headphone for Apple devices, Black", + "price" : "211", + "sku" : "Bose-SoundTrue-Around-Ear-II-Wired-Headphone-for-Apple-devices,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/1ec0e438-b7ae-486b-9874-d3c9d6ac002a-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzU5MXxpbWFnZS9qcGVnfGltYWdlcy9oYzgvaDI3Lzg4MjAyMTc1MTE5NjYuanBnfDc1ZTBhN2YzZTIyZjk4YTA4OGZhNjhmMDBlODg3ODJiNWM1ODc3NWY2Njg3ODAzYzg4ZWVhN2VmNDQ5ZmZmMTI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "SoundTrue" + }, + { + "attributeName" : "Model", + "attributeValue" : "II" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Bose" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Apple" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "184.272" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Detachable inline remote and microphone cable
  • Carrying case
  • Owner's guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Bose", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638053"), + "name" : "Creative Sound BlasterX H7 GH0330 Gaming Headset, Black", + "description" : "Creative Sound BlasterX H7 GH0330 Gaming Headset, Black", + "price" : "232", + "sku" : "Creative-Sound-BlasterX-H7-GH0330-Gaming-Headset,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-GH0330-Headphones-and-Headsets-491430845-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1ODcwN3xpbWFnZS9qcGVnfGltYWdlcy9oZTQvaGQyLzg5OTQ3Mzg4OTY5MjYuanBnfGFhNmU0MWNjNDNlYzA1MWI3NWNmMjVhYjk1MDJlNmU4YTFkMTZhZWY1YmIzMjk2MjQ4ZDRiZTY3ZTUyM2FjYWE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Series", + "attributeValue" : "Sound BlasterX H7" + }, + { + "attributeName" : "Model", + "attributeValue" : "GH0330" + }, + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "118" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "50" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100Hz - 15kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "Mac OS X v10.8 and above" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Weight", + "attributeValue" : "364" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 3.5mm Stereo Input
  • \n
  • USB" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Tethered cable including inline control - 0.4m / 1.3ft" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638054"), + "name" : "Creative Aurvana ANC EF0540 Wired Headphone, Black/Blue", + "description" : "Creative Aurvana ANC EF0540 Wired Headphone, Black/Blue", + "price" : "160", + "sku" : "Creative-Aurvana-ANC-EF0540-Wired-Headphone,-Black-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Creative-EF0540-Headphones-and-Headsets-491430839-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MDMwNXxpbWFnZS9qcGVnfGltYWdlcy9oM2YvaDczLzg5OTQ3MzA0NDI3ODIuanBnfGJlY2Q0ODhhYWEyMTNjZjUwOGQwMDFkZmUyYTM4ZjM2Y2QyMmMwZDc3MGU5OThjYmUxMGQzYThmYzEzZjI4NjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "Up to 40 hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "EF0540" + }, + { + "attributeName" : "Series", + "attributeValue" : "Aurvana ANC" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Creative" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • 1 AAA alkaline battery
  • \n
  • 1 Airplane Travel Adaptor
  • \n
  • 1 Detachable Audio Cable with Inline Microphone
  • \n
  • 1 Hard-covered Travel Case
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Foldable Design
  • \nInline Volume\nInline Microphone\nNoise Isolation\n3.5 mm Stereo Audio Cable" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "290" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "100" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 Hz - 20 kHz" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "38" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "100 Hz - 10 kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue/Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "174" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Leather" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "40" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Creative", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638055"), + "name" : "Sony WF-SP700N Wireless Earphone, Yellow", + "description" : "Sony WF-SP700N Wireless Earphone, Yellow", + "price" : "189", + "sku" : "Sony-WF-SP700N-Wireless-Earphone,-Yellow", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WF-SP700N-Headphone-and-Headset-491430856-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzU3fGltYWdlL2pwZWd8aW1hZ2VzL2g3OC9oNWUvOTAxMTQwMDczNjc5OC5qcGd8ZWNkNzM4YmJlNmNjZDhiYWVlY2NhYmVjZGFkNDBiM2MzYjAzYzU4ZTM4YTVlNDViOTRjMjMzNjE0NDhkY2RiNw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging case" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "
  • 3 hours (Continuous Music Playback Time)
  • 8 hours (Waiting Time)
  • " + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "1.5" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WF-SP700N" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Noise Cancelling
  • \n
  • Truly Wireless With Bluetooth Streaming
  • \n
  • Secure Fit Earbuds
  • " + }, + { + "attributeName" : "Water proof", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Yellow" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "6" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638056"), + "name" : "Sony MDR-Z7M2 Wired Headphone, Black", + "description" : "Sony MDR-Z7M2 Wired Headphone, Black", + "price" : "725", + "sku" : "Sony-MDR-Z7M2-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-Z7M2-Q-WW2-Headphone-and-headsets-491431222-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2MTQyfGltYWdlL2pwZWd8aW1hZ2VzL2hjOS9oODQvOTA5Mzg2MjY4Njc1MC5qcGd8ZTZiYjBhOTNiN2Y4NWY3NWFmOTg4NjY3NzljNmEzMjcwNDM0OGViNGRhOGVjYzc4YjBhMDYxZGRkYTEwYTgxOQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Secure fit", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-Z7M2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Over-the-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Unimatch Plug Adapter (Gold-plated) Headphone cable (Approx. 3 m [118 1/8]" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Impedance", + "attributeValue" : "56" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "98" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "4 Hz - 100000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "70" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Aluminium Alloy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "340" + }, + { + "attributeName" : "Ear Cushion/Bud Material", + "attributeValue" : "Foam" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638057"), + "name" : "Sony WH-CH700N Wireless Headphone, Black", + "description" : "Sony WH-CH700N Wireless Headphone, Black", + "price" : "189", + "sku" : "Sony-WH-CH700N-Wireless-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WH-CH700N-Headphone-and-Headsets-491431272-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MzMzOHxpbWFnZS9qcGVnfGltYWdlcy9oMmMvaGIxLzkxMTQ1MDgwMzQwNzguanBnfDk3YjVlMzYxZjgxMjhhMWQ1ODVjMThjODkyYThhNGIwYjk0NGZmMjAzYjE2YzdhOGY4OWFmZTJhYWRjMTgwNzI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Type", + "attributeValue" : "Lithium Ion (Li-Ion)" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "7" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WH-CH700N" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Noise Cancellation", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "22" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "97" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "
  • 7 Hz–20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "35" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638058"), + "name" : "Logitech G Series G231 Wired Headphone, Black", + "description" : "Logitech G Series G231 Wired Headphone, Black", + "price" : "95", + "sku" : "Logitech-G-Series-G231-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Logitech-G231-Headphone-and-Headset-491392228-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMDg3NXxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaGZiLzkwMTE0MDA0MDkxMTguanBnfDg3OTBlZmNlZDg1YTI4ZWRmYmY1YjJiMmI0NWQ3NmM0N2MwMWQ4ZGQ4OGQzYWQyOWQyY2RjN2NlMzk3MmZjNWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Gaming Headset", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Series", + "attributeValue" : "G Series" + }, + { + "attributeName" : "Model", + "attributeValue" : "G231" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Dimensions", + "attributeValue" : "18.4 (W) x 8.92 (D) x 18.9 (H) cms" + }, + { + "attributeName" : "Weight", + "attributeValue" : "255" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "PC splitter for separate mic and headphone jacks" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Lay-Flat Earpieces
  • \n
  • Folding" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "32" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "90" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20 - 20000 Hz" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "40" + }, + { + "attributeName" : "Mic Sensitivity", + "attributeValue" : "40" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "50 Hz - 20 kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "External" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Logitech", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638059"), + "name" : "Sony MDR-XB550AP Wired Headphone, Green", + "description" : "Sony MDR-XB550AP Wired Headphone, Green", + "price" : "48", + "sku" : "Sony-MDR-XB550AP-Wired-Headphone,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-MDR-XB550AP-Wired-Headphone-Green-491320706-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI2MXxpbWFnZS9qcGVnfGltYWdlcy9oNjkvaDBkLzg5Mjc2NDk3OTIwMzAuanBnfDg5NjMzODA0MmI5ZTIyZDZjMGUwMTM4NzgyNTQxZWNlNmVjY2Q5MTNkZmIyMzIzZmMzZDEzNGNjNGMyYjY5ZWY", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB550AP" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "30" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Headband Material", + "attributeValue" : "Metal" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805a"), + "name" : "Sony WI-C300 Wireless Earphone, Black", + "description" : "Sony WI-C300 Wireless Earphone, Black", + "price" : "50", + "sku" : "Sony-WI-C300-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-WI-C300-Headphones-and-Headsets-491378321-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNjg2M3xpbWFnZS9qcGVnfGltYWdlcy9oZGQvaDYyLzg5MjIzNDU1Mzc1NjYuanBnfDMyMGE0M2EzNzFkNTQ3OTQxNTQwOTI4ODM3ZDc0YjAwNjliNjI3NGFhNWY5ODQzNjQ2NTliM2Q3YTZlMTM4NmI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Micro-USB cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "2" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "200" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.2" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "WI-C300" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 9 mm neodymium drivers for dynamic sound
  • \n
  • Comfortable behind-the-neck style
  • \n
  • Smartphone compatible with hands-free calling
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "9" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805b"), + "name" : "JBL T450 Wired Headphone, Black", + "description" : "JBL T450 Wired Headphone, Black", + "price" : "37", + "sku" : "JBL-T450-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450-Wired-Headphone-Black-491315267-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4OTE2fGltYWdlL2pwZWd8aW1hZ2VzL2g3ZS9oYTcvODk2NDI4ODQ0NjQ5NC5qcGd8YTRkZWU0ZTU3ZjVlNGRmMDdhYmJiMzEyNDZkYjE0NGUzMmUwNWMyOTQ0ZmQ5MGExZTQ5NDNmMDUwZDJiMzJhYw", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805c"), + "name" : "JBL T450 Wired Headphone, Blue", + "description" : "JBL T450 Wired Headphone, Blue", + "price" : "37", + "sku" : "JBL-T450-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-T450-Headphones-and-Headstes-491315268-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTMzOHxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaGI2Lzg5MDQyMjQwNDcxMzQuanBnfGFkOGU5ZjIwNjI1OTdkMTEyYjQ0YWZlMDdiYWU1ZTM5MjFlMjYyZTk5Y2Q5NjgwYTNhM2RlMzgwYWI3ODM4YmM", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "T450ABLU" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "32" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Warning card" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805d"), + "name" : "Sony MDR-XB650BT Wireless Headphone, Blue", + "description" : "Sony MDR-XB650BT Wireless Headphone, Blue", + "price" : "116", + "sku" : "Sony-MDR-XB650BT-Wireless-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/4d2fc195-ed3b-43c2-a5c1-6205b8526fb2-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MDQwOHxpbWFnZS9qcGVnfGltYWdlcy9oNzkvaDc4Lzg4MDUwMDgxNDY0NjIuanBnfDc2OTAzN2RmODVhNDU4YWM4M2M4OWY1ZWU2NWE1NTg2NTYzM2FhZTU2Yzk0NTQ4Y2FmOWIwMjg4NzlkYjQwNjI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "30 Hours" + }, + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MDR-XB650BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Warranty card
  • USB Cable (50cm)
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Neodymium dynamic drivers deliver precise sound
  • NFC One-touch for instant connectivity
  • Extra Bass for deep" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "95" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Adjustable Headband/Neckband", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Weight", + "attributeValue" : "190" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805e"), + "name" : "JBL E25BT Wireless Earphone, Red", + "description" : "JBL E25BT Wireless Earphone, Red", + "price" : "51", + "sku" : "JBL-E25BT-Wireless-Earphone,-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-E25BT-Headphones-and-Headsets-491377973-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNjIxOXxpbWFnZS9qcGVnfGltYWdlcy9oYWMvaDUzLzg5MjIzMjQ1NjYwNDYuanBnfGU2MTE5ZWZhMTZhZmEyNGQ3ZmZhNGY4M2Q2MzEwYzA2MjlkODVhNTQwNjQ4ZWYzMjIwMDVjYmIwZjVhYmUxNGE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "E25BT" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Response bandwidth", + "attributeValue" : "20-20" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863805f"), + "name" : "Reconnect Leap RAWEB1004 Wireless Earphone, Grey", + "description" : "Reconnect Leap RAWEB1004 Wireless Earphone, Grey", + "price" : "44", + "sku" : "Reconnect-Leap-RAWEB1004-Wireless-Earphone,-Grey", + "imageUrl" : "https://www.reliancedigital.in/medias/Reconnect-Wireless-Earphone-RAWEB1004-491430963-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxMTAxOXxpbWFnZS9qcGVnfGltYWdlcy9oODIvaGVhLzkwODgzNTM5NTk5NjYuanBnfDk5OGMyZWNkZTMyOGFkNjZkZDdjNGE3ZWY3ZTA0MjZkMmRhOThiMDQzMDhhOGFkMmNiYzc3NWMzY2IzNDBhM2I", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Charge Time", + "attributeValue" : "Up to 2" + }, + { + "attributeName" : "Standby Time", + "attributeValue" : "150" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Multipoint Connectivity", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v5.0" + }, + { + "attributeName" : "Model", + "attributeValue" : "Leap RAWEB1004" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "In-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Reconnect" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Vibrating call Alert
  • \n
  • Tangle Free Flat Earphone Cables
  • " + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Sweat & Rain resistant", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Grey" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Reconnect", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638060"), + "name" : "JBL E25BT Wireless Earphone, Black", + "description" : "JBL E25BT Wireless Earphone, Black", + "price" : "51", + "sku" : "JBL-E25BT-Wireless-Earphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/JBL-JBLE25BTBLK-Headphones-and-Headstes-491377971-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNTM2NXxpbWFnZS9qcGVnfGltYWdlcy9oM2QvaGEwLzg5MDQyMzc2Nzg2MjIuanBnfGI3ZmY1ZGFiYmY2YjMwMWEzYWI3Y2ZjNTAwMWVkZjZiZTMxOGNiYTBiMmNkMzgwNGQ1ZWVjYTAwOWM1YTE3NWI", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "In The Box", + "attributeValue" : "Charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Battery Life", + "attributeValue" : "8 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth version", + "attributeValue" : "v4.1" + }, + { + "attributeName" : "Model", + "attributeValue" : "JBLE25BTBLK" + }, + { + "attributeName" : "Brand", + "attributeValue" : "JBL" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "16.5" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Speaker Driver Unit", + "attributeValue" : "8" + }, + { + "attributeName" : "Microphone Frequency Response", + "attributeValue" : "20Hz - 20kHz" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "JBL", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638061"), + "name" : "Sennheiser CX 275s Wired Headphone, Black", + "description" : "Sennheiser CX 275s Wired Headphone, Black", + "price" : "29", + "sku" : "Sennheiser-CX-275s-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Sennheiser-CX-275s-Wired-Headphone-Black-491115960-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzY2MnxpbWFnZS9wbmd8aW1hZ2VzL2hiMy9oMmIvODkyNzgzMzgxNzExOC5wbmd8MTljMDI5OWRmMmViYzgxYTI1MzBkZWNkZTk2YTZlODAyMTgwNjFlNjFmODk4Zjk3ODI1MDY1MDhmMDY4MDQyZA", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Recommended for Bass", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "CX 275s" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sennheiser" + }, + { + "attributeName" : "Stereo Sound", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Impedance", + "attributeValue" : "16" + }, + { + "attributeName" : "Sensitivity", + "attributeValue" : "-44" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Phone APP-based Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "15" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Adaptor
  • Ear adaptor sets
  • Storage pouch
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Fits All
  • Signature Sennheiser sound
  • Premium comfort
  • Intuitive design
  • Ease of use
  • Convenience at its best
  • Peace of mind
  • " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sennheiser", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638062"), + "name" : "Skullcandy Smokin Buds2 Wired Headphone, Black Red", + "description" : "Skullcandy Smokin Buds2 Wired Headphone, Black Red", + "price" : "29", + "sku" : "Skullcandy-Smokin-Buds2-Wired-Headphone,-Black-Red", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds2-Wired-Headphone-Black-Red-491159047-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMTg3NHxpbWFnZS9wbmd8aW1hZ2VzL2g1YS9oNDgvODkyNzgzNzI5MDUyNi5wbmd8NTZkZWRiOTQ4YmUyMDZlZDA1OGNkMjNkNmQwZDcxMDhkNTg5YTE0MjVjMGZhYmRkODhiOWViNTEyNjFiZTNkNg", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black Red" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Supreme Sound
  • Mic 1 + Remote
  • Off Axis Technology
  • Flat Cable
  • Silicone Gel Tips
  • In-Ear
  • " + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638063"), + "name" : "Skullcandy Stim On Ear Wired Headphone, Black", + "description" : "Skullcandy Stim On Ear Wired Headphone, Black", + "price" : "29", + "sku" : "Skullcandy-Stim-On-Ear-Wired-Headphone,-Black", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Stim-On-Ear-Wired-Headphone-Black-491336161-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTg5OXxpbWFnZS9qcGVnfGltYWdlcy9oYTIvaDdmLzg4NzcxODI3MTM4ODYuanBnfDgxMGY1MDkxODY2YzllMjllNTE3ZmRmZjIzYmE5ZTlhMzRjYjljNTA1MTM5ODY1MTA2NDcyY2EyNTE1MGM4MTc", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Stim" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638064"), + "name" : "Skullcandy Stim On Ear Wired Headphone, Blue", + "description" : "Skullcandy Stim On Ear Wired Headphone, Blue", + "price" : "29", + "sku" : "Skullcandy-Stim-On-Ear-Wired-Headphone,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Stim-On-Ear-Wired-Headphone-Blue-491336159-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzNDI4MHxpbWFnZS9qcGVnfGltYWdlcy9oYWIvaDcxLzg5Mjc3MTM2MjQwOTQuanBnfDYwN2JmZmRmYmVhZjRlYzJlZTFkMDllYjAwZTI5MTE1YzI3YTc0NWM5NzMzMjFlNzM1MTk4ZDBlOWI1MGIwOGQ", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Stim" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "On-Ear" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638065"), + "name" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Chrome", + "description" : "Skullcandy Smokin Buds 2 Wireless Earphone, Black/Chrome", + "price" : "77", + "sku" : "Skullcandy-Smokin-Buds-2-Wireless-Earphone,-Black-Chrome", + "imageUrl" : "https://www.reliancedigital.in/medias/Skullcandy-Smokin-Buds-2-Wireless-Earphone-Black-Chrome-491315293-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyODkwN3xpbWFnZS9qcGVnfGltYWdlcy9oYTUvaDE2Lzg5Mjc3NTgzMTk2NDYuanBnfDYwODgxZWVmN2VjMzVlZDA3NDk4MzVkNDk1ZTg5OThmZGE1OWMzZDJiMjAzMzI5NDI4ZjEwYjkwNTAxNGNhMDE", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "Smokin Buds 2" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear Bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Skullcandy" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Customizable fit with lightweight and fully removable collar
  • Call" + }, + { + "attributeName" : "In-line Controls", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/Chrome" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Skullcandy", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638066"), + "name" : "Apple MRXJ2HN/A Wireless Airpods with Wireless Charging Case, White", + "description" : "Apple MRXJ2HN/A Wireless Airpods with Wireless Charging Case, White", + "price" : "274", + "sku" : "Apple-MRXJ2HN-A-Wireless-Airpods-with-Wireless-Charging-Case,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Apple-Airpods-BTStereo-WL-CC-491431362-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTExOHxpbWFnZS9qcGVnfGltYWdlcy9oNmUvaDRlLzkxMjg1Mzk4NDg3MzQuanBnfGQ2OTM0Y2VmYjc1YTZjZTczNGFhNzM4Njk4ZGEzMmFhNzVhMjhkZGFiZWFjMDUwOGVhYzYxZTQ5YTlmNjU5M2U", + "category" : { + "_id" : NumberLong(192456), + "name" : "Headphones & Headsets" + }, + "productAttributeList" : [ + { + "attributeName" : "Battery Life", + "attributeValue" : "Up To 24 Hours" + }, + { + "attributeName" : "Rechargeable Battery", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wireless", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Motion Sensor", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "MRXJ2HN/A" + }, + { + "attributeName" : "Form Factor", + "attributeValue" : "Ear-bud" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Apple" + }, + { + "attributeName" : "Pause music on removal", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Music Playtime", + "attributeValue" : "5" + }, + { + "attributeName" : "Microphone Type", + "attributeValue" : "Built-in" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Apple", + "featured" : false, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638067"), + "name" : "Sony PS41TBSLIM PlayStation 4, 1TB Slim with Bloodborne DualShock 4", + "description" : "Sony PS41TBSLIM PlayStation 4, 1TB Slim with Bloodborne DualShock 4", + "price" : "488", + "sku" : "Sony-PS41TBSLIM-PlayStation-4,-1TB-Slim-with-Bloodborne-DualShock-4", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PS41TBSLIM-Gaming-Console-491431281-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w1NzYwfGltYWdlL2pwZWd8aW1hZ2VzL2hjNC9oNmYvOTEyMzU1OTczNTMyNi5qcGd8NzZlNzU2OWExMWEwOGY3MjI5MTkwZTFmMjc3ZjdmYzE1ZGE1ZmVlY2U5MTUzM2RhOGM1ZmM5MmVhN2U3OGQ3Ng", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Processor", + "attributeValue" : "
  • CPU : x86-64 AMD “Jaguar”" + }, + { + "attributeName" : "Memory (RAM)", + "attributeValue" : "8 GB" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Controllers", + "attributeValue" : "DUALSHOCK4 Wireless Black Controller" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Model", + "attributeValue" : "PS41TBSLIM" + }, + { + "attributeName" : "Console Type", + "attributeValue" : "PlayStation 4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "165" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240V" + }, + { + "attributeName" : "Width", + "attributeValue" : "26.5" + }, + { + "attributeName" : "Length", + "attributeValue" : "28.8" + }, + { + "attributeName" : "Height", + "attributeValue" : "3.9" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2100" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638068"), + "name" : "Sony PS4 Slim 1TB Console (Red Dead Redemption II)", + "description" : "Sony PS4 Slim 1TB Console (Red Dead Redemption II)", + "price" : "488", + "sku" : "Sony-PS4-Slim-1TB-Console-(Red-Dead-Redemption-II)", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PS4-1TB-RDR-II-Gaming-Consoles-491431164-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MjcxfGltYWdlL2pwZWd8aW1hZ2VzL2g1Ny9oNGQvOTA3MzI4NDkwNzAzOC5qcGd8Y2YzNDA0NzJiNDkzNWUzNTM1YTkwNTY1ZjQ1YjgzYzI0NmExOGVmN2FhYjE1YmY4N2NmYTY1ZTUyMjc3MmY4MQ", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Internal Storage", + "attributeValue" : "1 TB" + }, + { + "attributeName" : "Console Type", + "attributeValue" : "PlayStation 4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638069"), + "name" : "Logitech G402 Hyperion Fury Ultra-Fast FPS Gaming Mouse", + "description" : "Logitech G402 Hyperion Fury Ultra-Fast FPS Gaming Mouse", + "price" : "42", + "sku" : "Logitech-G402-Hyperion-Fury-Ultra-Fast-FPS-Gaming-Mouse", + "imageUrl" : "https://www.reliancedigital.in/medias/2d798983-48c4-4915-8901-e65607686298-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMzY5OHxpbWFnZS9qcGVnfGltYWdlcy9oYmMvaDQ2Lzg4MDQ5ODY2NTA2NTQuanBnfDFhOGI5ZWNkNzJkMDM2ZjBmOTEyZWYzNTU2OTZjZWIyODc2YmE2YWNhN2Q2MjAxOWUzNWQ3ZDg3Y2Y3OGZhMzk", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "G402 Hyperion Fury" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Logitech" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Gaming" + }, + { + "attributeName" : "Interface", + "attributeValue" : "USB" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Fusion Engine hybrid sensor
  • 8 programmable buttons
  • On-the-fly DPI Switching
  • 32-bit ARM processor
  • 1 millisecond report
  • High-speed clicking
  • Full-speed USB
  • 20 million clicks
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "13.6" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Depth", + "attributeValue" : "4.1" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "144" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • User documentation
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "2 Years " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Logitech", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806a"), + "name" : "Sphero Mini App Enabled Robot Ball, Blue", + "description" : "Sphero Mini App Enabled Robot Ball, Blue", + "price" : "87", + "sku" : "Sphero-Mini-App-Enabled-Robot-Ball,-Blue", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430875-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTM4MXxpbWFnZS9qcGVnfGltYWdlcy9oOTQvaDc2LzkwMzkxMTc1ODIzNjYuanBnfGZmYzliYTY2Yjk2YWQxMTc2YjI2ZTJiYTgwNzkzZjI0MGU0NmQzZDk5YTAzYzY4YjYyOTJkMmEyYWY1ZDcxNmI", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Blue" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806b"), + "name" : "Sphero Mini App Enabled Robot Ball, Green", + "description" : "Sphero Mini App Enabled Robot Ball, Green", + "price" : "87", + "sku" : "Sphero-Mini-App-Enabled-Robot-Ball,-Green", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430872-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4ODEzfGltYWdlL2pwZWd8aW1hZ2VzL2g1Zi9oOTYvOTAzOTExMTAyODc2Ni5qcGd8YTc2NGExMGQxNTllZTY5YTVjYjA3NzEwMmRkZjMyMzgwMWUyZDcyMWIzNTc1ZWRjMTUyOTJkMzAzNDBkYWNlMA", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Green" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806c"), + "name" : "Sphero Mini App Enabled Robot Ball, Orange", + "description" : "Sphero Mini App Enabled Robot Ball, Orange", + "price" : "87", + "sku" : "Sphero-Mini-App-Enabled-Robot-Ball,-Orange", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430873-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTExNHxpbWFnZS9qcGVnfGltYWdlcy9oOGIvaDE0LzkwMzkxMTA3MDEwODYuanBnfDdhMmE1MGI0ODkwMzY4NjBmZGRlOWI1NmEwMWMzMjM1MWFlMjY0MWM4NWI3NDExYWEzYzM0NjViYjA3YmVlMGY", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Orange" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806d"), + "name" : "Sphero Mini App Enabled Robot Ball, White", + "description" : "Sphero Mini App Enabled Robot Ball, White", + "price" : "87", + "sku" : "Sphero-Mini-App-Enabled-Robot-Ball,-White", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430874-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NzA2fGltYWdlL2pwZWd8aW1hZ2VzL2hkMC9oYWEvOTAzOTEyMDkyNDcwMi5qcGd8NGI1YTI2Njc5NjE1NDMzNWQ3MmU4ZjViYzI4YjRmYTY1ZjVkMDVmYTYxMzEwZmU4ODBlNTlmYTlhM2IzNzkxYw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "White" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806e"), + "name" : "Sphero Mini App Enabled Robot Ball, Pink", + "description" : "Sphero Mini App Enabled Robot Ball, Pink", + "price" : "87", + "sku" : "Sphero-Mini-App-Enabled-Robot-Ball,-Pink", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-MINI-Gaming-Accessories-491430876-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wxNTE5NnxpbWFnZS9qcGVnfGltYWdlcy9oMjIvaGM5LzkwMzkxMTY0MDI3MTguanBnfGNlNTBhOGI5ZjE4NTMxYzZhODgzOTk4MjEzOGEyN2VhODVlNDNkODAxZjQwOTZjZmNkZjkyNzYzMjU4MThlY2U", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Mini" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "Gyroscope" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "32" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS 10+ & Android 5.0+ compatible
  • \n
  • Interchangeable" + }, + { + "attributeName" : "Height", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Pink" + }, + { + "attributeName" : "Width", + "attributeValue" : "4.2" + }, + { + "attributeName" : "Weight", + "attributeValue" : "46" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Micro USB Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863806f"), + "name" : "Sony PS4 Dual Shock Black Playstation Accessories for Play station games", + "description" : "Sony PS4 Dual Shock Black Playstation Accessories for Play station games", + "price" : "73", + "sku" : "Sony-PS4-Dual-Shock-Black-Playstation-Accessories-for-Play-station-games", + "imageUrl" : "https://www.reliancedigital.in/medias/491073072-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzOTE2MHxpbWFnZS9wbmd8aW1hZ2VzL2hkOC9oOWIvODkzMjc1Njc1MDM2Ni5wbmd8OWZhYTAyM2QyNTMwNjRlMzY5N2E1MGU4MGIxNWE5NDg0MWI5NmZjZWY4ZGU5YjNlNzk3Y2FiNmEzZDBmNDY2YQ", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "PS4 Dual Shock Black" + }, + { + "attributeName" : "Product Type", + "attributeValue" : "Playstation Accessories" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Compatible With", + "attributeValue" : "PS4" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "for Play station games" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "USB" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • New multi-touch and touch pad opens up new gameplay possibilities

  • LEDs create a rainbow of colours that work with the PlayStation Camera.

  • Built-in speaker and stereo headset jack.
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "5.7" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Depth", + "attributeValue" : "10" + }, + { + "attributeName" : "Width", + "attributeValue" : "16.1" + }, + { + "attributeName" : "Weight", + "attributeValue" : "210" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless controller
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638070"), + "name" : "Amkette Evo Gamepad Pro Console", + "description" : "Amkette Evo Gamepad Pro Console", + "price" : "41", + "sku" : "Amkette-Evo-Gamepad-Pro-Console", + "imageUrl" : "https://www.reliancedigital.in/medias/Amkette-Evo-Gamepad-Pro-Console-491229095-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NDc2N3xpbWFnZS9qcGVnfGltYWdlcy9oMjAvaGQ4Lzg5MzA4NzkwNzg0MzAuanBnfDkzMWI5YjAzNWYxODkxMDY3NGYxOWFmMmRmMDAxZWJkMDE3OGE1YjE2MmFhMzNmZmI5NTE1OTljNjQ5ODhmZDc", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Evo Gamepad Pro" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • 400 mAh Rechargeable Li-Polymer Battery
  • Operating Range - 5 m
  • 2 Bumper Buttons" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Tablet Stand
  • Micro USB Charging Cable
  • Quick Start Guide
  • App Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638071"), + "name" : "Amkette Evo Gamepad Pro2 Console", + "description" : "Amkette Evo Gamepad Pro2 Console", + "price" : "41", + "sku" : "Amkette-Evo-Gamepad-Pro2-Console", + "imageUrl" : "https://www.reliancedigital.in/medias/491276898-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3MzE3MHxpbWFnZS9wbmd8aW1hZ2VzL2hhNi9oNmQvODkzMDg2ODA2ODM4Mi5wbmd8NmZiNTc2NTgyZmFlNjJiNjIzMThlOGIxNjQ3ZGYzNzNiMTMzMjk2YjVmNTYzNjY4MzZlY2U0YTgyZGZjMmU5Mg", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Evo Gamepad Pro2" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Amkette" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Android operating system
  • 400 mAh Rechargeable Li-Polymer Battery
  • 10 m operating range
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Tablet Stand
  • Micro USB Charging Cable
  • Quick Start Guide
  • App Guide
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Amkette", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638072"), + "name" : "Sony E1004/B PSP Console", + "description" : "Sony E1004/B PSP Console", + "price" : "102", + "sku" : "Sony-E1004-B-PSP-Console", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-E1004-B-PSP-Console-490917675-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzM1OHxpbWFnZS9wbmd8aW1hZ2VzL2g1NS9oYmEvODkzMDgxMzM0NTgyMi5wbmd8YzlmZjJiZTMyZmFkZGJhNzZjMDA3MDEwZTAzMzlhMWMzNjNlNDhmZTFlNWI0MzhjYzRlMmQ2MTNjMmYwNTI1Mw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "E1004/B" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 2.0" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Stereo speakers
  • 4.3\" LCD TFT Screen
  • 16" + }, + { + "attributeName" : "Height", + "attributeValue" : "2.3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Depth", + "attributeValue" : "7.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "17" + }, + { + "attributeName" : "Weight", + "attributeValue" : "280" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • AC Power Cord
  • AC Adaptor
  • Battery
  • Guide Book
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638073"), + "name" : "Sony PS3 Medieval Move Playstation Accessories for Play station games", + "description" : "Sony PS3 Medieval Move Playstation Accessories for Play station games", + "price" : "37", + "sku" : "Sony-PS3-Medieval-Move-Playstation-Accessories-for-Play-station-games", + "imageUrl" : "https://www.reliancedigital.in/medias/490767098-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0MjQyMnxpbWFnZS9wbmd8aW1hZ2VzL2g5ZS9oNTcvODkzMjc1NDU4NzY3OC5wbmd8MWEwYmZiZTAwM2E4NDliMTI2YjMxYjhiNzVjYmZmYWUyZWNmZTI1ZGI5NTI4MDNlOGNjNTZkN2MzMzQ0YWIxYw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "PS3 Medieval Move" + }, + { + "attributeName" : "Product Type", + "attributeValue" : "Playstation Accessories" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "for Play station games" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • PlayStation 3 320GB x 1

  • PlayStation Dualshock Controller

  • PlayStation Move Motion Controller

  • PlayStation Eye

  • Medieval Move Game
  • " + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638074"), + "name" : "Sony PlayStation 4 Console, 500 GB", + "description" : "Sony PlayStation 4 Console, 500 GB", + "price" : "479", + "sku" : "Sony-PlayStation-4-Console,-500-GB", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PlayStation-4-Console-500-GB-491073071-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wzMzY3N3xpbWFnZS9wbmd8aW1hZ2VzL2g4Zi9oZjkvODkzMDgzNDY0NTAyMi5wbmd8ODI5ZjRlZDk3ZTYyMTVjMjViNmI4ZGZmMjZiZjhlMDI2ZmI2ODUzOGNmODNmZjk4YzA3NTdjYzFkNjg2MzQxYg", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Processor", + "attributeValue" : "x86-64 AMD Jaguar" + }, + { + "attributeName" : "Internal Storage", + "attributeValue" : "500 GB" + }, + { + "attributeName" : "Controllers", + "attributeValue" : "DUALSHOCK 4" + }, + { + "attributeName" : "Controller Ports", + "attributeValue" : "3" + }, + { + "attributeName" : "Motion Gaming", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "USB 3.0" + }, + { + "attributeName" : "Ethernet (LAN)", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Console Type", + "attributeValue" : "PlayStation 4" + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + }, + { + "attributeName" : "Power Consumption", + "attributeValue" : "250" + }, + { + "attributeName" : "Power Supply", + "attributeValue" : "AC 100-240V" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Ultra-fast customized processors
  • 8 GB of high-performance unified system memory
  • " + }, + { + "attributeName" : "Width", + "attributeValue" : "27.5" + }, + { + "attributeName" : "Length", + "attributeValue" : "30.5" + }, + { + "attributeName" : "Height", + "attributeValue" : "5.3" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black" + }, + { + "attributeName" : "Weight", + "attributeValue" : "2800" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "
  • Wireless Controller Dualshock 4
  • Mono headset x 1
  • AC Power Cord x 1
  • HDMI Cable x 1
  • USB Cable x 1
  • " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638075"), + "name" : "Sony PS4 VR with Camera Bundle", + "description" : "Sony PS4 VR with Camera Bundle", + "price" : "450", + "sku" : "Sony-PS4-VR-with-Camera-Bundle", + "imageUrl" : "https://www.reliancedigital.in/medias/Sony-PS4-VR-with-Camera-Bundle-491320396-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w0NTkyNnxpbWFnZS9qcGVnfGltYWdlcy9oODQvaGZiLzg5Mjk1Mzk3ODQ3MzQuanBnfDVlYzQ3ZTQyZDI4MTI0YTM4MDAzNGZiZGE2OTg3OGM1MTIwNThlOGU5YjQzZTllNjAwMjI2NGM2YWI5NTAwMWM", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "HDMI", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Width", + "attributeValue" : "18.7" + }, + { + "attributeName" : "Length", + "attributeValue" : "27.7" + }, + { + "attributeName" : "Height", + "attributeValue" : "18.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Black/White" + }, + { + "attributeName" : "Weight", + "attributeValue" : "610" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Brand", + "attributeValue" : "Sony" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sony", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638076"), + "name" : "Sphero Spider-Man App Enabled Droid", + "description" : "Sphero Spider-Man App Enabled Droid", + "price" : "290", + "sku" : "Sphero-Spider-Man-App-Enabled-Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-SPIDER-MAN-Gaming-Accessories-491430880-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyMDY0MnxpbWFnZS9qcGVnfGltYWdlcy9oOTMvaDc4LzkwMzg4NDg1NTcwODYuanBnfDMxNjcxZDM5OWJhM2Y3ZDA4YTU3Yzk2MTIzZTM1NDBlYjkwMjA4YjQyOTU5YWVmNGM0ZWM1YWM0YjcwYTFiN2Q", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Spider-Man" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "3D Accelerometer" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Wi-Fi", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Wise-crackin’ Spidey - Talk to Spidey using a variety of phrases. But be \n\nwarned - he’s quite the jokester!
  • \n
  • Super Smarts - Earn Spider-Man's trust by working together to defeat \n\nbaddies.
  • \n
  • Team Up - Go on missions & battle villains. Every decision influences \n\nthe adventure.
  • \n
  • Emotive Eyes - Spidey’s LCD eyes express his every thought and \n\nemotion.
  • \n
  • Spider-Sense - Spidey's built-in IR sensor allows him to detect and react \n\nto movement.
  • \n
  • Ultimate Experience - Spidey’s web connection allows you to get content \n\nupdates.\n
  • Create an alter ego - Create your Super Hero identity and keep tabs on \n\nyour accomplishments.
  • \n
  • Write your story - Every decision creates a new path forward" + }, + { + "attributeName" : "Height", + "attributeValue" : "21.5" + }, + { + "attributeName" : "Colour", + "attributeValue" : "Red" + }, + { + "attributeName" : "Width", + "attributeValue" : "14.5" + }, + { + "attributeName" : "Weight", + "attributeValue" : "680" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Charging Base" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638077"), + "name" : "Sphero BB-9E App Enabled Droid", + "description" : "Sphero BB-9E App Enabled Droid", + "price" : "247", + "sku" : "Sphero-BB-9E-App-Enabled-Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-BB9E-Gaming-Accessories-491430871-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4NDQxfGltYWdlL2pwZWd8aW1hZ2VzL2gzMC9oOGIvOTAzOTExMjY2NzE2Ni5qcGd8OWMyMjkwZWEwMzBiMDhiMGVhNDczZWExZWUwMTk5OTVlYTY4MDU2OTVjNzUzMGQ1MWNlOWE2MjRjNDM0MTU5Nw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "BB-9E" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Over 1 hour of play on a full charge
  • \n
  • iOS & Android compatible
  • \n
  • Durable plastic shell
  • \n
  • 3D Accelerometer
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "9" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Weight", + "attributeValue" : "223" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638078"), + "name" : "Sphero Darkside App Enabled Robot", + "description" : "Sphero Darkside App Enabled Robot", + "price" : "174", + "sku" : "Sphero-Darkside-App-Enabled-Robot", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-OLLIE-DARK-Gaming-Accessories-491430877-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3wyNzQzN3xpbWFnZS9qcGVnfGltYWdlcy9oMzEvaGI4LzkwMzkxMjI4OTA3ODIuanBnfDE3MjY5YWE4MGIyZDhiY2YxNDE1OTZkYjJlMzBjMDc1ZGQ1M2Q5OTZjNTM4NmJkYTZhNTI0NGI4NDQ4M2Q5MDA", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "Darkside" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS & Android" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Durable polycarbonate body
  • \n
  • LED glow with customizable color settings
  • \n
  • Automatic firmware updates
  • " + }, + { + "attributeName" : "Length", + "attributeValue" : "8.12" + }, + { + "attributeName" : "Height", + "attributeValue" : "11.93" + }, + { + "attributeName" : "Weight", + "attributeValue" : "240" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "2 Nubby Tires " + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Rolling Speeds", + "attributeValue" : "14 mph" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d8638079"), + "name" : "Sphero SPRK+ Educational Robot", + "description" : "Sphero SPRK+ Educational Robot", + "price" : "218", + "sku" : "Sphero-SPRK+-Educational-Robot", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-SPRK-Gaming-Accessories-491430881-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w4Mjc3fGltYWdlL2pwZWd8aW1hZ2VzL2hkNC9oYWEvOTAzOTEyMTkwNzc0Mi5qcGd8YTQzZmRhODg3ZTliOWQwZDc1ODVhNTY5MjkyODFmZjJiNGQxOWYwMjE2ZTc4OTYyODAzNzUwZWY4NTRkZmNmYw", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "SPRK+" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "Inductive charging base with USB charging cable" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "Rolling Speeds", + "attributeValue" : "4.5 mph" + }, + { + "attributeName" : "Charging Time", + "attributeValue" : "1 hour" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863807a"), + "name" : "Sphero R2-D2 App Enabled Droid", + "description" : "Sphero R2-D2 App Enabled Droid", + "price" : "247", + "sku" : "Sphero-R2-D2-App-Enabled-Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-R2D2-Gaming-Accessories-491430879-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w3NjY0fGltYWdlL2pwZWd8aW1hZ2VzL2g0My9oZDkvOTAzOTExODU2NTQwNi5qcGd8NzdkNjdiN2FjYzM3YTMwMGJhN2E5MjgxYmJmYjU3MjM3MWVkMzQ5M2ZjNDU3YzU3YThkOWM5YmMwN2EwNzA5ZA", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "R2-D2" + }, + { + "attributeName" : "Sensors", + "attributeValue" : "3D Accelerometer" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • iOS & Android compatible
  • \n
  • Durable plastic shell
  • \n
  • 3D Accelerometer
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "17" + }, + { + "attributeName" : "Width", + "attributeValue" : "10.8" + }, + { + "attributeName" : "Weight", + "attributeValue" : "370" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} +{ + "_id" : ObjectId("5cf2cbe20d9d9437d863807b"), + "name" : "Sphero BB-8 App Enabled Droid", + "description" : "Sphero BB-8 App Enabled Droid", + "price" : "211", + "sku" : "Sphero-BB-8-App-Enabled-Droid", + "imageUrl" : "https://www.reliancedigital.in/medias/Sphero-SPHERO-BB8-Gaming-Accessories-491430870-i-1-1200Wx1200H-300Wx300H?context=bWFzdGVyfGltYWdlc3w2OTM2fGltYWdlL2pwZWd8aW1hZ2VzL2hlNS9oYTUvOTAzOTExNDM3MTEwMi5qcGd8MjMzN2ZjYjk4OGMyMjFhZDVkZDJmZTAwNGM4NmFhOTM2MzEzNTMwOWYyNzRlZTU1MDJjOGFlY2VkMTlhNzU4MQ", + "category" : { + "_id" : NumberLong(189456), + "name" : "Gaming" + }, + "productAttributeList" : [ + { + "attributeName" : "Model", + "attributeValue" : "BB-8" + }, + { + "attributeName" : "Product Type", + "attributeValue" : "App Enabled Droid" + }, + { + "attributeName" : "Accessory Type", + "attributeValue" : "App Enabled Droid" + }, + { + "attributeName" : "Brand", + "attributeValue" : "SPHERO" + }, + { + "attributeName" : "Recommended Use", + "attributeValue" : "Smart Phones" + }, + { + "attributeName" : "USB", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Interface", + "attributeValue" : "Bluetooth" + }, + { + "attributeName" : "OS Compatibility", + "attributeValue" : "iOS" + }, + { + "attributeName" : "Bluetooth Range", + "attributeValue" : "100" + }, + { + "attributeName" : "Bluetooth", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Features", + "attributeValue" : "
  • Top speed of 4.5 mph (7ft/s)
  • \n
  • Durable plastic shell
  • \n
  • LED Lights
  • \n
  • Bluetooth connection (100 foot range)
  • Inductive charging (over 1 hour of play on a full charge)
  • " + }, + { + "attributeName" : "Height", + "attributeValue" : "11.4" + }, + { + "attributeName" : "Width", + "attributeValue" : "7.3" + }, + { + "attributeName" : "Weight", + "attributeValue" : "200" + }, + { + "attributeName" : "In The Box", + "attributeValue" : "USB Charging Cord" + }, + { + "attributeName" : "Warranty", + "attributeValue" : "1 Year " + }, + { + "attributeName" : "App Enabled", + "attributeValue" : "Yes" + }, + { + "attributeName" : "LED Lighting", + "attributeValue" : "Yes" + }, + { + "attributeName" : "Rolling Speeds", + "attributeValue" : "4.5 mph" + }, + { + "attributeName" : "USB Charging", + "attributeValue" : "Yes" + } + ], + "quantity" : NumberInt(100), + "manufacturer" : "Sphero", + "featured" : true, + "_class" : "com.techie.shoppingstore.model.Product" +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/User.json b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/User.json new file mode 100644 index 000000000..262519dda --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/User.json @@ -0,0 +1,31 @@ +{ + "_id" : ObjectId("5c310ca60ed1301a24dfb389"), + "email" : "sai.upadhyayula@gmail.com", + "username" : "saiupadhyayula", + "password" : "$2a$12$l11xGW64RdcWpu263lWaze7bvETjM.wc33YDe6gEDz2.rVEaBgLw6", + "_class" : "com.techie.shoppingstore.model.User" +} +{ + "_id" : ObjectId("5cddb7be0d9d9448482fc950"), + "email" : "test@email.com", + "username" : "test", + "password" : "$2a$12$9oWIiIChaoY.57ov153D2.2LI10fsMoLSxFdf9Av0YbAFrtVR2WHS", + "verified" : false, + "_class" : "com.techie.shoppingstore.model.User" +} +{ + "_id" : ObjectId("5cdff3e13b6a623ac450f99b"), + "email" : "test@gmail.com", + "username" : "saiupadhyayula1", + "password" : "$2a$12$HoL.JrS2peUuc9EtsUEnoOFijlutklSZbhdfteBeHAnGdmzvt6GtG", + "enabled" : true, + "_class" : "com.techie.shoppingstore.model.User" +} +{ + "_id" : ObjectId("5cdff4ec3b6a6224c0afc8ad"), + "email" : "test@gmail.com", + "username" : "saiupadhyayula2", + "password" : "$2a$12$9xU4q0ZHM/2QrJDg1hS4WONt0D.rBUnqYS0uET.tXkTnGE05QYsEi", + "enabled" : true, + "_class" : "com.techie.shoppingstore.model.User" +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/VerificationToken.json b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/VerificationToken.json new file mode 100644 index 000000000..729ed2ffd --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/VerificationToken.json @@ -0,0 +1,24 @@ +{ + "_id" : ObjectId("5cdff3e13b6a623ac450f99c"), + "token" : "3dc5fbf8-8076-4b81-97a6-5210f506fdcd", + "user" : { + "_id" : ObjectId("5cdff3e13b6a623ac450f99b"), + "email" : "test@gmail.com", + "username" : "saiupadhyayula1", + "password" : "$2a$12$HoL.JrS2peUuc9EtsUEnoOFijlutklSZbhdfteBeHAnGdmzvt6GtG", + "enabled" : false + }, + "_class" : "com.techie.shoppingstore.model.VerificationToken" +} +{ + "_id" : ObjectId("5cdff4ec3b6a6224c0afc8ae"), + "token" : "9d33a687-d041-4243-b34d-7491670b9cb8", + "user" : { + "_id" : ObjectId("5cdff4ec3b6a6224c0afc8ad"), + "email" : "test@gmail.com", + "username" : "saiupadhyayula2", + "password" : "$2a$12$9xU4q0ZHM/2QrJDg1hS4WONt0D.rBUnqYS0uET.tXkTnGE05QYsEi", + "enabled" : false + }, + "_class" : "com.techie.shoppingstore.model.VerificationToken" +} diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/query.json b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/query.json new file mode 100644 index 000000000..9d90b5cbb --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/export/query.json @@ -0,0 +1,167 @@ +{ + "query": { + "bool": { + "must": { + "multi_match": { + "query": "laptop", + "fields": [ + "name", + "description" + ] + } + } + } + }, + "aggs": { + "agg_all_facets_filtered": { + "filter": { + "bool": { + "must": [ + { + "nested": { + "path": "productAttributeList", + "query": { + "bool": { + "filter": [ + { + "term": { + "productAttributeList.attributeName.keyword": "Brand" + } + }, + { + "terms": { + "productAttributeList.attributeValue.keyword": [ + "Lenovo" + ] + } + } + ] + } + } + } + }, + { + "nested": { + "path": "productAttributeList", + "query": { + "bool": { + "filter": [ + { + "term": { + "productAttributeList.attributeName.keyword": "Hard Drive" + } + }, + { + "terms": { + "productAttributeList.attributeValue.keyword": [ + "512 GB" + ] + } + } + ] + } + } + } + } + ] + } + }, + "aggs": { + "agg_all_facets_filtered": { + "nested": { + "path": "productAttributeList" + }, + "aggs": { + "inner": { + "filter": { + "terms": { + "productAttributeList.attributeName.keyword": [ + "Brand", + "Battery Type", + "Display Type", + "Graphics Card - Brand", + "Graphics Card - Sub-Brand", + "Hard Drive", + "HDMI", + "Memory (RAM)", + "Hard Drive Type", + "Operating System Type", + "Processor Brand", + "Core Type", + "Touch Screen" + ] + } + }, + "aggs": { + "key": { + "terms": { + "field": "productAttributeList.attributeName.keyword" + }, + "aggs": { + "value": { + "terms": { + "field": "productAttributeList.attributeValue.keyword" + } + } + } + } + } + } + } + } + } + } + }, + "post_filter": { + "bool": { + "must": [ + { + "nested": { + "path": "productAttributeList", + "query": { + "bool": { + "filter": [ + { + "term": { + "productAttributeList.attributeName.keyword": "Brand" + } + }, + { + "terms": { + "productAttributeList.attributeValue.keyword": [ + "Lenovo" + ] + } + } + ] + } + } + } + }, + { + "nested": { + "path": "productAttributeList", + "query": { + "bool": { + "filter": [ + { + "term": { + "productAttributeList.attributeName.keyword": "Hard Drive" + } + }, + { + "terms": { + "productAttributeList.attributeValue.keyword": [ + "512 GB" + ] + } + } + ] + } + } + } + } + ] + } + } +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page-with-filters.PNG b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page-with-filters.PNG new file mode 100644 index 0000000000000000000000000000000000000000..8cd62f05e8101680ddbb34a8d9cb1fc188fec3ae GIT binary patch literal 146612 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

    xa>VrM27pMB$|El##e{ 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 brxLdB!U-EQJkDipGUJTh*?$1%W!(6Gp=#>( literal 0 HcmV?d00001 diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page.PNG b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page.PNG new file mode 100644 index 0000000000000000000000000000000000000000..b950c35fcb542e4cf7caaebbd8554249324479d6 GIT binary patch literal 251801 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

    Idwvf#Z_SG)KKb|k&cz~13lMvfMEZ*FRk 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 U>ZWByuz;Vsik5PvqE+bs1KgDL)&Kwi literal 0 HcmV?d00001 diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-description-section.PNG b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-description-section.PNG new file mode 100644 index 0000000000000000000000000000000000000000..b9102b2a14a6fb3f400e851e384a1d7baa9bf700 GIT binary patch literal 43846 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%0DgwN{#;bNobZ>^g<9BeL1Q2ii*E`eNLm_ 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 z%0A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 literal 0 HcmV?d00001 diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page.PNG b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page.PNG new file mode 100644 index 0000000000000000000000000000000000000000..e2fba5f9b09cdfef830f678b1d7be20693e43a0d GIT binary patch literal 167337 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

      ylz8)rG*>>oL+EB%(!LRD+kDovdz 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

      >nLlLrH>C!>Y+P>eTEtU#*?6yD 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�w>IoC@b#NzAoPIaRp27)o0{N$T+A$aC{#PKu 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 &uBhA}&}IMQqPxUP*dIe1{}>e0GIfcLY|l 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 literal 0 HcmV?d00001 diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/templates/mailTemplate.html b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/templates/mailTemplate.html new file mode 100644 index 000000000..58b7c06a2 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/templates/mailTemplate.html @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/test/java/com/techie/shoppingstore/NgSpringShoppingStoreApplicationTests.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/test/java/com/techie/shoppingstore/NgSpringShoppingStoreApplicationTests.java new file mode 100644 index 000000000..22f36272a --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/test/java/com/techie/shoppingstore/NgSpringShoppingStoreApplicationTests.java @@ -0,0 +1,170 @@ +package com.techie.shoppingstore; + +import com.techie.shoppingstore.model.Category; +import com.techie.shoppingstore.model.ElasticSearchProduct; +import com.techie.shoppingstore.model.Product; +import com.techie.shoppingstore.model.ProductAttribute; +import com.techie.shoppingstore.repository.CategoryRepository; +import com.techie.shoppingstore.repository.ProductRepository; +import com.techie.shoppingstore.repository.ProductSearchRepository; +import com.techie.shoppingstore.service.ProductMapper; +import org.junit.Ignore; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.data.elasticsearch.core.ElasticsearchTemplate; +import org.springframework.data.elasticsearch.core.completion.Completion; +import org.springframework.test.context.junit4.SpringRunner; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +import static java.util.stream.Collectors.toList; + +@RunWith(SpringRunner.class) +@SpringBootTest +public class NgSpringShoppingStoreApplicationTests { + + @Autowired + private CategoryRepository categoryRepository; + + @Autowired + private ProductRepository productRepository; + + @Autowired + private ProductSearchRepository productSearchRepository; + + @Autowired + private ElasticsearchTemplate elasticsearchTemplate; + + @Autowired + private ProductMapper productMapper; + + @Test + @Ignore + public void category() { + Category category = categoryRepository.findByName("Mobile Phones").orElseThrow(() -> new IllegalArgumentException("Invalid Category")); + List products = productSearchRepository.findByCategory(category); + category.setPossibleFacets(Arrays.asList("Brand", "4G", "Fingerprint Recognition", "Battery Capacity", + "Battery Type", "Glass Type", "Hybrid SIM Slot", "Internal Storage", "Memory(RAM)", "Operating System Type", + "SIM Type", "Primary Camera", "Screen Size (Diagonal)", "Selfie Camera")); + products.forEach(product -> product.setCategory(category)); + categoryRepository.save(category); + productSearchRepository.saveAll(products); + + Category tablets = categoryRepository.findByName("Tablets").orElseThrow(() -> new IllegalArgumentException("Invalid Category")); + List tabletProducts = productRepository.findByCategory(tablets); + tablets.setPossibleFacets(Arrays.asList("Brand", "4G", "Battery Type", "Memory(RAM)", "Operating System Type", "SIM Type", "Primary Camera")); + tabletProducts.forEach(product -> product.setCategory(tablets)); + categoryRepository.save(tablets); + productRepository.saveAll(tabletProducts); + + Category laptops = categoryRepository.findByName("Laptops").orElseThrow(() -> new IllegalArgumentException("Invalid Category")); + List laptopProductsMongo = productRepository.findByCategory(laptops); + laptops.setPossibleFacets(Arrays.asList("Brand", "Battery Type", "Display Type", "Graphics Card - Brand", "Graphics Card - Sub-Brand", "Hard Drive", + "HDMI", "Memory (RAM)", "Hard Drive Type", "Operating System Type", "Processor Brand", "Core Type", "Touch Screen")); + laptopProductsMongo.forEach(product -> product.setCategory(laptops)); + categoryRepository.save(laptops); + productRepository.saveAll(laptopProductsMongo); + + Category gaming = categoryRepository.findByName("Gaming").orElseThrow(() -> new IllegalArgumentException("Invalid Category")); + List gamingProducts = productSearchRepository.findByCategory(gaming); + gaming.setPossibleFacets(Arrays.asList("Brand", "Console Type", "Display Type", "Internal Storage")); + gamingProducts.forEach(product -> product.setCategory(gaming)); + categoryRepository.save(gaming); + productSearchRepository.saveAll(gamingProducts); + + Category cameras = categoryRepository.findByName("Cameras").orElseThrow(() -> new IllegalArgumentException("Invalid Category")); + List camerasProducts = productSearchRepository.findByCategory(cameras); + cameras.setPossibleFacets(Arrays.asList("Brand", "Battery Type", "Model", "Wi-Fi", "USB", "Focal Length", + "HDMI", "Sensor Type", "Display Type")); + camerasProducts.forEach(product -> product.setCategory(cameras)); + categoryRepository.save(cameras); + productSearchRepository.saveAll(camerasProducts); + + Category smartWatches = categoryRepository.findByName("Smart Watches").orElseThrow(() -> new IllegalArgumentException("Invalid Category")); + List smartWatchProducts = productSearchRepository.findByCategory(smartWatches); + smartWatches.setPossibleFacets(Arrays.asList("Brand", "Battery Type", "Display", "Display Type", "Gender", "Watch Shape")); + smartWatchProducts.forEach(product -> product.setCategory(smartWatches)); + categoryRepository.save(smartWatches); + productSearchRepository.saveAll(smartWatchProducts); + + Category headphones = categoryRepository.findByName("Headphones & Headsets").orElseThrow(() -> new IllegalArgumentException("Invalid Category")); + List headphonesAndHeadsets = productSearchRepository.findByCategory(headphones); + headphones.setPossibleFacets(Arrays.asList("Brand", "Wireless", "Bluetooth", "USB", "Noise Cancellation", "Microphone Type")); + headphonesAndHeadsets.forEach(product -> product.setCategory(headphones)); + categoryRepository.save(headphones); + productSearchRepository.saveAll(headphonesAndHeadsets); + } + + @Test + @Ignore + public void updateSku() { + List products = productRepository.findAll(); + products.forEach(product -> { + String sku = product.getSku(); + String newSku = sku.replace(" ", "-").replace("/", "-"); + product.setSku(newSku); + }); + productRepository.saveAll(products); + } + + @Test + public void saveProductsToES() { + productSearchRepository.deleteAll(); + List products = productRepository.findAll(); + + List esProducts = products + .stream() + .map(product -> productMapper.productToESProduct(product)).collect(toList()); + + productSearchRepository.saveAll(esProducts); + + System.out.println("Products"); + } + + @Test + @Ignore + public void setFeaturedProduct() { + List all = productRepository.findAll(); + all.forEach(product -> product.setFeatured(false)); + List collect = all.stream().map(product -> productMapper.productToESProduct(product)).collect(toList()); + productRepository.saveAll(all); + productSearchRepository.saveAll(collect); + List featured = new ArrayList<>(); + for (int i = 0; i < all.size(); i++) { + if (i % 60 == 0) { + Product product = all.get(i); + product.setFeatured(true); + featured.add(product); + } + } + productRepository.saveAll(featured); + + List collect1 = featured.stream().map(product -> productMapper.productToESProduct(product)).collect(toList()); + productSearchRepository.saveAll(collect1); + } + + @Test + public void addCompletion() { + Iterable iterable = productSearchRepository.findAll(); + List elasticSearchProducts = new ArrayList<>(); + iterable.forEach(elasticSearchProducts::add); + elasticSearchProducts.forEach(product -> { + String name = product.getName(); + product.setSuggestions(new Completion(new String[]{name})); + }); + productSearchRepository.saveAll(elasticSearchProducts); + } + + private String mapAttribute(ElasticSearchProduct product, String facet) { + for (ProductAttribute productAttribute : product.getProductAttributeList()) { + if (productAttribute.getAttributeName().equals(facet)) { + return productAttribute.getAttributeValue(); + } + } + return ""; + } +} \ No newline at end of file From 305407a3bbdafe434d1d7449307b725bedabed52 Mon Sep 17 00:00:00 2001 From: Omur Date: Sat, 12 Jul 2025 22:50:09 +0200 Subject: [PATCH 2/5] modifications and embedded driver --- .gitignore | 6 +- .../rest/original/angular-ecommerce/pom.xml | 18 ++ .../config/AppSecurityConfig.java | 4 +- .../shoppingstore/config/SwaggerConfig.java | 17 ++ jdk_8_maven/cs/rest/original/pom.xml | 1 + .../embedded/rest/angular-ecommerce/pom.xml | 61 +++++ .../EmbeddedEvoMasterController.java | 228 ++++++++++++++++++ jdk_8_maven/em/embedded/rest/pom.xml | 1 + 8 files changed, 334 insertions(+), 2 deletions(-) create mode 100644 jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/SwaggerConfig.java create mode 100644 jdk_8_maven/em/embedded/rest/angular-ecommerce/pom.xml create mode 100644 jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java diff --git a/.gitignore b/.gitignore index 177b7288a..6ae810620 100644 --- a/.gitignore +++ b/.gitignore @@ -367,4 +367,8 @@ jdk_8_maven/em/external/rest/spring-batch-rest/target /jdk_11_maven/cs/rest/http-patch-spring/target /jdk_11_maven/em/embedded/rest/http-patch-spring/target -/jdk_11_maven/em/external/rest/http-patch-spring/target \ No newline at end of file +/jdk_11_maven/em/external/rest/http-patch-spring/target + +/jdk_8_maven/cs/rest/original/angular-ecommerce/target +/jdk_8_maven/em/embedded/rest/angular-ecommerce/target +/jdk_8_maven/em/external/rest/angular-ecommerce/target \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml b/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml index 57d4a512b..f06c2bcd8 100644 --- a/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml @@ -112,6 +112,18 @@ mapstruct 1.3.0.Final + + + io.springfox + springfox-swagger2 + 2.9.2 + + + io.springfox + springfox-swagger-ui + 2.9.2 + + @@ -119,6 +131,12 @@ org.springframework.boot spring-boot-maven-plugin + + + angular-ecommerce + sut + + org.apache.maven.plugins diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java index 71932945f..810faefd2 100644 --- a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java @@ -63,7 +63,9 @@ public void configure(HttpSecurity httpSecurity) throws Exception { .authorizeRequests() .antMatchers("/api/auth/**") .permitAll() - .antMatchers("/api/store/catalog/**") + .antMatchers("/api/store/catalog/**", +// MODIFIED + "/v2/api-docs/**") .permitAll() .anyRequest().authenticated(); diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/SwaggerConfig.java b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/SwaggerConfig.java new file mode 100644 index 000000000..6a0f8fca7 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/SwaggerConfig.java @@ -0,0 +1,17 @@ +package com.techie.shoppingstore.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import springfox.documentation.spi.DocumentationType; +import springfox.documentation.spring.web.plugins.Docket; +import springfox.documentation.swagger2.annotations.EnableSwagger2; + +@Configuration +@EnableSwagger2 +public class SwaggerConfig { + + @Bean + public Docket api() { + return new Docket(DocumentationType.SWAGGER_2); + } +} \ No newline at end of file diff --git a/jdk_8_maven/cs/rest/original/pom.xml b/jdk_8_maven/cs/rest/original/pom.xml index 152879577..d3b062d8a 100644 --- a/jdk_8_maven/cs/rest/original/pom.xml +++ b/jdk_8_maven/cs/rest/original/pom.xml @@ -26,6 +26,7 @@ spring-batch-rest spring-actuator-demo swagger-petstore + angular-ecommerce diff --git a/jdk_8_maven/em/embedded/rest/angular-ecommerce/pom.xml b/jdk_8_maven/em/embedded/rest/angular-ecommerce/pom.xml new file mode 100644 index 000000000..e16edadc9 --- /dev/null +++ b/jdk_8_maven/em/embedded/rest/angular-ecommerce/pom.xml @@ -0,0 +1,61 @@ + + + + 4.0.0 + + + evomaster-benchmark-em-embedded-rest-angular-ecommerce + jar + + + org.evomaster + evomaster-benchmark-em-embedded-rest + 3.4.1-SNAPSHOT + + + + + + org.springframework.boot + spring-boot-starter-parent + 2.1.1.RELEASE + pom + import + + + + + + + org.mongodb + mongodb-driver-sync + 3.8.2 + + + org.mongodb + mongodb-driver-core + 3.8.2 + + + com.techie.shoppingstore + NGSpringShoppingStore + 0.0.1-SNAPSHOT + + + + org.testcontainers + testcontainers + compile + + + junit + junit + compile + 4.11 + + + + + + \ No newline at end of file diff --git a/jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java b/jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java new file mode 100644 index 000000000..6a2f98300 --- /dev/null +++ b/jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java @@ -0,0 +1,228 @@ +package em.embedded.angular.ecommerce; + +import com.mongodb.BasicDBObject; +import com.mongodb.client.MongoClient; +import com.mongodb.client.MongoClients; +import com.mongodb.client.MongoCollection; +import com.mongodb.client.MongoDatabase; +import org.evomaster.client.java.controller.AuthUtils; +import org.evomaster.client.java.controller.EmbeddedSutController; +import org.evomaster.client.java.controller.InstrumentedSutStarter; +import org.evomaster.client.java.controller.api.dto.auth.AuthenticationDto; +import org.evomaster.client.java.controller.api.dto.SutInfoDto; +import org.evomaster.client.java.sql.DbSpecification; +import org.evomaster.client.java.controller.problem.ProblemInfo; +import org.evomaster.client.java.controller.problem.RestProblem; +import org.springframework.boot.SpringApplication; +import org.springframework.context.ConfigurableApplicationContext; +import org.testcontainers.containers.GenericContainer; +import org.testcontainers.utility.DockerImageName; +import com.techie.shoppingstore.NgSpringShoppingStoreApplication; + +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import org.bson.Document; +import org.bson.types.ObjectId; + +/** + * Class used to start/stop the SUT. This will be controller by the EvoMaster process + */ +public class EmbeddedEvoMasterController extends EmbeddedSutController { + + public static void main(String[] args) { + + int port = 40100; + if (args.length > 0) { + port = Integer.parseInt(args[0]); + } + + EmbeddedEvoMasterController controller = new EmbeddedEvoMasterController(port); + InstrumentedSutStarter starter = new InstrumentedSutStarter(controller); + + starter.start(); + } + + + private ConfigurableApplicationContext ctx; + + private static final int MONGODB_PORT = 27017; + + private static final String MONGODB_VERSION = "7.0"; + + private static final String MONGODB_DATABASE_NAME = "test"; + + private static final GenericContainer mongodbContainer = new GenericContainer("mongo:" + MONGODB_VERSION) + .withTmpFs(Collections.singletonMap("/data/db", "rw")) + .withExposedPorts(MONGODB_PORT); + + private static final String REDIS_VERSION = "7.0.11"; + private static final int REDIS_PORT = 6379; + + private static final GenericContainer redisContainer = new GenericContainer("redis:" + REDIS_VERSION) + .withExposedPorts(REDIS_PORT) + .withCommand("redis-server", "--appendonly", "yes"); + + private static final String ELASTICSEARCH_VERSION = "6.8.23"; + private static final int HTTP_PORT = 9200; + private static final int TRANSPORT_PORT = 9300; + + private static final GenericContainer elasticsearchContainer = + new GenericContainer<>(DockerImageName.parse( + "docker.elastic.co/elasticsearch/elasticsearch:" + ELASTICSEARCH_VERSION)) + .withEnv("discovery.type", "single-node") + .withEnv("cluster.name", "elasticsearch") + .withEnv("ES_JAVA_OPTS", "-Xms512m -Xmx512m") + .withEnv("xpack.security.enabled", "false") + .withTmpFs(Collections.singletonMap("/usr/share/elasticsearch/data", "rw")) + .withExposedPorts(HTTP_PORT, TRANSPORT_PORT); + + + private MongoClient mongoClient; + + public EmbeddedEvoMasterController() { + this(0); + } + + public EmbeddedEvoMasterController(int port) { + setControllerPort(port); + } + + + @Override + public String startSut() { + + mongodbContainer.start(); + redisContainer.start(); + elasticsearchContainer.start(); + + mongoClient = MongoClients.create("mongodb://" + mongodbContainer.getContainerIpAddress() + ":" + mongodbContainer.getMappedPort(MONGODB_PORT)); + + try { + Thread.sleep(3_000); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + + ctx = SpringApplication.run(NgSpringShoppingStoreApplication.class, + new String[]{"--server.port=0", + "--spring.datasource.host=" + mongodbContainer.getContainerIpAddress(), + "--spring.datasource.port=" + mongodbContainer.getMappedPort(MONGODB_PORT), + "--spring.datasource.database=" + MONGODB_DATABASE_NAME, + "--spring.data.mongodb.uri=mongodb://" + mongodbContainer.getContainerIpAddress() + ":" + mongodbContainer.getMappedPort(MONGODB_PORT) + "/" + MONGODB_DATABASE_NAME, + "--spring.redis.host=" + redisContainer.getContainerIpAddress(), + "--spring.redis.port=" + redisContainer.getMappedPort(REDIS_PORT), + "--spring.data.elasticsearch.cluster-name=elasticsearch", + "--spring.data.elsticsearch.cluster-nodes=" + elasticsearchContainer.getContainerIpAddress() + ":" + elasticsearchContainer.getMappedPort(TRANSPORT_PORT), + "--spring.cache.type=NONE" + }); + + return "http://localhost:" + getSutPort(); + } + + protected int getSutPort() { + return (Integer) ((Map) ctx.getEnvironment() + .getPropertySources().get("server.ports").getSource()) + .get("local.server.port"); + } + + + @Override + public boolean isSutRunning() { + return ctx != null && ctx.isRunning(); + } + + @Override + public void stopSut() { + ctx.stop(); + ctx.close(); + + mongodbContainer.stop(); + mongoClient.close(); + redisContainer.stop(); + elasticsearchContainer.stop(); + } + + @Override + public String getPackagePrefixesToCover() { + return "com.techie.shoppingstore."; + } + + @Override + public void resetStateOfSUT() { + MongoDatabase db = mongoClient.getDatabase(MONGODB_DATABASE_NAME); + + + for(String name: db.listCollectionNames()){ + db.getCollection(name).deleteMany(new BasicDBObject()); + } + + MongoCollection users = db.getCollection("User"); + users.insertMany(Arrays.asList( + new Document() + .append("_id", new ObjectId()) + .append("_class", "com.techie.shoppingstore.model.User") + .append("username", "user1") + .append("email", "user1@email.com") + .append("enabled", true) + //12345678 + .append("password", "$2a$12$p9eP3beaPuSMbS1enDn1Z.zFuv6npjm6xjyQnnEqvVG.CD03d1aoi"), + new Document() + .append("_id", new ObjectId()) + .append("_class", "com.techie.shoppingstore.model.User") + .append("username", "user2") + .append("email", "user2@email.com") + .append("enabled", true) + //12345678 + .append("password", "$2a$12$p9eP3beaPuSMbS1enDn1Z.zFuv6npjm6xjyQnnEqvVG.CD03d1aoi") + )); + } + + + @Override + public List getDbSpecifications() { + return null; + } + + String rawPassword = "12345678"; + + @Override + public List getInfoForAuthentication() { + return Arrays.asList( + AuthUtils.getForJsonTokenBearer( + "user1", + "/api/auth/login", + "{\"username\":\"user1\", \"password\":\""+rawPassword+"\"}", + "/accessToken" + ), + AuthUtils.getForJsonTokenBearer( + "user2", + "/api/auth/login", + "{\"username\":\"user2\", \"password\":\""+rawPassword+"\"}", + "/accessToken" + ) + ); + } + + + + + @Override + public ProblemInfo getProblemInfo() { + return new RestProblem( + "http://localhost:" + getSutPort() + "/v2/api-docs", + null + ); + } + + @Override + public SutInfoDto.OutputFormat getPreferredOutputFormat() { + return SutInfoDto.OutputFormat.JAVA_JUNIT_5; + } + + @Override + public Object getMongoConnection() { + return mongoClient; + } +} diff --git a/jdk_8_maven/em/embedded/rest/pom.xml b/jdk_8_maven/em/embedded/rest/pom.xml index 100de21e4..3816bbe5e 100644 --- a/jdk_8_maven/em/embedded/rest/pom.xml +++ b/jdk_8_maven/em/embedded/rest/pom.xml @@ -32,6 +32,7 @@ spring-batch-rest spring-actuator-demo swagger-petstore + angular-ecommerce \ No newline at end of file From 67d5bba95d64cf7360dfd685711dbb6a79c93720 Mon Sep 17 00:00:00 2001 From: Omur Date: Wed, 16 Jul 2025 15:14:00 +0200 Subject: [PATCH 3/5] external driver --- .../external/rest/angular-ecommerce/pom.xml | 75 +++++ .../ExternalEvoMasterController.java | 308 ++++++++++++++++++ jdk_8_maven/em/external/rest/pom.xml | 1 + 3 files changed, 384 insertions(+) create mode 100644 jdk_8_maven/em/external/rest/angular-ecommerce/pom.xml create mode 100644 jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java diff --git a/jdk_8_maven/em/external/rest/angular-ecommerce/pom.xml b/jdk_8_maven/em/external/rest/angular-ecommerce/pom.xml new file mode 100644 index 000000000..66cae6ddf --- /dev/null +++ b/jdk_8_maven/em/external/rest/angular-ecommerce/pom.xml @@ -0,0 +1,75 @@ + + + + 4.0.0 + + evomaster-benchmark-em-external-rest-angular-ecommerce + jar + + + org.evomaster + evomaster-benchmark-em-external-rest + 3.4.1-SNAPSHOT + + + + + + org.testcontainers + testcontainers + compile + + + junit + junit + 4.12 + compile + + + org.mongodb + mongodb-driver-sync + 3.8.2 + + + org.mongodb + mongodb-driver-core + 3.8.2 + + + + + + + org.apache.maven.plugins + maven-shade-plugin + + + package + + shade + + + angular-ecommerce-evomaster-runner + + + + em.external.angular.ecommerce.ExternalEvoMasterController + + org.evomaster.client.java.instrumentation.InstrumentingAgent + + org.evomaster.client.java.instrumentation.InstrumentingAgent + + true + true + + + + + + + + + + \ No newline at end of file diff --git a/jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java b/jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java new file mode 100644 index 000000000..8ccf181ad --- /dev/null +++ b/jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java @@ -0,0 +1,308 @@ +package em.external.angular.ecommerce; + +import com.mongodb.BasicDBObject; +import com.mongodb.client.MongoClient; +import com.mongodb.client.MongoClients; +import com.mongodb.client.MongoCollection; +import com.mongodb.client.MongoDatabase; +import org.bson.Document; +import org.bson.types.ObjectId; +import org.evomaster.client.java.controller.AuthUtils; +import org.evomaster.client.java.controller.ExternalSutController; +import org.evomaster.client.java.controller.InstrumentedSutStarter; +import org.evomaster.client.java.controller.api.dto.auth.AuthenticationDto; +import org.evomaster.client.java.controller.api.dto.SutInfoDto; +import org.evomaster.client.java.sql.DbSpecification; +import org.evomaster.client.java.controller.problem.ProblemInfo; +import org.evomaster.client.java.controller.problem.RestProblem; +import org.testcontainers.containers.GenericContainer; +import org.testcontainers.utility.DockerImageName; + +import java.util.Arrays; +import java.util.Collections; +import java.util.List; + +public class ExternalEvoMasterController extends ExternalSutController { + + + public static void main(String[] args) { + + int controllerPort = 40100; + if (args.length > 0) { + controllerPort = Integer.parseInt(args[0]); + } + int sutPort = 12345; + if (args.length > 1) { + sutPort = Integer.parseInt(args[1]); + } + String jarLocation = "cs/rest/original/angular-ecommerce/target"; + if (args.length > 2) { + jarLocation = args[2]; + } + if(! jarLocation.endsWith(".jar")) { + jarLocation += "/angular-ecommerce-sut.jar"; + } + + int timeoutSeconds = 120; + if(args.length > 3){ + timeoutSeconds = Integer.parseInt(args[3]); + } + String command = "java"; + if(args.length > 4){ + command = args[4]; + } + + + ExternalEvoMasterController controller = + new ExternalEvoMasterController(controllerPort, jarLocation, + sutPort, timeoutSeconds, command); + InstrumentedSutStarter starter = new InstrumentedSutStarter(controller); + + starter.start(); + } + + private final int timeoutSeconds; + private final int sutPort; + private String jarLocation; + + private static final int MONGODB_PORT = 27017; + + private static final String MONGODB_VERSION = "7.0"; + + private static final String MONGODB_DATABASE_NAME = "test"; + + private static final GenericContainer mongodbContainer = new GenericContainer("mongo:" + MONGODB_VERSION) + .withTmpFs(Collections.singletonMap("/data/db", "rw")) + .withExposedPorts(MONGODB_PORT); + + private static final String REDIS_VERSION = "7.0.11"; + private static final int REDIS_PORT = 6379; + + private static final GenericContainer redisContainer = new GenericContainer("redis:" + REDIS_VERSION) + .withExposedPorts(REDIS_PORT) + .withCommand("redis-server", "--appendonly", "yes"); + + private static final String ELASTICSEARCH_VERSION = "6.8.23"; + private static final int HTTP_PORT = 9200; + private static final int TRANSPORT_PORT = 9300; + + private static final GenericContainer elasticsearchContainer = + new GenericContainer<>(DockerImageName.parse( + "docker.elastic.co/elasticsearch/elasticsearch:" + ELASTICSEARCH_VERSION)) + .withEnv("discovery.type", "single-node") + .withEnv("cluster.name", "elasticsearch") + .withEnv("ES_JAVA_OPTS", "-Xms512m -Xmx512m") + .withEnv("xpack.security.enabled", "false") + .withTmpFs(Collections.singletonMap("/usr/share/elasticsearch/data", "rw")) + .withExposedPorts(HTTP_PORT, TRANSPORT_PORT); + + + private MongoClient mongoClient; + + + public ExternalEvoMasterController(){ + this(40100, "../core/target", 12345, 120, "java"); + } + + public ExternalEvoMasterController(String jarLocation) { + this(); + this.jarLocation = jarLocation; + } + + public ExternalEvoMasterController( + int controllerPort, String jarLocation, int sutPort, int timeoutSeconds, String command + ) { + + if(jarLocation==null || jarLocation.isEmpty()){ + throw new IllegalArgumentException("Missing jar location"); + } + + + this.sutPort = sutPort; + this.jarLocation = jarLocation; + this.timeoutSeconds = timeoutSeconds; + setControllerPort(controllerPort); + setJavaCommand(command); + } + + + @Override + public String[] getInputParameters() { + return new String[]{ + "--server.port=" + sutPort, + "--spring.datasource.host=" + mongodbContainer.getContainerIpAddress(), + "--spring.datasource.port=" + mongodbContainer.getMappedPort(MONGODB_PORT), + "--spring.datasource.database=" + MONGODB_DATABASE_NAME, + "--spring.data.mongodb.uri=mongodb://" + mongodbContainer.getContainerIpAddress() + ":" + mongodbContainer.getMappedPort(MONGODB_PORT) + "/" + MONGODB_DATABASE_NAME, + "--spring.redis.host=" + redisContainer.getContainerIpAddress(), + "--spring.redis.port=" + redisContainer.getMappedPort(REDIS_PORT), + "--spring.data.elasticsearch.cluster-name=elasticsearch", + "--spring.data.elsticsearch.cluster-nodes=" + elasticsearchContainer.getContainerIpAddress() + ":" + elasticsearchContainer.getMappedPort(TRANSPORT_PORT), + "--spring.cache.type=NONE" + }; + } + + public String[] getJVMParameters() { + + return new String[]{ + "-Dfile.encoding=ISO-8859-1" + }; + } + + @Override + public String getBaseURL() { + return "http://localhost:" + sutPort; + } + + @Override + public String getPathToExecutableJar() { + return jarLocation; + } + + @Override + public String getLogMessageOfInitializedServer() { + return "Started NgSpringShoppingStoreApplication in "; + } + + @Override + public long getMaxAwaitForInitializationInSeconds() { + return timeoutSeconds; + } + + @Override + public void preStart() { + + mongodbContainer.start(); + redisContainer.start(); + elasticsearchContainer.start(); + + mongoClient = MongoClients.create("mongodb://" + mongodbContainer.getContainerIpAddress() + ":" + mongodbContainer.getMappedPort(MONGODB_PORT)); + + } + + @Override + public void postStart() { + try { + Thread.sleep(3_000); + } catch (InterruptedException e) { + // do nothing + } + + while (!isMongoClientReady()) { + try { + Thread.sleep(1_000); + } catch (InterruptedException e) { + // do nothing + } + } + } + + /** + * Checks if the mongo database is ready to receive commands using a ping command + * @return + */ + private boolean isMongoClientReady() { + try { + MongoDatabase db = mongoClient.getDatabase(MONGODB_DATABASE_NAME); + Document pingResult = db.runCommand(new Document("ping", 1)); + return pingResult.getDouble("ok") == 1.0; + } catch (Exception ex) { + // Connection error + return false; + } + } + + @Override + public void resetStateOfSUT() { + MongoDatabase db = mongoClient.getDatabase(MONGODB_DATABASE_NAME); + + + for(String name: db.listCollectionNames()){ + db.getCollection(name).deleteMany(new BasicDBObject()); + } + + MongoCollection users = db.getCollection("User"); + users.insertMany(Arrays.asList( + new Document() + .append("_id", new ObjectId()) + .append("_class", "com.techie.shoppingstore.model.User") + .append("username", "user1") + .append("email", "user1@email.com") + .append("enabled", true) + //12345678 + .append("password", "$2a$12$p9eP3beaPuSMbS1enDn1Z.zFuv6npjm6xjyQnnEqvVG.CD03d1aoi"), + new Document() + .append("_id", new ObjectId()) + .append("_class", "com.techie.shoppingstore.model.User") + .append("username", "user2") + .append("email", "user2@email.com") + .append("enabled", true) + //12345678 + .append("password", "$2a$12$p9eP3beaPuSMbS1enDn1Z.zFuv6npjm6xjyQnnEqvVG.CD03d1aoi") + )); + } + + @Override + public void preStop() { + } + + @Override + public void postStop() { + mongodbContainer.stop(); + mongoClient.close(); + redisContainer.stop(); + elasticsearchContainer.stop(); + } + + + + @Override + public String getPackagePrefixesToCover() { + return "com.techie.shoppingstore."; + } + + @Override + public ProblemInfo getProblemInfo() { + return new RestProblem( + "http://localhost:" + sutPort + "/v2/api-docs", + null + ); + } + + @Override + public SutInfoDto.OutputFormat getPreferredOutputFormat() { + return SutInfoDto.OutputFormat.JAVA_JUNIT_5; + } + + String rawPassword = "12345678"; + + @Override + public List getInfoForAuthentication() { + return Arrays.asList( + AuthUtils.getForJsonTokenBearer( + "user1", + "/api/auth/login", + "{\"username\":\"user1\", \"password\":\""+rawPassword+"\"}", + "/accessToken" + ), + AuthUtils.getForJsonTokenBearer( + "user2", + "/api/auth/login", + "{\"username\":\"user2\", \"password\":\""+rawPassword+"\"}", + "/accessToken" + ) + ); + } + + @Override + public List getDbSpecifications() { + return null; + } + + @Override + public Object getMongoConnection() { + return mongoClient; + } + + +} diff --git a/jdk_8_maven/em/external/rest/pom.xml b/jdk_8_maven/em/external/rest/pom.xml index dbac41af3..7dcd14085 100644 --- a/jdk_8_maven/em/external/rest/pom.xml +++ b/jdk_8_maven/em/external/rest/pom.xml @@ -33,6 +33,7 @@ spring-batch-rest spring-actuator-demo swagger-petstore + angular-ecommerce \ No newline at end of file From f60afe3f1bc31129e820d77e2ffba636325eac22 Mon Sep 17 00:00:00 2001 From: Omur Date: Wed, 16 Jul 2025 21:23:18 +0200 Subject: [PATCH 4/5] additional info --- README.md | 4 +++- scripts/dist.py | 3 +++ statistics/data.csv | 1 + statistics/table_emb.md | 1 + 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 285ae9102..841357a4e 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,9 @@ For simplicity, all schemas are also available as JSON/YML files under the folde > **IMPORTANT**: More details (e.g., #LOCs and used databases) on these APIs can be found [in this table](statistics/table_emb.md). -### REST: Java/Kotlin (33) +### REST: Java/Kotlin (34) + +* **Angular ECommerce** (not-known license), [jdk_8_maven/cs/rest/original/angular-ecommerce](jdk_8_maven/cs/rest/original/angular-ecommerce), from [https://github.com/SaiUpadhyayula/SpringAngularEcommerce](https://github.com/SaiUpadhyayula/SpringAngularEcommerce) * **Bibliothek** (MIT), [jdk_17_gradle/cs/rest/bibliothek](jdk_17_gradle/cs/rest/bibliothek), from [https://github.com/PaperMC/bibliothek](https://github.com/PaperMC/bibliothek) diff --git a/scripts/dist.py b/scripts/dist.py index 9cebdddbd..96fb885d4 100755 --- a/scripts/dist.py +++ b/scripts/dist.py @@ -187,6 +187,9 @@ def build_jdk_8_maven(): copy(folder + "/cs/rest/original/swagger-petstore/target/swagger-petstore-sut.jar", DIST) copy(folder + "/em/external/rest/swagger-petstore/target/swagger-petstore-evomaster-runner.jar", DIST) + copy(folder + "/cs/rest/original/angular-ecommerce/target/angular-ecommerce-sut.jar", DIST) + copy(folder + "/em/external/rest/angular-ecommerce/target/angular-ecommerce-evomaster-runner.jar", DIST) + # graphql copy(folder + "/cs/graphql/petclinic-graphql/target/petclinic-graphql-sut.jar", DIST) diff --git a/statistics/data.csv b/statistics/data.csv index 8342ba74a..8bb0cbb2c 100644 --- a/statistics/data.csv +++ b/statistics/data.csv @@ -1,4 +1,5 @@ EMB,NAME,TYPE,LANGUAGE,RUNTIME,BUILD,FILES,LOCS,DATABASE,LICENSE,ENDPOINTS,AUTHENTICATION,URL +TRUE,angular-ecommerce,REST,Java,JDK 8,Maven,58,2223,MongoOB;Redis;Elasticsearch,UNDEFINED,26,TRUE,https://github.com/SaiUpadhyayula/SpringAngularEcommerce TRUE,tiltaksgjennomforing,REST,Java,JDK 17,Maven,472,27316,PostgreSQL,MIT,79,TRUE,https://github.com/navikt/tiltaksgjennomforing-api TRUE,person-controller,REST,Java,JDK 21,Maven,16,1112,MongoDB,Apache,12,FALSE,https://github.com/mongodb-developer/java-spring-boot-mongodb-starter TRUE,tracking-system,REST,Java,JDK 11,Maven,87,5947,H2,UNDEFINED,67,TRUE,https://github.com/SelimHorri/project-tracking-system-backend-app diff --git a/statistics/table_emb.md b/statistics/table_emb.md index 1070a57a0..9a7ba9b02 100644 --- a/statistics/table_emb.md +++ b/statistics/table_emb.md @@ -24,6 +24,7 @@ |__gestaohospital__|REST|3506|33|20|Java|JDK 8|Maven|MongoDB|| |__youtube-mock__|REST|3229|29|1|Java|JDK 8|Maven||| |__features-service__|REST|2275|39|18|Java|JDK 8|Maven|H2|| +|__angular-ecommerce__|REST|2223|58|26|Java|JDK 8|Maven|MongoOB, Redis, Elasticsearch|✓| |__bibliothek__|REST|2176|33|8|Java|JDK 17|Gradle|MongoDB|| |__restcountries__|REST|1977|24|22|Java|JDK 8|Maven||| |__reservations-api__|REST|1853|39|7|Java|JDK 11|Gradle|MongoDB|✓| From 9f83bb5862301ccd879c92315482b035a6eb0b2d Mon Sep 17 00:00:00 2001 From: Omur Date: Thu, 17 Jul 2025 10:28:15 +0200 Subject: [PATCH 5/5] docker --- dockerfiles/angular-ecommerce.dockerfile | 17 ++++++ dockerfiles/angular-ecommerce.yaml | 60 +++++++++++++++++++ .../src/main/resources/application.properties | 2 +- .../EmbeddedEvoMasterController.java | 2 +- .../ExternalEvoMasterController.java | 2 +- .../angular-ecommerce/init.json | 16 +++++ .../angular-ecommerce/mongo_import.sh | 4 ++ 7 files changed, 100 insertions(+), 3 deletions(-) create mode 100644 dockerfiles/angular-ecommerce.dockerfile create mode 100644 dockerfiles/angular-ecommerce.yaml create mode 100644 scripts/dockerize/data/additional_files/angular-ecommerce/init.json create mode 100644 scripts/dockerize/data/additional_files/angular-ecommerce/mongo_import.sh diff --git a/dockerfiles/angular-ecommerce.dockerfile b/dockerfiles/angular-ecommerce.dockerfile new file mode 100644 index 000000000..66f4da708 --- /dev/null +++ b/dockerfiles/angular-ecommerce.dockerfile @@ -0,0 +1,17 @@ +FROM amazoncorretto:8-alpine-jdk + +COPY ./dist/angular-ecommerce-sut.jar . +COPY ./dist/jacocoagent.jar . + + + +#ENV TOOL="undefined" +#ENV RUN="0" + +ENTRYPOINT \ + java \ +# unfortunately dumponexit is completely unreliable in Docker :( +# -javaagent:jacocoagent.jar=destfile=./jacoco/angular-ecommerce__${TOOL}__${RUN}__jacoco.exec,append=false,dumponexit=true \ + -javaagent:jacocoagent.jar=output=tcpserver,address=*,port=6300,append=false,dumponexit=false \ + -Dfile.encoding=ISO-8859-1 -jar angular-ecommerce-sut.jar \ + --server.port=8080 --spring.datasource.host=mongodb --spring.datasource.port=27017 --spring.datasource.database=test --spring.data.mongodb.uri=mongodb://mongodb:27017/test --spring.redis.host=redis --spring.redis.port=6379 --spring.data.elasticsearch.cluster-name=elasticsearch --spring.data.elsticsearch.cluster-nodes=elastic:9300 --spring.cache.type=NONE \ No newline at end of file diff --git a/dockerfiles/angular-ecommerce.yaml b/dockerfiles/angular-ecommerce.yaml new file mode 100644 index 000000000..0a32a587e --- /dev/null +++ b/dockerfiles/angular-ecommerce.yaml @@ -0,0 +1,60 @@ +services: + sut-angular-ecommerce: + build: + dockerfile: ./dockerfiles/angular-ecommerce.dockerfile + context: .. +# environment: +# TOOL: ${TOOL:-undefined} +# RUN: ${RUN:-0} + ports: + - "${HOST_PORT:-8080}:8080" + - "${JACOCO_PORT:-6300}:6300" +# volumes: + # default env does not work on volumes +# - ${JACOCODIR}:/jacoco + + mongodb: + image: mongo:7.0 + tmpfs: + - '/data/db' + + + environment: + MONGODB_REPLICA_SET_MODE: primary + ALLOW_EMPTY_PASSWORD: yes + + + + volumes: + - ../scripts/dockerize/data/additional_files/angular-ecommerce/mongo_import.sh:/docker-entrypoint-initdb.d/mongo_import.sh + - ../scripts/dockerize/data/additional_files/angular-ecommerce/init.json:/fixtures/init.json + + + + + + redis: + image: redis:7.0.11 + + + + + + + elasticsearch: + image: docker.elastic.co/elasticsearch/elasticsearch:6.8.23 + tmpfs: + - '/usr/share/elasticsearch/data' + + + environment: + - discovery.type=single-node + - cluster.name=elasticsearch + - ES_JAVA_OPTS=-Xms512m -Xmx512m + - xpack.security.enabled=false + + + + + + diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties index 3f8b8f93a..cbc44bd30 100644 --- a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/application.properties @@ -19,6 +19,6 @@ spring.redis.port=6379 ################# Elasticsearch Config ################################## spring.data.elasticsearch.repositories.enabled=true spring.data.elasticsearch.cluster-name=elasticsearch -spring.data.elsticsearch.cluster-nodes=localhost:9300 +spring.data.elasticsearch.cluster-nodes=localhost:9300 ########################################################################## account.verification.url=http://localhost:8080/api/auth/accountVerification \ No newline at end of file diff --git a/jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java b/jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java index 6a2f98300..5cf41c771 100644 --- a/jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java +++ b/jdk_8_maven/em/embedded/rest/angular-ecommerce/src/main/java/em/embedded/angular/ecommerce/EmbeddedEvoMasterController.java @@ -114,7 +114,7 @@ public String startSut() { "--spring.redis.host=" + redisContainer.getContainerIpAddress(), "--spring.redis.port=" + redisContainer.getMappedPort(REDIS_PORT), "--spring.data.elasticsearch.cluster-name=elasticsearch", - "--spring.data.elsticsearch.cluster-nodes=" + elasticsearchContainer.getContainerIpAddress() + ":" + elasticsearchContainer.getMappedPort(TRANSPORT_PORT), + "--spring.data.elasticsearch.cluster-nodes=" + elasticsearchContainer.getContainerIpAddress() + ":" + elasticsearchContainer.getMappedPort(TRANSPORT_PORT), "--spring.cache.type=NONE" }); diff --git a/jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java b/jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java index 8ccf181ad..f729f2149 100644 --- a/jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java +++ b/jdk_8_maven/em/external/rest/angular-ecommerce/src/main/java/em/external/angular/ecommerce/ExternalEvoMasterController.java @@ -137,7 +137,7 @@ public String[] getInputParameters() { "--spring.redis.host=" + redisContainer.getContainerIpAddress(), "--spring.redis.port=" + redisContainer.getMappedPort(REDIS_PORT), "--spring.data.elasticsearch.cluster-name=elasticsearch", - "--spring.data.elsticsearch.cluster-nodes=" + elasticsearchContainer.getContainerIpAddress() + ":" + elasticsearchContainer.getMappedPort(TRANSPORT_PORT), + "--spring.data.elasticsearch.cluster-nodes=" + elasticsearchContainer.getContainerIpAddress() + ":" + elasticsearchContainer.getMappedPort(TRANSPORT_PORT), "--spring.cache.type=NONE" }; } diff --git a/scripts/dockerize/data/additional_files/angular-ecommerce/init.json b/scripts/dockerize/data/additional_files/angular-ecommerce/init.json new file mode 100644 index 000000000..8fcddc6df --- /dev/null +++ b/scripts/dockerize/data/additional_files/angular-ecommerce/init.json @@ -0,0 +1,16 @@ +[ + { + "_class": "com.techie.shoppingstore.model.User", + "username": "user1", + "email": "user1@email.com", + "password": "$2a$12$p9eP3beaPuSMbS1enDn1Z.zFuv6npjm6xjyQnnEqvVG.CD03d1aoi", + "enabled": true + }, + { + "_class": "com.techie.shoppingstore.model.User", + "username": "user2", + "email": "user2@email.com", + "password": "$2a$12$p9eP3beaPuSMbS1enDn1Z.zFuv6npjm6xjyQnnEqvVG.CD03d1aoi", + "enabled": true + } +] \ No newline at end of file diff --git a/scripts/dockerize/data/additional_files/angular-ecommerce/mongo_import.sh b/scripts/dockerize/data/additional_files/angular-ecommerce/mongo_import.sh new file mode 100644 index 000000000..4dae7dbfb --- /dev/null +++ b/scripts/dockerize/data/additional_files/angular-ecommerce/mongo_import.sh @@ -0,0 +1,4 @@ +#!/bin/bash +# Import from fixtures + +mongoimport --host localhost --port 27017 --db test --collection User --file /fixtures/init.json --jsonArray \ No newline at end of file